SHA256
1
0
forked from pool/cloud-init

- Modify cloud-init-write-routes.patch (boo#1123694)

+ Drop a '-' in the route file for the last column

OBS-URL: https://build.opensuse.org/package/show/Cloud:Tools/cloud-init?expand=0&rev=133
This commit is contained in:
Robert Schweikert 2019-01-31 17:15:08 +00:00 committed by Git OBS Bridge
parent c53e82e288
commit e833f3b188
2 changed files with 7 additions and 1 deletions

View File

@ -32,7 +32,7 @@
+ config_routes += ' ' + route.get('netmask', '')
+ else:
+ config_routes += ' -'
+ config_routes += ' - -'
+ config_routes += ' -'
+ config_routes += '\n'
+ if config_routes:
+ route_file = '/etc/sysconfig/network/ifroute-%s' % if_name

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Thu Jan 31 17:13:21 UTC 2019 - Robert Schweikert <rjschwei@suse.com>
- Modify cloud-init-write-routes.patch (boo#1123694)
+ Drop a '-' in the route file for the last column
-------------------------------------------------------------------
Tue Jan 22 13:04:40 UTC 2019 - Robert Schweikert <rjschwei@suse.com>