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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: update-linux
3
- Version: 3.3.0
3
+ Version: 3.3.2
4
4
  Summary: Command to automate the routine updating of packages and system upgrading for Unix systems.
5
5
  Author-email: Barry Scott <barry@barrys-emacs.org>
6
6
  License: Apache-2.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.0'
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()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: update-linux
3
- Version: 3.3.0
3
+ Version: 3.3.2
4
4
  Summary: Command to automate the routine updating of packages and system upgrading for Unix systems.
5
5
  Author-email: Barry Scott <barry@barrys-emacs.org>
6
6
  License: Apache-2.0
@@ -1,8 +0,0 @@
1
- import sys
2
- import update_linux
3
-
4
- def main():
5
- sys.exit( update_linux.UpdateFedora().main( sys.argv ) )
6
-
7
- if __name__ == '__main__':
8
- main()
File without changes
File without changes
File without changes