summaryrefslogtreecommitdiff
path: root/cloudinit/config/cc_ssh.py
diff options
context:
space:
mode:
authorNate House nathan.house@rackspace.com <>2014-01-27 12:22:21 -0600
committerNate House nathan.house@rackspace.com <>2014-01-27 12:22:21 -0600
commit309457a96a84132d2e570bf902c464b2a1aa9d0b (patch)
treea6962fcd17eccaae448b1bccb06cea3f7d6a7800 /cloudinit/config/cc_ssh.py
parent8f6c9ff5ed7e301db2efa9ffa9a4bf454eb819e9 (diff)
downloadvyos-cloud-init-309457a96a84132d2e570bf902c464b2a1aa9d0b.tar.gz
vyos-cloud-init-309457a96a84132d2e570bf902c464b2a1aa9d0b.zip
Adds distro module exclude support
Diffstat (limited to 'cloudinit/config/cc_ssh.py')
-rw-r--r--cloudinit/config/cc_ssh.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/cloudinit/config/cc_ssh.py b/cloudinit/config/cc_ssh.py
index 64a5e3cb..0dc1d15d 100644
--- a/cloudinit/config/cc_ssh.py
+++ b/cloudinit/config/cc_ssh.py
@@ -56,7 +56,8 @@ KEY_FILE_TPL = '/etc/ssh/ssh_host_%s_key'
def handle(_name, cfg, cloud, log, _args):
-
+ if cloud.is_excluded(_name):
+ return
# remove the static keys from the pristine image
if cfg.get("ssh_deletekeys", True):
key_pth = os.path.join("/etc/ssh/", "ssh_host_*key*")