Explorar el Código

Fix bug in sync command (#3803)

remove unnecessary "domain" in string
Jaap Marcus hace 2 años
padre
commit
e7630660e8
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      bin/v-change-dns-domain-ip

+ 1 - 1
bin/v-change-dns-domain-ip

@@ -75,7 +75,7 @@ if [ "$DNS_CLUSTER" = "yes" ]; then
 	# Check for first sync
 	dlock=$(grep "domain $user $domain" $HESTIA/data/queue/dns-cluster.pipe)
 	if [ -z "$dlock" ]; then
-		cmd="$BIN/v-add-remote-dns-domain $user $domain domain yes"
+		cmd="$BIN/v-add-remote-dns-domain $user $domain yes"
 		echo "$cmd" >> $HESTIA/data/queue/dns-cluster.pipe
 	fi
 fi