diff options
author | Nate House nathan.house@rackspace.com <> | 2014-01-24 13:14:12 -0600 |
---|---|---|
committer | Nate House nathan.house@rackspace.com <> | 2014-01-24 13:14:12 -0600 |
commit | 29780092f57931d7c22bfbf3af37dea00edc76c9 (patch) | |
tree | 00dbc3a652a126f11bbd05d10fdb434ff956f056 /cloudinit/distros/gentoo.py | |
parent | f64cd3d53fb09fb41104f600ead60eefe9dbd4ab (diff) | |
download | vyos-cloud-init-29780092f57931d7c22bfbf3af37dea00edc76c9.tar.gz vyos-cloud-init-29780092f57931d7c22bfbf3af37dea00edc76c9.zip |
init_cmd distro unique supports gentoo init scripts
Diffstat (limited to 'cloudinit/distros/gentoo.py')
-rw-r--r-- | cloudinit/distros/gentoo.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cloudinit/distros/gentoo.py b/cloudinit/distros/gentoo.py index 82d49fc3..ede40bff 100644 --- a/cloudinit/distros/gentoo.py +++ b/cloudinit/distros/gentoo.py @@ -156,7 +156,8 @@ class Distro(distros.Distro): elif args and isinstance(args, list): cmd.extend(args) - cmd.append(command) + if command: + cmd.append(command) pkglist = util.expand_package_list('%s-%s', pkgs) cmd.extend(pkglist) |