]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[680] Update 'no default' bindctl message
authorJelte Jansen <jelte@isc.org>
Mon, 14 Jan 2013 13:49:08 +0000 (14:49 +0100)
committerJelte Jansen <jelte@isc.org>
Mon, 14 Jan 2013 13:49:08 +0000 (14:49 +0100)
src/bin/bindctl/bindcmd.py

index 37b74e7fd77f472a242f0a229191dc9252dc6d1e..06ce493f3b3736222cff45e6cf62f855d8cbc187 100644 (file)
@@ -231,14 +231,15 @@ WARNING: Python readline module isn't available, so the command line editor
                 return True
 
         count = 0
-        print("[TEMP MESSAGE]: username :root  password :bind10")
+        print("No stored password file found, please see sections 7.1 and "
+              "8.1 of the BIND 10 guide.")
         while True:
             count = count + 1
             if count > 3:
                 print("Too many authentication failures")
                 return False
 
-            username = input("Username:")
+            username = input("Username: ")
             passwd = getpass.getpass()
             param = {'username': username, 'password' : passwd}
             try: