You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							63 lines
						
					
					
						
							1.8 KiB
						
					
					
				
			
		
		
	
	
							63 lines
						
					
					
						
							1.8 KiB
						
					
					
				#!/bin/bash
 | 
						|
# info: suspend cron job
 | 
						|
# options: USER JOB [RESTART]
 | 
						|
#
 | 
						|
# example: v-suspend-cron-job admin 5 yes
 | 
						|
#
 | 
						|
# This function suspends a certain job of the cron scheduler.
 | 
						|
 | 
						|
#----------------------------------------------------------#
 | 
						|
#                Variables & Functions                     #
 | 
						|
#----------------------------------------------------------#
 | 
						|
 | 
						|
# Argument definition
 | 
						|
user=$1
 | 
						|
job=$2
 | 
						|
restart=$3
 | 
						|
 | 
						|
# Includes
 | 
						|
# shellcheck source=/etc/hestiacp/hestia.conf
 | 
						|
source /etc/hestiacp/hestia.conf
 | 
						|
# shellcheck source=/usr/local/hestia/func/main.sh
 | 
						|
source $HESTIA/func/main.sh
 | 
						|
# load config file
 | 
						|
source_conf "$HESTIA/conf/hestia.conf"
 | 
						|
 | 
						|
#----------------------------------------------------------#
 | 
						|
#                    Verifications                         #
 | 
						|
#----------------------------------------------------------#
 | 
						|
 | 
						|
check_args '2' "$#" 'USER JOB [RESTART]'
 | 
						|
is_format_valid 'user' 'job'
 | 
						|
is_object_valid 'user' 'USER' "$user"
 | 
						|
is_object_valid 'cron' 'JOB' "$job"
 | 
						|
is_object_unsuspended 'cron' 'JOB' "$job"
 | 
						|
 | 
						|
# Perform verification if read-only mode is enabled
 | 
						|
check_hestia_demo_mode
 | 
						|
 | 
						|
#----------------------------------------------------------#
 | 
						|
#                       Action                             #
 | 
						|
#----------------------------------------------------------#
 | 
						|
 | 
						|
# Suspending job
 | 
						|
update_object_value 'cron' 'JOB' "$job" '$SUSPENDED' 'yes'
 | 
						|
increase_user_value "$user" '$SUSPENDED_CRON'
 | 
						|
 | 
						|
# Sync system cron with user
 | 
						|
sync_cron_jobs
 | 
						|
 | 
						|
#----------------------------------------------------------#
 | 
						|
#                       Hestia                             #
 | 
						|
#----------------------------------------------------------#
 | 
						|
 | 
						|
# Restarting crond
 | 
						|
$BIN/v-restart-cron "$restart"
 | 
						|
check_result $? "Cron restart failed" > /dev/null
 | 
						|
 | 
						|
# Logging
 | 
						|
$BIN/v-log-action "system" "Info" "Cron Jobs" "Cron job suspended (Job: $job)."
 | 
						|
log_event "$OK" "$ARGUMENTS"
 | 
						|
 | 
						|
exit
 |