diff --git a/cloud-init-write-routes.patch b/cloud-init-write-routes.patch index 275faf1..910bd3c 100644 --- a/cloud-init-write-routes.patch +++ b/cloud-init-write-routes.patch @@ -41,7 +41,7 @@ + # Render subnet routes + routes = subnet.get('routes', []) + for route in routes: -+ dest = route.get('destination') ++ dest = route.get('destination') or route.get('network') + if dest in default_nets: + dest = 'default' + if dest != 'default': diff --git a/cloud-init.changes b/cloud-init.changes index 4315ca8..0893642 100644 --- a/cloud-init.changes +++ b/cloud-init.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Thu Mar 26 17:20:12 UTC 2020 - Robert Schweikert + +- Update cloud-init-write-routes.patch + + Still need to consider the "network" configuration uption + for the v1 config implementation. Fixes regression + introduced with update from Wed Feb 12 19:30:42 + ------------------------------------------------------------------- Wed Mar 25 18:31:32 UTC 2020 - Robert Schweikert