summaryrefslogtreecommitdiff
path: root/cloudinit/distros/ubuntu.py
diff options
context:
space:
mode:
authorJoshua Harlow <harlowja@yahoo-inc.com>2012-09-20 17:26:42 -0700
committerJoshua Harlow <harlowja@yahoo-inc.com>2012-09-20 17:26:42 -0700
commit0049b6e7bc7f52fd442f1b8902294ca8c379df5c (patch)
treee426c829315aeed6cdf7ca8c94070b8e2c19d148 /cloudinit/distros/ubuntu.py
parent94b9647e4df742982cac8a2c2925fb4894281dbf (diff)
downloadvyos-cloud-init-0049b6e7bc7f52fd442f1b8902294ca8c379df5c.tar.gz
vyos-cloud-init-0049b6e7bc7f52fd442f1b8902294ca8c379df5c.zip
Remove the need to have 'default_user' and
'default_user_groups' groups be hard coded into the distro class, instead let that set of configuration be located in the config file where it should be specified instead.
Diffstat (limited to 'cloudinit/distros/ubuntu.py')
-rw-r--r--cloudinit/distros/ubuntu.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/cloudinit/distros/ubuntu.py b/cloudinit/distros/ubuntu.py
index 22f8c2c5..428db6ad 100644
--- a/cloudinit/distros/ubuntu.py
+++ b/cloudinit/distros/ubuntu.py
@@ -28,8 +28,5 @@ LOG = logging.getLogger(__name__)
class Distro(debian.Distro):
+ pass
- distro_name = 'ubuntu'
- default_user = 'ubuntu'
- default_user_groups = ("adm,audio,cdrom,dialout,floppy,video,"
- "plugdev,dip,netdev,sudo")