diff options
author | Scott Moser <smoser@ubuntu.com> | 2015-07-30 22:22:24 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2015-07-30 22:22:24 -0400 |
commit | 6f174b41496f133af92fb373f3b718eabdebfa05 (patch) | |
tree | 80a1a18a5a2a91051e76895d179c552522aee1fc /bin | |
parent | 46ad1adef1ac8bc49eaea2b5886bf09dbf9cd001 (diff) | |
download | vyos-cloud-init-6f174b41496f133af92fb373f3b718eabdebfa05.tar.gz vyos-cloud-init-6f174b41496f133af92fb373f3b718eabdebfa05.zip |
fix arg ordering
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/cloud-init | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/cloud-init b/bin/cloud-init index b0396cdc..6a47e5e8 100755 --- a/bin/cloud-init +++ b/bin/cloud-init @@ -172,7 +172,7 @@ def main_init(name, args): w_msg = welcome_format(name) else: w_msg = welcome_format("%s-local" % (name)) - init = stages.Init(deps) + init = stages.Init(ds_deps=deps, reporter=args.reporter) # Stage 1 init.read_cfg(extract_fns(args)) # Stage 2 |