mirror of
https://github.com/myvesta/vesta.git
synced 2024-11-03 04:00:20 -08:00
72 lines
2.0 KiB
Bash
Executable File
72 lines
2.0 KiB
Bash
Executable File
#!/bin/bash
|
|
# info: unsuspend dns domain
|
|
# options: USER DOMAIN
|
|
#
|
|
# The function unsuspends a certain user's domain.
|
|
|
|
|
|
#----------------------------------------------------------#
|
|
# Variable&Function #
|
|
#----------------------------------------------------------#
|
|
|
|
# Argument definition
|
|
user=$1
|
|
domain=$2
|
|
domain_idn=$2
|
|
|
|
# Includes
|
|
source $VESTA/func/main.sh
|
|
source $VESTA/conf/vesta.conf
|
|
|
|
# Additional argument formatting
|
|
format_domain
|
|
format_domain_idn
|
|
# TODO: $domain_idn not used in this script - maybe $domain should be converted to $doman_idn ?
|
|
|
|
|
|
#----------------------------------------------------------#
|
|
# Verifications #
|
|
#----------------------------------------------------------#
|
|
|
|
check_args '2' "$#" 'USER DOMAIN'
|
|
is_format_valid 'user' 'domain'
|
|
is_system_enabled "$DNS_SYSTEM" 'DNS_SYSTEM'
|
|
is_object_valid 'user' 'USER' "$user"
|
|
is_object_valid 'dns' 'DOMAIN' "$domain"
|
|
is_object_suspended 'dns' 'DOMAIN' "$domain"
|
|
|
|
|
|
#----------------------------------------------------------#
|
|
# Action #
|
|
#----------------------------------------------------------#
|
|
|
|
# Creating system configs
|
|
if [[ "$DNS_SYSTEM" =~ named|bind ]]; then
|
|
if [ -e '/etc/named.conf' ]; then
|
|
dns_conf='/etc/named.conf'
|
|
dns_group='named'
|
|
else
|
|
dns_conf='/etc/bind/named.conf'
|
|
dns_group='bind'
|
|
fi
|
|
|
|
# Adding zone in named.conf
|
|
named="zone \"$domain_idn\" {type master; file"
|
|
named="$named \"$HOMEDIR/$user/conf/dns/$domain.db\";};"
|
|
echo "$named" >> $dns_conf
|
|
fi
|
|
|
|
#----------------------------------------------------------#
|
|
# Vesta #
|
|
#----------------------------------------------------------#
|
|
|
|
# Unsuspending domain in config
|
|
update_object_value 'dns' 'DOMAIN' "$domain" '$SUSPENDED' 'no'
|
|
decrease_user_value "$user" '$SUSPENDED_DNS'
|
|
sed -i "s/SUSPENDED='yes'/SUSPENDED='no'/g" $USER_DATA/dns/$domain.conf
|
|
|
|
# Logging
|
|
log_event "$OK" "$ARGUMENTS"
|
|
|
|
exit
|