myvesta/bin/v-unsuspend-cron-job
2015-10-28 16:34:41 +02:00

59 lines
1.5 KiB
Bash
Executable File

#!/bin/bash
# info: unuspend cron job
# options: USER JOB [RESTART]
#
# The function unsuspen certain cron job.
#----------------------------------------------------------#
# Variable&Function #
#----------------------------------------------------------#
# Argument defenition
user=$1
job=$2
restart="${3-yes}"
# Includes
source $VESTA/func/main.sh
source $VESTA/conf/vesta.conf
#----------------------------------------------------------#
# Verifications #
#----------------------------------------------------------#
check_args '2' "$#" 'USER JOB [RESTART]'
validate_format 'user' 'job' 'restart'
is_object_valid 'user' 'USER' "$user"
is_object_valid 'cron' 'JOB' "$job"
is_object_suspended 'cron' 'JOB' "$job"
#----------------------------------------------------------#
# Action #
#----------------------------------------------------------#
# Unsuspending job
update_object_value 'cron' 'JOB' "$job" '$SUSPENDED' 'no'
decrease_user_value "$user" '$SUSPENDED_CRON'
# Sync system cron with user
sync_cron_jobs
#----------------------------------------------------------#
# Vesta #
#----------------------------------------------------------#
# Restarting crond
if [ "$restart" != 'no' ]; then
$BIN/v-restart-cron
check_result $? "Cron restart failed" >/dev/null
fi
# Logging
log_event "$OK" "$EVENT"
exit