diff options
author | Nate House nathan.house@rackspace.com <> | 2014-01-27 11:43:13 -0600 |
---|---|---|
committer | Nate House nathan.house@rackspace.com <> | 2014-01-27 11:43:13 -0600 |
commit | 8f6c9ff5ed7e301db2efa9ffa9a4bf454eb819e9 (patch) | |
tree | ba4ec25f6f66b8c73782d49bf2a2cc2251ec1071 /cloudinit/distros/gentoo.py | |
parent | 2b416f666e26f37ad694d9cdefd0a80b77009848 (diff) | |
download | vyos-cloud-init-8f6c9ff5ed7e301db2efa9ffa9a4bf454eb819e9.tar.gz vyos-cloud-init-8f6c9ff5ed7e301db2efa9ffa9a4bf454eb819e9.zip |
init_cmd inheritance fixes
Diffstat (limited to 'cloudinit/distros/gentoo.py')
-rw-r--r-- | cloudinit/distros/gentoo.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cloudinit/distros/gentoo.py b/cloudinit/distros/gentoo.py index ede40bff..565c68ed 100644 --- a/cloudinit/distros/gentoo.py +++ b/cloudinit/distros/gentoo.py @@ -37,6 +37,7 @@ class Distro(distros.Distro): network_conf_fn = "/etc/conf.d/net" tz_conf_fn = "/etc/timezone" tz_local_fn = "/etc/localtime" + init_cmd = [''] def __init__(self, name, cfg, paths): distros.Distro.__init__(self, name, cfg, paths) |