| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- #!/bin/bash
- # info: unsuspend dns domain
- # options: USER DOMAIN
- #
- # The function unsuspends a certain user's domain.
- #----------------------------------------------------------#
- # Variable&Function #
- #----------------------------------------------------------#
- # Argument definition
- user=$1
- domain=$(idn -t --quiet -u "$2" )
- domain_idn=$(idn -t --quiet -a "$domain")
- restart="$3"
- # Includes
- source $VESTA/func/main.sh
- source $VESTA/conf/vesta.conf
- #----------------------------------------------------------#
- # 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 #
- #----------------------------------------------------------#
- #----------------------------------------------------------#
- # 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
|