SHA256
1
0
forked from pool/cloud-init

Accepting request 670422 from Cloud:Tools

- Modify cloud-init-write-routes.patch (boo#1123694)
  + Drop a '-' in the route file for the last column

OBS-URL: https://build.opensuse.org/request/show/670422
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/cloud-init?expand=0&rev=56
This commit is contained in:
Stephan Kulow 2019-02-08 11:06:58 +00:00 committed by Git OBS Bridge
commit 15110b1354
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>