diff options
author | Scott Moser <smoser@ubuntu.com> | 2016-05-25 20:36:40 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2016-05-25 20:36:40 -0400 |
commit | 443df65a45e42c354b8eb7638528970adf036290 (patch) | |
tree | 463f1afb73f2d76c5ce1c2d190044a274b7f44c5 /bin/cloud-init | |
parent | ff56555eccd098e144332aad8faf5ebea5040244 (diff) | |
download | vyos-cloud-init-443df65a45e42c354b8eb7638528970adf036290.tar.gz vyos-cloud-init-443df65a45e42c354b8eb7638528970adf036290.zip |
fix bring_up
Diffstat (limited to 'bin/cloud-init')
-rwxr-xr-x | bin/cloud-init | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/cloud-init b/bin/cloud-init index 482b8402..1d421acf 100755 --- a/bin/cloud-init +++ b/bin/cloud-init @@ -260,7 +260,7 @@ def main_init(name, args): util.logexc(LOG, ("No instance datasource found!" " Likely bad things to come!")) if not args.force: - init.apply_network_config() + init.apply_network_config(bring_up=not args.local) if args.local: return (None, []) else: @@ -274,7 +274,7 @@ def main_init(name, args): # on new instance, apply network config. if not in local mode, # then we just bring up new networking as the OS has already # brought up the configured networking. - init.apply_network_config(bringup=not args.local) + init.apply_network_config(bring_up=not args.local) if args.local and init.datasource.dsmode != sources.DSMODE_LOCAL: return (init.datasource, []) |