diff options
author | Nate House nathan.house@rackspace.com <> | 2014-01-28 08:48:47 -0600 |
---|---|---|
committer | Nate House nathan.house@rackspace.com <> | 2014-01-28 08:48:47 -0600 |
commit | dd95d5e0a90031f19a68b255510476fb176126a6 (patch) | |
tree | 1c6fa51fe6beba7299e34deafa187a3945335614 /cloudinit/config/cc_set_passwords.py | |
parent | 79d1eccc9fa751325fcb574fd9385a14bf2bbba6 (diff) | |
download | vyos-cloud-init-dd95d5e0a90031f19a68b255510476fb176126a6.tar.gz vyos-cloud-init-dd95d5e0a90031f19a68b255510476fb176126a6.zip |
exclude modules fix 1
Diffstat (limited to 'cloudinit/config/cc_set_passwords.py')
-rw-r--r-- | cloudinit/config/cc_set_passwords.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cloudinit/config/cc_set_passwords.py b/cloudinit/config/cc_set_passwords.py index fc76edab..b9dc0cc0 100644 --- a/cloudinit/config/cc_set_passwords.py +++ b/cloudinit/config/cc_set_passwords.py @@ -36,8 +36,7 @@ PW_SET = (letters.translate(None, 'loLOI') + def handle(_name, cfg, cloud, log, args): - if cloud.is_excluded(_name): - return + if len(args) != 0: # if run from command line, and give args, wipe the chpasswd['list'] password = args[0] |