Browse Source

In output say b10-cfgmgr instead of bind-cfgd (catch up with name change).

git-svn-id: svn://bind10.isc.org/svn/bind10/trunk@949 e5f2f494-b856-4b98-b285-d166d9295462
Jeremy C. Reed 15 years ago
parent
commit
7d5cb71991
2 changed files with 2 additions and 2 deletions
  1. 1 1
      src/bin/cfgmgr/b10-cfgmgr.py.in
  2. 1 1
      src/lib/config/python/isc/config/cfgmgr.py

+ 1 - 1
src/bin/cfgmgr/b10-cfgmgr.py.in

@@ -31,7 +31,7 @@ if __name__ == "__main__":
         cm.notify_boss()
         cm.run()
     except isc.cc.SessionError as se:
-        print("[bind-cfgd] Error creating config manager, "
+        print("[b10-cfgmgr] Error creating config manager, "
               "is the command channel daemon running?")
     except KeyboardInterrupt as kie:
         print("Got ctrl-c, exit")

+ 1 - 1
src/lib/config/python/isc/config/cfgmgr.py

@@ -70,7 +70,7 @@ class ConfigManagerData:
                 config.data = file_config
             else:
                 # We can put in a migration path here for old data
-                raise ConfigManagerDataReadError("[bind-cfgd] Old version of data found")
+                raise ConfigManagerDataReadError("[b10-cfgmgr] Old version of data found")
             file.close()
         except IOError as ioe:
             raise ConfigManagerDataEmpty("No config file found")