mirror of
https://github.com/serghey-rodin/vesta.git
synced 2026-09-08 16:48:58 +02:00
87 lines
2.0 KiB
Bash
Executable File
87 lines
2.0 KiB
Bash
Executable File
#!/bin/bash
|
|
# info: unsuspend user
|
|
# options: user
|
|
#
|
|
# The function unsuspends user and all his objects.
|
|
|
|
|
|
#----------------------------------------------------------#
|
|
# Variable&Function #
|
|
#----------------------------------------------------------#
|
|
|
|
# Argument defenition
|
|
user=$1
|
|
|
|
# Importing variables
|
|
source $VESTA/conf/vars.conf
|
|
source $V_CONF/vesta.conf
|
|
source $V_FUNC/shared.func
|
|
|
|
|
|
#----------------------------------------------------------#
|
|
# Verifications #
|
|
#----------------------------------------------------------#
|
|
|
|
# Checking arg number
|
|
check_args '1' "$#" 'user'
|
|
|
|
# Checking argument format
|
|
format_validation 'user'
|
|
|
|
# Checking user
|
|
is_user_valid
|
|
|
|
# Checking user admin
|
|
if [ "$user" = 'admin' ]; then
|
|
exit
|
|
fi
|
|
|
|
|
|
#----------------------------------------------------------#
|
|
# Action #
|
|
#----------------------------------------------------------#
|
|
|
|
# Deleting '!' in front of the password
|
|
/usr/sbin/usermod --unlock $user
|
|
|
|
# Unsuspending web domains
|
|
if [ ! -z "$WEB_SYSTEM" ] && [ "$WEB_SYSTEM" != 'no' ]; then
|
|
$V_BIN/v_unsuspend_web_domains $user
|
|
fi
|
|
|
|
# Unsuspending dns domains
|
|
if [ ! -z "$DNS_SYSTEM" ] && [ "$DNS_SYSTEM" != 'no' ]; then
|
|
$V_BIN/v_unsuspend_dns_domains $user
|
|
fi
|
|
|
|
# Unsuspending mail domains
|
|
# TBD
|
|
|
|
# Unsuspending datbabases
|
|
if [ ! -z "$DB_SYSTEM" ] && [ "$DB_SYSTEM" != 'no' ]; then
|
|
$V_BIN/v_unsuspend_db_bases $user
|
|
fi
|
|
|
|
# Unsuspending cron jobs
|
|
if [ ! -z "$CRON_SYSTEM" ] && [ "$CRON_SYSTEM" != 'no' ]; then
|
|
$V_BIN/v_unsuspend_cron_jobs $user
|
|
fi
|
|
|
|
|
|
#----------------------------------------------------------#
|
|
# Vesta #
|
|
#----------------------------------------------------------#
|
|
|
|
# Adding task to the vesta pipe
|
|
restart_schedule 'cron'
|
|
restart_schedule 'web'
|
|
restart_schedule 'dns'
|
|
|
|
# Changing suspend value
|
|
update_user_value "$user" '$SUSPENDED' 'no'
|
|
|
|
# Logging
|
|
log_event 'system' "$V_EVENT"
|
|
|
|
exit
|