replaced underscore with dash in api syscalls

This commit is contained in:
Serghey Rodin 2012-11-09 18:26:32 +02:00
commit b6b7eacadb
283 changed files with 438 additions and 412 deletions

51
bin/v-rebuild-cron-jobs Executable file
View file

@ -0,0 +1,51 @@
#!/bin/bash
# info: rebuild cron jobs
# options: user [restart]
#
# The function rebuilds system cron config file for specified user.
#----------------------------------------------------------#
# Variable&Function #
#----------------------------------------------------------#
# Argument defenition
user=$1
restart=$2
# Includes
source $VESTA/conf/vesta.conf
source $VESTA/func/main.sh
#----------------------------------------------------------#
# Verifications #
#----------------------------------------------------------#
check_args '1' "$#" 'user [restart]'
validate_format 'user'
is_system_enabled "$CRON_SYSTEM"
is_object_valid 'user' 'USER' "$user"
#----------------------------------------------------------#
# Action #
#----------------------------------------------------------#
# Rebuild cron jobs
sync_cron_jobs
#----------------------------------------------------------#
# Vesta #
#----------------------------------------------------------#
# Restart crond
if [ "$restart" != 'no' ]; then
$BIN/v-restart-cron "$EVENT"
fi
# Logging
log_event "$OK" "$EVENT"
exit