summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/cloud-init4
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, [])