From 927e777e048453808bf70f1c43e5cb72d7dff307 Mon Sep 17 00:00:00 2001 From: vdecine Date: Sat, 8 Mar 2014 14:54:03 +0100 Subject: [PATCH] Use single quotes to allow all characters in password Several characters e.g. $ are not correctly escaped using double quotes. --- nsupdate.d/sample.config.dist | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nsupdate.d/sample.config.dist b/nsupdate.d/sample.config.dist index 6861db9..8890bb0 100755 --- a/nsupdate.d/sample.config.dist +++ b/nsupdate.d/sample.config.dist @@ -9,9 +9,9 @@ IPV6="NO" # Login credentials for the inwx admin interface INWX_USER="USERNAME" -INWX_PASS="PASSWORD" +INWX_PASS='PASSWORD' # The hostname that you want to update and it's ID from the inwx interface # You get the ID when you edit the given nameserver entry and hover the save button. DOMAIN="DOMAIN" -INWX_DOMAIN_ID="123456789" \ No newline at end of file +INWX_DOMAIN_ID="123456789"