diff options
author | Scott Moser <smoser@brickies.net> | 2012-10-23 12:13:41 +0200 |
---|---|---|
committer | Scott Moser <smoser@brickies.net> | 2012-10-23 12:13:41 +0200 |
commit | 605c10763752582af139f8677f1f907705564824 (patch) | |
tree | 3543d8a2a92f825a36352af1e80f9242d5201b06 /cloudinit/distros/ubuntu.py | |
parent | bdaa57bc5b8a75b0891673a7bb0a60c5b02beb7c (diff) | |
parent | 0049b6e7bc7f52fd442f1b8902294ca8c379df5c (diff) | |
download | vyos-cloud-init-605c10763752582af139f8677f1f907705564824.tar.gz vyos-cloud-init-605c10763752582af139f8677f1f907705564824.zip |
move default user info out of code and into config
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.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/cloudinit/distros/ubuntu.py b/cloudinit/distros/ubuntu.py index 4e697f82..c527f248 100644 --- a/cloudinit/distros/ubuntu.py +++ b/cloudinit/distros/ubuntu.py @@ -28,7 +28,4 @@ LOG = logging.getLogger(__name__) class Distro(debian.Distro): - - default_user = 'ubuntu' - default_user_groups = ("adm,audio,cdrom,dialout,floppy,video," - "plugdev,dip,netdev,sudo") + pass |