diff options
author | Joshua Harlow <harlowja@yahoo-inc.com> | 2012-09-19 18:40:20 -0700 |
---|---|---|
committer | Joshua Harlow <harlowja@yahoo-inc.com> | 2012-09-19 18:40:20 -0700 |
commit | 6208fe41e4e73d1f14fd4afc152565c8908684a2 (patch) | |
tree | bf9d9d8bb98522a0f33dc69e03b245baa3d13234 /cloudinit/distros/ubuntu.py | |
parent | 3912209cdb075b7af8f87c1e41170fd8614ca520 (diff) | |
download | vyos-cloud-init-6208fe41e4e73d1f14fd4afc152565c8908684a2.tar.gz vyos-cloud-init-6208fe41e4e73d1f14fd4afc152565c8908684a2.zip |
Fix the ifup so that if a list of devices is provided
then each interface is brought up individually instead
of using the '--all' which isn't on rhel. The default
debian behavior will be to use this still though as it
overrides the new bring up interfaces function for this
case.
Diffstat (limited to 'cloudinit/distros/ubuntu.py')
-rw-r--r-- | cloudinit/distros/ubuntu.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cloudinit/distros/ubuntu.py b/cloudinit/distros/ubuntu.py index 22f8c2c5..4e697f82 100644 --- a/cloudinit/distros/ubuntu.py +++ b/cloudinit/distros/ubuntu.py @@ -29,7 +29,6 @@ LOG = logging.getLogger(__name__) class Distro(debian.Distro): - distro_name = 'ubuntu' default_user = 'ubuntu' default_user_groups = ("adm,audio,cdrom,dialout,floppy,video," "plugdev,dip,netdev,sudo") |