Initial
This commit is contained in:
68
bin/v-rebuild-all
Executable file
68
bin/v-rebuild-all
Executable file
@@ -0,0 +1,68 @@
|
||||
#!/bin/bash
|
||||
# info: rebuild all assets for a specified user
|
||||
# options: USER [RESTART]
|
||||
#
|
||||
# This function rebuilds all assets for a user account:
|
||||
#
|
||||
# - Web domains
|
||||
# - DNS zones
|
||||
# - Mail domains
|
||||
# - Databases
|
||||
# - Cron Jobs
|
||||
# - User account configuration
|
||||
|
||||
#----------------------------------------------------------#
|
||||
# Variables & Functions #
|
||||
#----------------------------------------------------------#
|
||||
|
||||
# Argument definition
|
||||
user=$1
|
||||
restart=$2
|
||||
|
||||
# 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
|
||||
# shellcheck source=/usr/local/hestia/func/rebuild.sh
|
||||
source $HESTIA/func/rebuild.sh
|
||||
# shellcheck source=/usr/local/hestia/func/syshealth.sh
|
||||
source $HESTIA/func/syshealth.sh
|
||||
# load config file
|
||||
source_conf "$HESTIA/conf/hestia.conf"
|
||||
|
||||
#----------------------------------------------------------#
|
||||
# Verifications #
|
||||
#----------------------------------------------------------#
|
||||
|
||||
check_args '1' "$#" 'USER [RESTART]'
|
||||
is_format_valid 'user'
|
||||
is_object_valid 'user' 'USER' "$user"
|
||||
check_user=$(is_object_unsuspended 'user' 'USER' "$user")
|
||||
if [ -n "$check_user" ]; then
|
||||
exit
|
||||
fi
|
||||
|
||||
# Perform verification if read-only mode is enabled
|
||||
check_hestia_demo_mode
|
||||
|
||||
#----------------------------------------------------------#
|
||||
# Action #
|
||||
#----------------------------------------------------------#
|
||||
|
||||
# Rebuild loop
|
||||
$BIN/v-rebuild-web-domains "$user" "$restart"
|
||||
$BIN/v-rebuild-dns-domains "$user" "$restart"
|
||||
$BIN/v-rebuild-mail-domains "$user" "$restart"
|
||||
$BIN/v-rebuild-databases "$user" "$restart"
|
||||
$BIN/v-rebuild-cron-jobs "$user" "$restart"
|
||||
$BIN/v-rebuild-user "$user" "$restart"
|
||||
|
||||
#----------------------------------------------------------#
|
||||
# Hestia #
|
||||
#----------------------------------------------------------#
|
||||
|
||||
# Logging
|
||||
log_event "$OK" "$ARGUMENTS"
|
||||
|
||||
exit
|
||||
Reference in New Issue
Block a user