You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 3, 2020. It is now read-only.
Fixed several bugs:
- custom info key values are now escaped to avoid aborts (added shared
function escape_string; see issue #49)
- when cloning channels, labels are added to the name (see issue #47)
- changed name format to „label-date.channel“ when cloning channels to
avoid using protected names (see issues #46 and #48)
- fixed a bug to avoid scheduling downtimes for non-monitored hosts
- fixed a bug where VM snapshots were not created
- fixed a bug where wrong reboot_required information were inserted
into patch reports
- fixed a bug where diff reports could not be created (see issue #44)
- verification log files are created if non-existent
- added support for Spacewalk 2.4
Copy file name to clipboardExpand all lines: satprep_diff.py
+22-37Lines changed: 22 additions & 37 deletions
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,6 @@
23
23
24
24
#define logger
25
25
LOGGER=logging.getLogger('satprep_diff')
26
-
vlogInvalid=False
27
26
28
27
#TODO: delete original snapshots after creating delta option
29
28
#TODO: use pre-existing delta CSV instead of creating one (e.g. for testing purposes)
@@ -42,7 +41,7 @@ def parse_options(args=None):
42
41
desc='''%prog is used to create patch diff reports of systems managed with Spacewalk, Red Hat Satellite and SUSE Manager. The script needs TeXlive/LaTeX to create PDF reports. Defining your own templates is possible - the default template needs to be located in the same directory like this script.
43
42
44
43
Checkout the GitHub page for updates: https://github.com/stdevel/satprep'''
45
-
parser=OptionParser(usage=usage, description=desc, version="%prog version 0.3.4")
44
+
parser=OptionParser(usage=usage, description=desc, version="%prog version 0.3.5")
0 commit comments