diff options
author | Joshua Harlow <harlowja@gmail.com> | 2012-10-23 07:54:40 -0700 |
---|---|---|
committer | Joshua Harlow <harlowja@gmail.com> | 2012-10-23 07:54:40 -0700 |
commit | 2953d9d448fde3af19fc96ae00f41066f510d6fd (patch) | |
tree | 65588edb9ba6df95d9d56e90239214579fca3c44 /cloudinit/distros/__init__.py | |
parent | 43d46a36bd3c626317aa13aca15f0a0c639777b5 (diff) | |
download | vyos-cloud-init-2953d9d448fde3af19fc96ae00f41066f510d6fd.tar.gz vyos-cloud-init-2953d9d448fde3af19fc96ae00f41066f510d6fd.zip |
No need for the get default
users groups function when
its provided by the get user
function.
Diffstat (limited to 'cloudinit/distros/__init__.py')
-rw-r--r-- | cloudinit/distros/__init__.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/cloudinit/distros/__init__.py b/cloudinit/distros/__init__.py index 6ef63442..11a72da1 100644 --- a/cloudinit/distros/__init__.py +++ b/cloudinit/distros/__init__.py @@ -175,9 +175,6 @@ class Distro(object): def get_default_user(self): return self.get_option('default_user') - def get_default_user_groups(self): - return self.get_option('default_user_groups') - def create_user(self, name, **kwargs): """ Creates users for the system using the GNU passwd tools. This |