| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- #!/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
- # Includes
- source $VESTA/func/main.sh
- source $VESTA/conf/vesta.conf
- # Additional argument formatting
- format_domain
- format_domain_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 #
- #----------------------------------------------------------#
- #----------------------------------------------------------#
- # 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
|