summaryrefslogtreecommitdiff
path: root/cloudinit/distros
diff options
context:
space:
mode:
Diffstat (limited to 'cloudinit/distros')
-rw-r--r--cloudinit/distros/__init__.py2
-rw-r--r--cloudinit/distros/gentoo.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/cloudinit/distros/__init__.py b/cloudinit/distros/__init__.py
index 674c7293..e364080f 100644
--- a/cloudinit/distros/__init__.py
+++ b/cloudinit/distros/__init__.py
@@ -64,7 +64,7 @@ class Distro(object):
def is_excluded(self, name):
if name in self.exclude_modules:
distro = getattr(self, name, None) or getattr(self, 'osfamily')
- LOG.debug(("Skipping module named %s, distro excluded"), name,
+ LOG.debug(("Skipping module named %s, distro %s excluded"), name,
distro)
return True
diff --git a/cloudinit/distros/gentoo.py b/cloudinit/distros/gentoo.py
index fbd96b36..8b0355be 100644
--- a/cloudinit/distros/gentoo.py
+++ b/cloudinit/distros/gentoo.py
@@ -38,7 +38,7 @@ class Distro(distros.Distro):
tz_conf_fn = "/etc/timezone"
tz_local_fn = "/etc/localtime"
init_cmd = ['']
- exclude_modules = ['grub_dpkg', 'apt_configure']
+ exclude_modules = ['grub-dpkg', 'apt-configure', 'apt-pipelining']
def __init__(self, name, cfg, paths):
distros.Distro.__init__(self, name, cfg, paths)