diff options
author | Scott Moser <smoser@ubuntu.com> | 2014-02-12 16:53:05 -0500 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2014-02-12 16:53:05 -0500 |
commit | 0b0bb4721c61015e3fce9b4030bcb69b9da5c368 (patch) | |
tree | 5cda2535587b0c8e357ab4ed0fce920d2be3939f /cloudinit/config | |
parent | 20305aea1eac724069e0bfaaf976ec5caa8c2439 (diff) | |
parent | 5d2a31bd66fc5fc10901e30a2b9c79c7f4d1a172 (diff) | |
download | vyos-cloud-init-0b0bb4721c61015e3fce9b4030bcb69b9da5c368.tar.gz vyos-cloud-init-0b0bb4721c61015e3fce9b4030bcb69b9da5c368.zip |
merge from trunk
Diffstat (limited to 'cloudinit/config')
-rw-r--r-- | cloudinit/config/cc_ssh_import_id.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cloudinit/config/cc_ssh_import_id.py b/cloudinit/config/cc_ssh_import_id.py index 50d96e15..76c1663d 100644 --- a/cloudinit/config/cc_ssh_import_id.py +++ b/cloudinit/config/cc_ssh_import_id.py @@ -26,9 +26,8 @@ from cloudinit import distros as ds from cloudinit import util import pwd -# The ssh-import-id only seems to exist on ubuntu (for now) # https://launchpad.net/ssh-import-id -distros = ['ubuntu'] +distros = ['ubuntu', 'debian'] def handle(_name, cfg, cloud, log, args): |