summaryrefslogtreecommitdiff
path: root/cloudinit/config/cc_ssh_import_id.py
diff options
context:
space:
mode:
authorJoshua Harlow <harlowja@gmail.com>2016-09-30 22:30:48 -0700
committerScott Moser <smoser@ubuntu.com>2016-10-19 17:57:54 -0400
commitf0747c4b4cf073273e11d383f0354257be7276ed (patch)
tree3f7a0426c12740395dbc5e668d546ca1a920e036 /cloudinit/config/cc_ssh_import_id.py
parent7ae201166402fbf2e6c1632028be956a954835ef (diff)
downloadvyos-cloud-init-f0747c4b4cf073273e11d383f0354257be7276ed.tar.gz
vyos-cloud-init-f0747c4b4cf073273e11d383f0354257be7276ed.zip
Move user/group functions to new ug_util file
The amount of code to do user and group normalization and extraction deserves its own file so move the code that does this to a new file and update references to the old location. This removes some of the funkyness done in config modules to avoid namespace and attribute clashes as well.
Diffstat (limited to 'cloudinit/config/cc_ssh_import_id.py')
-rwxr-xr-x[-rw-r--r--]cloudinit/config/cc_ssh_import_id.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/cloudinit/config/cc_ssh_import_id.py b/cloudinit/config/cc_ssh_import_id.py
index 99359c87..1be96dc5 100644..100755
--- a/cloudinit/config/cc_ssh_import_id.py
+++ b/cloudinit/config/cc_ssh_import_id.py
@@ -42,11 +42,7 @@ either ``lp:`` for launchpad or ``gh:`` for github to the username.
- lp:user
"""
-# Ensure this is aliased to a name not 'distros'
-# since the module attribute 'distros'
-# is a list of distros that are supported, not a sub-module
-from cloudinit import distros as ds
-
+from cloudinit.distros import ug_util
from cloudinit import util
import pwd
@@ -67,7 +63,7 @@ def handle(_name, cfg, cloud, log, args):
return
# import for cloudinit created users
- (users, _groups) = ds.normalize_users_groups(cfg, cloud.distro)
+ (users, _groups) = ug_util.normalize_users_groups(cfg, cloud.distro)
elist = []
for (user, user_cfg) in users.items():
import_ids = []