update-linux 3.3.0__tar.gz → 3.3.2__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.0 → update_linux-3.3.2}/PKG-INFO +1 -1
- {update_linux-3.3.0 → update_linux-3.3.2}/src/update_linux/__init__.py +3 -2
- update_linux-3.3.2/src/update_linux/__main__.py +14 -0
- {update_linux-3.3.0 → update_linux-3.3.2}/src/update_linux.egg-info/PKG-INFO +1 -1
- update_linux-3.3.0/src/update_linux/__main__.py +0 -8
- {update_linux-3.3.0 → update_linux-3.3.2}/LICENSE +0 -0
- {update_linux-3.3.0 → update_linux-3.3.2}/README.md +0 -0
- {update_linux-3.3.0 → update_linux-3.3.2}/pyproject.toml +0 -0
- {update_linux-3.3.0 → update_linux-3.3.2}/requirements.txt +0 -0
- {update_linux-3.3.0 → update_linux-3.3.2}/setup.cfg +0 -0
- {update_linux-3.3.0 → update_linux-3.3.2}/src/update_linux.egg-info/SOURCES.txt +0 -0
- {update_linux-3.3.0 → update_linux-3.3.2}/src/update_linux.egg-info/dependency_links.txt +0 -0
- {update_linux-3.3.0 → update_linux-3.3.2}/src/update_linux.egg-info/entry_points.txt +0 -0
- {update_linux-3.3.0 → update_linux-3.3.2}/src/update_linux.egg-info/requires.txt +0 -0
- {update_linux-3.3.0 → update_linux-3.3.2}/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.2'
|
|
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
|
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import sys
|
|
2
|
+
import update_linux
|
|
3
|
+
|
|
4
|
+
def main():
|
|
5
|
+
try:
|
|
6
|
+
sys.exit( update_linux.UpdateFedora().main( sys.argv ) )
|
|
7
|
+
|
|
8
|
+
except KeyboardInterrupt:
|
|
9
|
+
print()
|
|
10
|
+
print( "Error: exiting at user's requrest (SIGINT)" )
|
|
11
|
+
sys.exit( 1 )
|
|
12
|
+
|
|
13
|
+
if __name__ == '__main__':
|
|
14
|
+
main()
|
|
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
|