[svn] commit: r142 - in /branches/f2f200910: Makefile.in configure.ac src/bin/bind-cfgd.in src/bin/bind-cfgd/ src/bin/bind-cfgd/bind-cfgd.in src/lib/bind-cfgd/python/bind-cfgd.py
BIND 10 source code commits
bind10-changes at lists.isc.org
Wed Oct 28 22:18:08 UTC 2009
Author: jelte
Date: Wed Oct 28 22:18:08 2009
New Revision: 142
Log:
one more makefile.in removed (generated out of makefile.am)
move the bin to it's own module dir as well
(should we not do this, or seperate on module level on dir higher? (i.e. before /lib and /bin separation)
Added:
branches/f2f200910/src/bin/bind-cfgd/
branches/f2f200910/src/bin/bind-cfgd/bind-cfgd.in (props changed)
- copied unchanged from r140, branches/f2f200910/src/bin/bind-cfgd.in
Removed:
branches/f2f200910/Makefile.in
branches/f2f200910/src/bin/bind-cfgd.in
Modified:
branches/f2f200910/configure.ac
branches/f2f200910/src/lib/bind-cfgd/python/bind-cfgd.py
Modified: branches/f2f200910/configure.ac
==============================================================================
--- branches/f2f200910/configure.ac (original)
+++ branches/f2f200910/configure.ac Wed Oct 28 22:18:08 2009
@@ -59,5 +59,5 @@
src/lib/Makefile
src/lib/dns/Makefile
])
-AC_OUTPUT([src/bin/bind-cfgd])
+AC_OUTPUT([src/bin/bind-cfgd/bind-cfgd])
AC_OUTPUT
Modified: branches/f2f200910/src/lib/bind-cfgd/python/bind-cfgd.py
==============================================================================
--- branches/f2f200910/src/lib/bind-cfgd/python/bind-cfgd.py (original)
+++ branches/f2f200910/src/lib/bind-cfgd/python/bind-cfgd.py Wed Oct 28 22:18:08 2009
@@ -14,7 +14,10 @@
def __init__(self):
self.cc = ISC.CC.Session()
self.cc.group_subscribe("ConfigManager")
- self.config
+ self.config = ConfigData()
+
+ def notify_boss(self):
+ self.cc.group_sendmsg({"Running": "ConfigManager"}, "Boss")
def read_config(self, filename):
pass
@@ -33,6 +36,8 @@
print "Hello, BIND10 world!"
try:
cm = ConfigManager()
+ # do loading here if necessary
+ cm.notify_boss()
cm.run()
except ISC.CC.SessionError, se:
print "Error creating config manager, "\
More information about the bind10-changes
mailing list