You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							79 lines
						
					
					
						
							2.1 KiB
						
					
					
				
			
		
		
	
	
							79 lines
						
					
					
						
							2.1 KiB
						
					
					
				#!/bin/bash
 | 
						|
# info: delete remote dns domains
 | 
						|
# options: [HOST]
 | 
						|
#
 | 
						|
# This function deletes remote dns domains.
 | 
						|
 | 
						|
#----------------------------------------------------------#
 | 
						|
#                Variables & Functions                     #
 | 
						|
#----------------------------------------------------------#
 | 
						|
 | 
						|
# Argument definition
 | 
						|
host=$1
 | 
						|
 | 
						|
# Includes
 | 
						|
# shellcheck source=/etc/hestiacp/hestia.conf
 | 
						|
source /etc/hestiacp/hestia.conf
 | 
						|
# shellcheck source=/usr/local/hestia/func/main.sh
 | 
						|
source $HESTIA/func/main.sh
 | 
						|
# shellcheck source=/usr/local/hestia/func/remote.sh
 | 
						|
source $HESTIA/func/remote.sh
 | 
						|
# load config file
 | 
						|
source_conf "$HESTIA/conf/hestia.conf"
 | 
						|
 | 
						|
#----------------------------------------------------------#
 | 
						|
#                    Verifications                         #
 | 
						|
#----------------------------------------------------------#
 | 
						|
 | 
						|
is_format_valid 'host'
 | 
						|
is_system_enabled "$DNS_CLUSTER" 'DNS_CLUSTER'
 | 
						|
is_procces_running
 | 
						|
remote_dns_health_check
 | 
						|
 | 
						|
# Perform verification if read-only mode is enabled
 | 
						|
check_hestia_demo_mode
 | 
						|
 | 
						|
#----------------------------------------------------------#
 | 
						|
#                       Action                             #
 | 
						|
#----------------------------------------------------------#
 | 
						|
 | 
						|
IFS=$'\n'
 | 
						|
 | 
						|
if [ -z $host ]; then
 | 
						|
	hosts=$(cat "$HESTIA/conf/dns-cluster.conf")
 | 
						|
else
 | 
						|
	hosts=$(grep "HOST='$host'" "$HESTIA/conf/dns-cluster.conf")
 | 
						|
fi
 | 
						|
 | 
						|
# Starting cluster loop
 | 
						|
for cluster in $hosts; do
 | 
						|
 | 
						|
	# Reset user, password and hash vars
 | 
						|
	clear_dns_cluster_settings
 | 
						|
 | 
						|
	# Parsing remote host parameters
 | 
						|
	parse_object_kv_list "$cluster"
 | 
						|
 | 
						|
	# Deleting source records
 | 
						|
	cluster_cmd v-delete-dns-domains-src $DNS_USER $HOSTNAME 'no'
 | 
						|
	check_result $? "$HOST connection failed (cleanup)" "$E_CONNECT"
 | 
						|
 | 
						|
	# Rebuilding dns zones
 | 
						|
	cluster_cmd v-rebuild-dns-domains $DNS_USER 'yes'
 | 
						|
	check_result $? "$HOST connection failed (rebuild)" "$E_CONNECT"
 | 
						|
 | 
						|
done
 | 
						|
 | 
						|
#----------------------------------------------------------#
 | 
						|
#                       Hestia                             #
 | 
						|
#----------------------------------------------------------#
 | 
						|
 | 
						|
# Updating pipe
 | 
						|
pipe="$HESTIA/data/queue/dns-cluster.pipe"
 | 
						|
str=$(grep -n "$SCRIPT $1 $2$" $pipe | cut -f1 -d: | head -n1)
 | 
						|
if [ -n "$str" ]; then
 | 
						|
	sed -i "$str d" $pipe
 | 
						|
fi
 | 
						|
 | 
						|
exit
 |