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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
import sys
import logging
import Bcfg2.Logger
import Bcfg2.Server.Admin
class Query(Bcfg2.Server.Admin.MetadataCore):
__shorthelp__ = "Query clients"
__longhelp__ = (__shorthelp__ + "\n\nbcfg2-admin query [-n] [-c] "
"[-f filename] g=group p=profile b=bundle")
__usage__ = ("bcfg2-admin query [options] <g=group> <p=profile> <b=bundle>\n\n"
" %-25s%s\n"
" %-25s%s\n"
" %-25s%s\n" %
("-n",
"query results delimited with newlines",
"-c",
"query results delimited with commas",
"-f filename",
"write query to file"))
__plugin_blacklist__ = ['DBStats', 'Cfg', 'Pkgmgr', 'Packages' ]
def __init__(self, setup):
Bcfg2.Server.Admin.MetadataCore.__init__(self, setup)
logging.root.setLevel(100)
Bcfg2.Logger.setup_logging(100, to_console=False,
to_syslog=setup['syslog'])
def __call__(self, args):
Bcfg2.Server.Admin.MetadataCore.__call__(self, args)
clients = self.metadata.clients
filename_arg = False
filename = None
for arg in args:
if filename_arg == True:
filename = arg
filename_arg = False
continue
if arg in ['-n', '-c']:
continue
if arg in ['-f']:
filename_arg = True
continue
try:
k, v = arg.split('=')
except:
print("Unknown argument %s" % arg)
continue
if k == 'p':
nc = self.metadata.get_client_names_by_profiles(v.split(','))
elif k == 'g':
nc = self.metadata.get_client_names_by_groups(v.split(','))
# add probed groups (if present)
for conn in self.bcore.connectors:
if isinstance(conn, Bcfg2.Server.Plugins.Probes.Probes):
for c, glist in list(conn.cgroups.items()):
for g in glist:
if g in v.split(','):
nc.append(c)
elif k == 'b':
nc = self.metadata.get_client_names_by_bundles(v.split(','))
else:
print("One of g=, p= or b= must be specified")
raise SystemExit(1)
clients = [c for c in clients if c in nc]
if '-n' in args:
for client in clients:
print(client)
else:
print(','.join(clients))
if '-f' in args:
f = open(filename, "w")
for client in clients:
f.write(client + "\n")
f.close()
print("Wrote results to %s" % (filename))
|