mirror of
https://github.com/myvesta/vesta.git
synced 2024-11-21 04:50:10 -08:00
56 lines
1.4 KiB
Bash
Executable File
56 lines
1.4 KiB
Bash
Executable File
#!/bin/bash
|
|
# info: add cron reports
|
|
# options: user
|
|
#
|
|
# The script for enabling reports on cron tasks and administrative
|
|
# notifications.
|
|
|
|
|
|
#----------------------------------------------------------#
|
|
# Variable&Function #
|
|
#----------------------------------------------------------#
|
|
|
|
# Argument definition
|
|
user=$1
|
|
|
|
# Includes
|
|
source $VESTA/func/main.sh
|
|
source $VESTA/conf/vesta.conf
|
|
|
|
|
|
#----------------------------------------------------------#
|
|
# Verifications #
|
|
#----------------------------------------------------------#
|
|
|
|
check_args '1' "$#" 'USER'
|
|
is_format_valid 'user'
|
|
is_system_enabled "$CRON_SYSTEM" 'CRON_SYSTEM'
|
|
is_object_valid 'user' 'USER' "$user"
|
|
is_object_unsuspended 'user' 'USER' "$user"
|
|
|
|
|
|
#----------------------------------------------------------#
|
|
# Action #
|
|
#----------------------------------------------------------#
|
|
|
|
# Changing user report value
|
|
update_user_value "$user" '$CRON_REPORTS' 'yes'
|
|
|
|
# Sync system cron with user
|
|
sync_cron_jobs
|
|
|
|
|
|
#----------------------------------------------------------#
|
|
# Vesta #
|
|
#----------------------------------------------------------#
|
|
|
|
# Restart crond
|
|
$BIN/v-restart-cron
|
|
check_result $? "Cron restart failed" >/dev/null
|
|
|
|
# Logging
|
|
log_history "enabled cron reporting"
|
|
log_event "$OK" "$ARGUMENTS"
|
|
|
|
exit
|