mirror of
https://github.com/myvesta/vesta.git
synced 2024-11-03 04:00:20 -08:00
86 lines
2.5 KiB
Bash
Executable File
86 lines
2.5 KiB
Bash
Executable File
#!/bin/bash
|
|
# info: add remote dns domain record
|
|
# options: USER DOMAIN ID
|
|
#
|
|
# The function synchronize dns domain with the remote server.
|
|
|
|
|
|
#----------------------------------------------------------#
|
|
# Variable&Function #
|
|
#----------------------------------------------------------#
|
|
|
|
# Argument definition
|
|
user=$1
|
|
domain=$2
|
|
id=$3
|
|
|
|
# Includes
|
|
source $VESTA/func/main.sh
|
|
source $VESTA/func/remote.sh
|
|
source $VESTA/conf/vesta.conf
|
|
|
|
|
|
#----------------------------------------------------------#
|
|
# Verifications #
|
|
#----------------------------------------------------------#
|
|
|
|
check_args '3' "$#" 'USER DOMAIN ID'
|
|
is_format_valid 'user' 'domain' 'id'
|
|
is_system_enabled "$DNS_CLUSTER" 'DNS_CLUSTER'
|
|
is_object_valid 'user' 'USER' "$user"
|
|
is_object_valid 'dns' 'DOMAIN' "$domain"
|
|
is_procces_running
|
|
remote_dns_health_check
|
|
|
|
|
|
#----------------------------------------------------------#
|
|
# Action #
|
|
#----------------------------------------------------------#
|
|
|
|
# Parsing record
|
|
str=$(grep "ID='$id'" $USER_DATA/dns/$domain.conf)
|
|
if [ -z "$str" ]; then
|
|
pipe="$VESTA/data/queue/dns-cluster.pipe"
|
|
queue_str=$(grep -n "$SCRIPT $1 $2 $3$" $pipe | cut -f1 -d: | head -n1)
|
|
if [ ! -z "$queue_str" ]; then
|
|
sed -i "$queue_str d" $pipe
|
|
fi
|
|
exit
|
|
fi
|
|
|
|
IFS=$'\n'
|
|
for cluster in $(grep "SUSPENDED='no'" $VESTA/conf/dns-cluster.conf); do
|
|
|
|
# Parsing remote host parameters
|
|
eval $cluster
|
|
|
|
# Syncing serial
|
|
str=$(grep "DOMAIN='$domain'" $USER_DATA/dns.conf)
|
|
cluster_cmd v-insert-dns-domain $DNS_USER "$str" $HOSTNAME 'domain' 'no'
|
|
check_result $? "$HOST connection failed (soa sync)" $E_CONNECT
|
|
|
|
# Syncing record
|
|
str=$(grep "ID='$id'" $USER_DATA/dns/$domain.conf | sed 's/"/\\"/g')
|
|
cluster_cmd v-insert-dns-record $DNS_USER $domain "$str" 'no'
|
|
check_result $? "$HOST connection failed (record sync)" $E_CONNECT
|
|
|
|
# Rebuilding dns zone
|
|
cluster_cmd v-rebuild-dns-domain $DNS_USER $domain 'yes' 'no'
|
|
check_result $? "$HOST connection failed (rebuild)" $E_CONNECT
|
|
|
|
done
|
|
|
|
|
|
#----------------------------------------------------------#
|
|
# Vesta #
|
|
#----------------------------------------------------------#
|
|
|
|
# Updating pipe
|
|
pipe="$VESTA/data/queue/dns-cluster.pipe"
|
|
str=$(grep -n "$SCRIPT $1 $2 $3$" $pipe | cut -f1 -d: | head -n1)
|
|
if [ ! -z "$str" ]; then
|
|
sed -i "$str d" $pipe
|
|
fi
|
|
|
|
exit
|