| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- #!/bin/bash
- # info: add cron reports
- # opions: user
- #
- # The script for enabling reports on cron tasks and administrative
- # notifications.
- #----------------------------------------------------------#
- # Variable&Function #
- #----------------------------------------------------------#
- # Argument defenition
- user=$1
- # Includes
- source $VESTA/func/main.sh
- source $VESTA/conf/vesta.conf
- #----------------------------------------------------------#
- # Verifications #
- #----------------------------------------------------------#
- check_args '1' "$#" 'USER'
- validate_format '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
- if [ $? -ne 0 ]; then
- exit E_RESTART
- fi
- # Logging
- log_history "enabled cron reporting"
- log_event "$OK" "$EVENT"
- exit
|