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.
69 lines
2.0 KiB
69 lines
2.0 KiB
#!/bin/bash
|
|
# info: delete hestia autoupdate cron job
|
|
# options: NONE
|
|
#
|
|
# This function deletes hestia autoupdate cron job.
|
|
|
|
#----------------------------------------------------------#
|
|
# Variables & Functions #
|
|
#----------------------------------------------------------#
|
|
|
|
# Argument definition
|
|
user=admin
|
|
|
|
# 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 #
|
|
#----------------------------------------------------------#
|
|
|
|
is_system_enabled "$CRON_SYSTEM" 'CRON_SYSTEM'
|
|
check_cron_apt=$(grep 'v-update-sys-hestia-all' $USER_DATA/cron.conf)
|
|
check_cron_git=$(grep 'v-update-sys-hestia-git' $USER_DATA/cron.conf)
|
|
|
|
# Perform verification if read-only mode is enabled
|
|
check_hestia_demo_mode
|
|
|
|
#----------------------------------------------------------#
|
|
# Action #
|
|
#----------------------------------------------------------#
|
|
|
|
# Deleting job
|
|
if [ -n "$check_cron_apt" ]; then
|
|
job=$(echo $check_cron_apt | tr ' ' "\n" | grep JOB | cut -f 2 -d "'")
|
|
fi
|
|
if [ -n "$check_cron_git" ]; then
|
|
job=$(echo $check_cron_git | tr ' ' "\n" | grep JOB | cut -f 2 -d "'")
|
|
fi
|
|
|
|
sed -i "/JOB='$job' /d" $USER_DATA/cron.conf
|
|
|
|
# Sorting jobs by id
|
|
sort_cron_jobs
|
|
|
|
# Sync system cron with user
|
|
sync_cron_jobs
|
|
|
|
#----------------------------------------------------------#
|
|
# Hestia #
|
|
#----------------------------------------------------------#
|
|
|
|
# Decreasing cron value
|
|
decrease_user_value "$user" '$U_CRON_JOBS'
|
|
|
|
# Restarting crond
|
|
$BIN/v-restart-cron
|
|
check_result $? "Cron restart failed" > /dev/null
|
|
|
|
# Logging
|
|
$BIN/v-log-action "system" "Warning" "System" "Automatic updates disabled."
|
|
log_event "$OK" "$ARGUMENTS"
|
|
|
|
exit
|