forked from FDewaleyne/rhns-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rhns-config-compare.py
executable file
·248 lines (231 loc) · 12.2 KB
/
rhns-config-compare.py
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
#!/usr/bin/python
__author__ = "Felix Dewaleyne"
__credits__ = ["Felix Dewaleyne"]
__license__ = "GPL"
__version__ = "1.1b"
__maintainer__ = "Felix Dewaleyne"
__email__ = "[email protected]"
__status__ = "stable"
import xmlrpclib, sys, re
###
#
# Script aimed at the debugging of the comparison of configuration channels. Can take a long time to run.
# python 2.6 required
#
###
###
# To the extent possible under law, Red Hat, Inc. has dedicated all copyright to this software to the public domain worldwide, pursuant to the CC0 Public Domain Dedication.
# This software is distributed without any warranty. See <http://creativecommons.org/publicdomain/zero/1.0/>.
###
#connection class
class RHNSConnection:
username = None
host = None
url = None
key = None
satver = None
client = None
closed = False
def __init__(self,username,password,host,orgname="baseorg"):
"""connects to the satellite db with given parameters"""
#read configuration
import ConfigParser,os
config = ConfigParser.ConfigParser()
config.read(['.satellite', os.path.expanduser('~/.satellite'), '/etc/sysconfig/rhn/satellite'])
#decide what variable to use for the URL
if host == None:
#no host given in command line
if config.has_section('default') and config.has_option('default', 'url'):
#there is a config file and it has the settings for the url.
self.url = config.get('default','url')
else:
#there is no config file or no option, default to the local host :
print "Defaulting to 127.0.0.1"
self.url = "https://127.0.0.1/rpc/api"
else:
#a hostname or url was given in command line. parse it to see if it is correct.
self.url = host
if re.match('^http(s)?://[\w\-.]+/rpc/api',self.url) == None:
#this isn't the full url
if re.search('^http(s)?://', self.url) == None:
self.url = "https://"+self.url
if re.search('/rpc/api$', self.url) == None:
self.url = self.url+"/rpc/api"
#if this is the url then nothing has to be done further to URL
#read the host from the url
from urlparse import urlparse
self.host = urlparse(self.url).hostname
#check if there is a username in the options
if username == None:
#no username in command line
if config.has_section(orgname) and config.has_option(orgname, 'username'):
self.username = config.get(orgname,'username')
else:
#not in the config file, we have to prompt it
sys.stderr.write("Login details for %s\n\n" % self.url)
sys.stderr.write("Username: ")
self.username = raw_input().strip()
else:
#use the value given in option
self.username = username
#now the password
if password == None:
#use the password from the config file
if config.has_section(orgname) and config.has_option(orgname, 'password'):
self.__password = config.get(orgname,'password')
else:
#no password set in the configuration file
import getpass
self.__password = getpass.getpass(prompt="Password: ")
sys.stderr.write("\n")
else:
self.__password = password
#connection part
self.client = xmlrpclib.Server(self.url)
self.key = self.client.auth.login(self.username,self.__password)
try:
self.satver = self.client.api.systemVersion()
print "connected to satellite version %s on host %s" % (self.satver, self.host)
except:
self.satver = None
print "unable to detect the version"
pass
def close(self):
"""closes a connection. item can be destroyed then"""
self.client.auth.logout(self.key)
self.closed = True
pass
def __exit__(self):
"""closes connection on exit"""
if not self.closed :
self.client.auth.logout(self.key)
pass
#end of the class
def _check_osad(conn,systemid):
"""checks that the given systemid has osad installed, then tries to ping the machine. returns true if the systemid has osad installed"""
global verbose;
try:
installed_packages = conn.client.system.listPackages(conn.key,systemid)
for package in installed_packages:
if package['name'] == 'osad':
if verbose:
print "found %s-%s-%s.%s on system %s" % (package['name'], package['version'], package['release'], package['arch'], str(systemid))
return True
else:
continue
except:
return False
return False
def _check_action_finished(conn,actionid):
"""returns true if the action has finished, false if not. There can be at least 1 system or 0 if the action has been executed """
global verbose;
inprogress = conn.client.schedule.listInProgressSystems(conn.key,actionid)
if len(inprogress) == 0:
return True
else:
print "still waiting on %d systems" % (len(inprogress))
if verbose:
for system in inprogress:
print "- waiting on %s (%d), should complete at %s" % (system['server_name'],system['server_id'],str(system['timestamp']))
return False
def run_channel(conn,channellabel,noosad,delay):
"""runs the check against a channel and waits compares file by file, waiting for the execution of a channel to be done every 5 minutes"""
global verbose;
if delay < 1:
sys.stderr.write("Invalid value for delay, defaulting to 5 minutes")
delay = 5
configfiles = conn.client.configchannel.listFiles(conn.key,channellabel)
# each file is in configfiles[X]['path']
systems = conn.client.configchannel.listSubscribedSystems(conn.key,channellabel)
run_systems = []
# each system is in systems[X]['id']
print "\nProcessing config channel "+channellabel
if noosad:
print "not running the osad checks - this may make the execution of the configuration channel test take a long time"
for system in systems:
run_systems.append(system['id'])
else:
for system in systems:
if _check_osad(conn,system['id']):
#add the system only if it passes the osad test
run_systems.append(system['id'])
if verbose:
print "system %s (%d) will be checked" % (system['name'],system['id'])
else:
print "system %s (%d) doesn't have osad installed, skipping" % (system['name'],system['id'])
if len(run_systems) == 0:
sys.stderr.write( "no system to run a comparison against, skipping config channel "+channellabel)
return
from time import sleep
progress = 1
for configfile in configfiles:
#plan one action per config file
print "\nProcessing file %s (%d out of %d)" % (configfile['path'], progress, len(configfiles))
progress+=1
actionid = conn.client.configchannel.scheduleFileComparisons(conn.key,channellabel,configfile['path'],run_systems)
try:
#sleep(delay * 60)
while(not _check_action_finished(conn,actionid)):
sleep (delay * 60)
except KeyboardInterrupt:
sys.stderr.write("\nKeyboard interrupt captured - skipping to next call\n")
sys.stderr.write("Details available at https://%s/rhn/schedule/ActionDetails.do?aid=%d \n" % (conn.host, actionid))
continue
# display the output
failed = conn.client.schedule.listFailedSystems(conn.key,actionid)
passed = conn.client.schedule.listCompletedSystems(conn.key,actionid)
print "Completed : %d, Failed : %d, ran on %d systems" % (len(passed), len(failed), len(run_systems))
print "Details available at https://%s/rhn/schedule/ActionDetails.do?aid=%d \n" % (conn.host, actionid)
#main function
def main(version):
"""main function"""
global verbose;
import optparse
parser = optparse.OptionParser("%prog action_option [connection_options] [global_options]\n schedules the comparison of all files of the given config channel and wait for the execution of the actions one by one", version=version)
# connection options
connect_group = optparse.OptionGroup(parser, "Connection options","Not required unless you want to bypass the details of ~/.satellite, .satellite or /etc/sysconfig/rhn/satellite or simply don't want to be asked the settings at run time")
connect_group.add_option("--url", dest="saturl", help="URL of the satellite api, e.g. https://satellite.example.com/rpc/api or http://127.0.0.1/rpc/api ; can also be just the hostname or ip of the satellite. Facultative.")
connect_group.add_option("--username", dest="satuser", help="username to use with the satellite. Should be admin of the organization owning the channels. Faculative.")
connect_group.add_option("--password", dest="satpwd", help="password of the user. Will be asked if not given and not in the configuration file.")
connect_group.add_option("--orgname", dest="orgname", default="baseorg", help="the name of the organization to use as per your configuration file - defaults to baseorg")
# action options
action_group = optparse.OptionGroup(parser, "Action options", "use -c for each channel you wish to try in one run or no option to try all the configuration channels.")
action_group.add_option("-l","--list",dest='list', action='store_true', default=False, help="List all the channels and quit")
action_group.add_option("-c","--configchannel", dest='channellabels', action='append', help="Each call of this option indicates a configuration channel to use - identified by its label. If none is specified all will be used")
action_group.add_option("--noosad", dest='noosad', action='store_true', default=False, help="Indicate that the osad check should be bypassed.\nWarning : machines without osad running can delay considerably the execution of the script")
# global options
global_group = optparse.OptionGroup(parser, "Global options", "Option that affect the display of information")
global_group.add_option("-v", "--verbose",dest='verbose', action='store_true', default=False, help="Increase the verbosity of the script")
global_group.add_option("-d", "--delay", dest='delay', default=5, type='int', help="Delay between each check on the execution of a systemid in minutes. defaults to 5")
#integrate the groups
parser.add_option_group(action_group)
parser.add_option_group(connect_group)
parser.add_option_group(global_group)
(options, args) = parser.parse_args()
verbose = options.verbose
if options.list:
conn = RHNSConnection(options.satuser,options.satpwd,options.saturl,options.orgname)
print "%30s | %5s | %s" % ("Label","OrgID","Name")
for configchannel in conn.client.configchannel.listGlobals(conn.key):
print "%30s | %5s | %s" % (configchannel['label'],str(configchannel['orgId']),configchannel['name'])
conn.client.auth.logout(conn.key)
elif options.channellabels == None:
#run agains all channel
print "running against all channels - this can take a long time."
conn = RHNSConnection(options.satuser,options.satpwd,options.saturl,options.orgname)
for configchannel in conn.client.configchannel.listGlobals(conn.key):
run_channel(conn,configchannel['label'],options.noosad,options.delay)
conn.client.auth.logout(conn.key)
else:
#normal run against a set list of channels
conn = RHNSConnection(options.satuser,options.satpwd,options.saturl,options.orgname)
for channellabel in options.channellabels:
if conn.client.configchannel.channelExists(conn.key,channellabel) == 1:
run_channel(conn,channellabel,options.noosad,options.delay)
else:
sys.stderr.write("channel %s does not exist\n" % (channellabel))
conn.client.auth.logout(conn.key)
pass
#calls start here
if __name__=="__main__":
main(__version__)