summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNarayan Desai <desai@mcs.anl.gov>2006-09-15 16:01:53 +0000
committerNarayan Desai <desai@mcs.anl.gov>2006-09-15 16:01:53 +0000
commitf7146b07e3dda92ef7dd80dba2f1a7252d86375f (patch)
treed26954b81b0ecad4f13f32cbcb3b9c56ea19bc7c
parent92b0f7aac3cda0e2f177311df3f6c9fe67bf90f0 (diff)
downloadbcfg2-f7146b07e3dda92ef7dd80dba2f1a7252d86375f.tar.gz
bcfg2-f7146b07e3dda92ef7dd80dba2f1a7252d86375f.tar.bz2
bcfg2-f7146b07e3dda92ef7dd80dba2f1a7252d86375f.zip
Move bcfg2-query into the install area
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@2266 ce84e21b-d406-0410-9b95-82705330c041
-rwxr-xr-xsrc/sbin/bcfg2-query (renamed from tools/client-query.py)11
1 files changed, 2 insertions, 9 deletions
diff --git a/tools/client-query.py b/src/sbin/bcfg2-query
index 73b9f7ae4..c250773da 100755
--- a/tools/client-query.py
+++ b/src/sbin/bcfg2-query
@@ -2,16 +2,15 @@
import lxml.etree, sys, ConfigParser
-#this will be replaced by redeadin config file, but I am in a hurry right now
CP = ConfigParser.ConfigParser()
CP.read(['/etc/bcfg2.conf'])
try:
prefix = CP.get('server', 'repository')
except:
- prefix = "/disks/bcfg2"
+ prefix = "/var/lib/bcfg2"
if len(sys.argv) < 2:
- print "Usage client-query.py -d|u|p <profile name>"
+ print "Usage bcfg2-query -d|u|p <profile name>"
print "\t -d\t\t shows the clients that are currently down"
print "\t -u\t\t shows the clients that are currently up"
print "\t -p <profile name>\t shows all the clients of that profile"
@@ -30,9 +29,3 @@ for client in xml.findall('.//Client'):
print client.get("name")
elif '-a' in sys.argv:
print client.get("name")
-
-
-
-
-
-