summaryrefslogtreecommitdiffstats
path: root/tools/client-query.py
blob: e2de0593cafe32e83485f6671e2ce2296941d10e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/usr/bin/python

import lxml.etree, sys

#this will be replaced by redeadin config file, but I am in a hurry right now
prefix = "/disks/bcfg2"

if len(sys.argv) < 2:
  print "Usage client-query.py -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"
  sys.exit(1)
				  
xml = lxml.etree.parse('%s/Metadata/clients.xml'%prefix)
for client in xml.findall('.//Client'):
    if '-u' in sys.argv:
        if client.get("pingable") == "Y":
            print client.get("name")
    elif '-d' in sys.argv:
        if client.get("pingable") == "N":
            print client.get("name")
    elif '-p' in sys.argv and sys.argv[sys.argv.index('-p') + 1] != '':
        if client.get("profile") == sys.argv[sys.argv.index('-p') + 1]:
            print client.get("name")
    elif '-a' in sys.argv:
    	print client.get("name")