update-linux 3.3.1__tar.gz → 3.3.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {update_linux-3.3.1 → update_linux-3.3.3}/PKG-INFO +1 -1
- {update_linux-3.3.1 → update_linux-3.3.3}/src/update_linux/__init__.py +5 -4
- {update_linux-3.3.1 → update_linux-3.3.3}/src/update_linux.egg-info/PKG-INFO +1 -1
- {update_linux-3.3.1 → update_linux-3.3.3}/LICENSE +0 -0
- {update_linux-3.3.1 → update_linux-3.3.3}/README.md +0 -0
- {update_linux-3.3.1 → update_linux-3.3.3}/pyproject.toml +0 -0
- {update_linux-3.3.1 → update_linux-3.3.3}/requirements.txt +0 -0
- {update_linux-3.3.1 → update_linux-3.3.3}/setup.cfg +0 -0
- {update_linux-3.3.1 → update_linux-3.3.3}/src/update_linux/__main__.py +0 -0
- {update_linux-3.3.1 → update_linux-3.3.3}/src/update_linux.egg-info/SOURCES.txt +0 -0
- {update_linux-3.3.1 → update_linux-3.3.3}/src/update_linux.egg-info/dependency_links.txt +0 -0
- {update_linux-3.3.1 → update_linux-3.3.3}/src/update_linux.egg-info/entry_points.txt +0 -0
- {update_linux-3.3.1 → update_linux-3.3.3}/src/update_linux.egg-info/requires.txt +0 -0
- {update_linux-3.3.1 → update_linux-3.3.3}/src/update_linux.egg-info/top_level.txt +0 -0
|
@@ -9,7 +9,7 @@ import tempfile
|
|
|
9
9
|
import json
|
|
10
10
|
from config_path import ConfigPath # type: ignore
|
|
11
11
|
|
|
12
|
-
VERSION = '3.3.
|
|
12
|
+
VERSION = '3.3.3'
|
|
13
13
|
|
|
14
14
|
default_json_config_template = u'''{
|
|
15
15
|
"group":
|
|
@@ -431,7 +431,8 @@ For help:
|
|
|
431
431
|
if line.startswith(
|
|
432
432
|
('Warning: '
|
|
433
433
|
,'Offending key for '
|
|
434
|
-
,'Matching host key in '
|
|
434
|
+
,'Matching host key in '
|
|
435
|
+
,'The system will now reboot')):
|
|
435
436
|
continue
|
|
436
437
|
filtered_stdout.append(line)
|
|
437
438
|
|
|
@@ -573,7 +574,7 @@ class UpdatePluginFedora:
|
|
|
573
574
|
self.app.warn( host, 'Updates available. See<> <>file %s<> <>em for details' % (check_log_name,) )
|
|
574
575
|
|
|
575
576
|
else:
|
|
576
|
-
self.app.error( host, 'check-update failed' )
|
|
577
|
+
self.app.error( host, 'check-update failed. See<> <>file %s<> <>em for details' % (check_log_name,) )
|
|
577
578
|
|
|
578
579
|
self.app.checkServices( host, check_log_name )
|
|
579
580
|
|
|
@@ -611,7 +612,7 @@ class UpdatePluginFedora:
|
|
|
611
612
|
self.app.writeLines( update_log_name, stdout )
|
|
612
613
|
|
|
613
614
|
if rc != 0:
|
|
614
|
-
self.app.error( host, 'Update failed' )
|
|
615
|
+
self.app.error( host, 'Update failed. See<> <>file %s<> <>em for details' % (update_log_name,) )
|
|
615
616
|
return
|
|
616
617
|
|
|
617
618
|
if 'Nothing to do.\n' in stdout:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|