diff options
author | Nate House nathan.house@rackspace.com <> | 2014-01-27 12:22:21 -0600 |
---|---|---|
committer | Nate House nathan.house@rackspace.com <> | 2014-01-27 12:22:21 -0600 |
commit | 309457a96a84132d2e570bf902c464b2a1aa9d0b (patch) | |
tree | a6962fcd17eccaae448b1bccb06cea3f7d6a7800 /cloudinit/config/cc_keys_to_console.py | |
parent | 8f6c9ff5ed7e301db2efa9ffa9a4bf454eb819e9 (diff) | |
download | vyos-cloud-init-309457a96a84132d2e570bf902c464b2a1aa9d0b.tar.gz vyos-cloud-init-309457a96a84132d2e570bf902c464b2a1aa9d0b.zip |
Adds distro module exclude support
Diffstat (limited to 'cloudinit/config/cc_keys_to_console.py')
-rw-r--r-- | cloudinit/config/cc_keys_to_console.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cloudinit/config/cc_keys_to_console.py b/cloudinit/config/cc_keys_to_console.py index ed7af690..ae47438a 100644 --- a/cloudinit/config/cc_keys_to_console.py +++ b/cloudinit/config/cc_keys_to_console.py @@ -30,6 +30,8 @@ HELPER_TOOL = '/usr/lib/cloud-init/write-ssh-key-fingerprints' def handle(name, cfg, _cloud, log, _args): + if _cloud.is_excluded(name): + return if not os.path.exists(HELPER_TOOL): log.warn(("Unable to activate module %s," " helper tool not found at %s"), name, HELPER_TOOL) |