Browse Source

${options} must be without quotes

pull/512/head
sergio 6 years ago
parent
commit
535909bd3b
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      dns_scripts/dns_add_nsupdate
  2. +1
    -1
      dns_scripts/dns_del_nsupdate

+ 1
- 1
dns_scripts/dns_add_nsupdate View File

@ -23,7 +23,7 @@ fi
# Note that blank line is a "send" command to nsupdate
nsupdate "${options}" -v <<EOF
nsupdate ${options} -v <<EOF
update add _acme-challenge.${fulldomain}. 300 in TXT "${token}"
EOF


+ 1
- 1
dns_scripts/dns_del_nsupdate View File

@ -23,7 +23,7 @@ fi
# Note that blank line is a "send" command to nsupdate
nsupdate "${options}" -v <<EOF
nsupdate ${options} -v <<EOF
update delete "_acme-challenge.${fulldomain}." 300 in TXT "${token}"
EOF


Loading…
Cancel
Save