#!/bin/bash # info: change cron job # options: USER JOB MIN HOUR DAY MONTH WDAY COMMAND # # The function is used for changing existing job. It fully replace job # parameters with new one but with same id. #----------------------------------------------------------# # Variable&Function # #----------------------------------------------------------# # Argument definition user=$1 job=$2 min=$3 hour=$4 day=$5 month=$6 wday=$7 command=$8 # Includes source $VESTA/func/main.sh source $VESTA/conf/vesta.conf #----------------------------------------------------------# # Verifications # #----------------------------------------------------------# check_args '7' "$#" 'USER JOB MIN HOUR DAY MONTH WDAY COMMAND' is_format_valid 'user' 'job' 'min' 'hour' 'day' 'month' 'wday' 'command' is_system_enabled "$CRON_SYSTEM" 'CRON_SYSTEM' is_object_valid 'user' 'USER' "$user" is_object_unsuspended 'user' 'USER' "$user" is_object_valid 'cron' 'JOB' "$job" is_object_unsuspended 'cron' 'JOB' "$job" #----------------------------------------------------------# # Action # #----------------------------------------------------------# # Generating timestamp time_n_date=$(date +'%T %F') time=$(echo "$time_n_date" |cut -f 1 -d \ ) date=$(echo "$time_n_date" |cut -f 2 -d \ ) # Concatenating cron string command=$(echo $command | sed -e "s/'/%quote%/g") str="JOB='$job' MIN='$min' HOUR='$hour' DAY='$day' MONTH='$month' WDAY='$wday'" str="$str CMD='$command' SUSPENDED='no' TIME='$time' DATE='$date'" # Deleting old job sed -i "/JOB='$job' /d" $USER_DATA/cron.conf # Adding new echo "$str" >> $USER_DATA/cron.conf # Sorting jobs by id sort_cron_jobs # Sync system cron with user sync_cron_jobs #----------------------------------------------------------# # Vesta # #----------------------------------------------------------# # Restarting crond $BIN/v-restart-cron check_result $? "Cron restart failed" >/dev/null # Logging log_history "changed cron job $job" log_event "$OK" "$ARGUMENTS" exit