summaryrefslogtreecommitdiff
path: root/cloudinit
diff options
context:
space:
mode:
Diffstat (limited to 'cloudinit')
-rw-r--r--cloudinit/config/cc_yum_add_repo.py2
-rw-r--r--cloudinit/distros/gentoo.py2
2 files changed, 1 insertions, 3 deletions
diff --git a/cloudinit/config/cc_yum_add_repo.py b/cloudinit/config/cc_yum_add_repo.py
index f63e3e08..5c273825 100644
--- a/cloudinit/config/cc_yum_add_repo.py
+++ b/cloudinit/config/cc_yum_add_repo.py
@@ -58,8 +58,6 @@ def _format_repository_config(repo_id, repo_config):
def handle(name, cfg, _cloud, log, _args):
- if _cloud.distro.is_excluded(name):
- return
repos = cfg.get('yum_repos')
if not repos:
log.debug(("Skipping module named %s,"
diff --git a/cloudinit/distros/gentoo.py b/cloudinit/distros/gentoo.py
index e8778e15..0087908a 100644
--- a/cloudinit/distros/gentoo.py
+++ b/cloudinit/distros/gentoo.py
@@ -181,4 +181,4 @@ class Distro(distros.Distro):
def update_package_sources(self):
self._runner.run("update-sources", self.package_command,
- ["-u", "world", "--quiet"], freq=PER_INSTANCE)
+ ["-u", "world"], freq=PER_INSTANCE)