summaryrefslogtreecommitdiffstats
path: root/tools/hostbasepush.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/hostbasepush.py')
-rwxr-xr-xtools/hostbasepush.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/tools/hostbasepush.py b/tools/hostbasepush.py
new file mode 100755
index 000000000..61f2e046b
--- /dev/null
+++ b/tools/hostbasepush.py
@@ -0,0 +1,16 @@
+#!/usr/bin/python
+
+__revision__ = "$Revision: $"
+
+import Bcfg2.Client.Proxy, os
+
+if not os.getuid() == 0:
+ print 'this command must be run as root'
+ raise SystemExit
+
+proxy = Bcfg2.Client.Proxy.bcfg2()
+print 'building files...'
+proxy.run_method('Hostbase.rebuildState', ())
+print 'running bcfg...'
+os.system('bcfg2 -q -d -v')
+