| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- #!/bin/bash
- # info: delete vesta autoupdate cron job
- # options: NONE
- #
- # The function deletes vesta autoupdate cron job.
- #----------------------------------------------------------#
- # Variable&Function #
- #----------------------------------------------------------#
- # Argument definition
- user=admin
- # Includes
- source $VESTA/func/main.sh
- source $VESTA/conf/vesta.conf
- #----------------------------------------------------------#
- # Verifications #
- #----------------------------------------------------------#
- is_system_enabled "$CRON_SYSTEM" 'CRON_SYSTEM'
- check_cron=$(grep 'v-update-sys-vesta-all' $USER_DATA/cron.conf)
- if [ -z "$check_cron" ]; then
- exit
- fi
- #----------------------------------------------------------#
- # Action #
- #----------------------------------------------------------#
- # Deleting job
- job=$(echo $check_cron|tr ' ' "\n"|grep JOB|cut -f 2 -d "'")
- sed -i "/JOB='$job' /d" $USER_DATA/cron.conf
- # Sorting jobs by id
- sort_cron_jobs
- # Sync system cron with user
- sync_cron_jobs
- #----------------------------------------------------------#
- # Vesta #
- #----------------------------------------------------------#
- # Decreasing cron value
- decrease_user_value "$user" '$U_CRON_JOBS'
- # Restarting crond
- $BIN/v-restart-cron
- check_result $? "Cron restart failed" >/dev/null
- # Logging
- log_event "$OK" "$ARGUMENTS"
- exit
|