diff options
author | Nate House nathan.house@rackspace.com <> | 2014-01-28 15:04:22 -0600 |
---|---|---|
committer | Nate House nathan.house@rackspace.com <> | 2014-01-28 15:04:22 -0600 |
commit | 8a49ce7dd2b628291e6eef8a826308ddbe4f0520 (patch) | |
tree | d76ae755c59a07d65998da526af9cd68b2dbdc9a /cloudinit/distros/__init__.py | |
parent | dd95d5e0a90031f19a68b255510476fb176126a6 (diff) | |
download | vyos-cloud-init-8a49ce7dd2b628291e6eef8a826308ddbe4f0520.tar.gz vyos-cloud-init-8a49ce7dd2b628291e6eef8a826308ddbe4f0520.zip |
Updated exclude modules for gentoo distro.
Diffstat (limited to 'cloudinit/distros/__init__.py')
-rw-r--r-- | cloudinit/distros/__init__.py | 2 |
1 files changed, 1 insertions, 1 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 |