| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- #!/bin/bash
- # info: suspend remote dns server
- # options: HOST
- #
- # The function for suspending remote dns server.
- #----------------------------------------------------------#
- # Variable&Function #
- #----------------------------------------------------------#
- # Argument definition
- host=$1
- # Includes
- source $VESTA/func/main.sh
- source $VESTA/conf/vesta.conf
- #----------------------------------------------------------#
- # Verifications #
- #----------------------------------------------------------#
- check_args '1' "$#" 'HOST'
- is_format_valid 'host'
- is_system_enabled "$DNS_SYSTEM" 'DNS_SYSTEM'
- is_object_valid "../../conf/dns-cluster" 'HOST' "$host"
- is_object_unsuspended "../../conf/dns-cluster" 'HOST' "$host"
- #----------------------------------------------------------#
- # Action #
- #----------------------------------------------------------#
- # Unsuspend remote dns server
- update_object_value "../../conf/dns-cluster" 'HOST' "$host" '$SUSPENDED' 'yes'
- #----------------------------------------------------------#
- # Vesta #
- #----------------------------------------------------------#
- # Logging
- log_event "$OK" "$ARGUMENTS"
- exit
|