diff options
author | Nate House nathan.house@rackspace.com <> | 2014-02-06 09:59:04 -0600 |
---|---|---|
committer | Nate House nathan.house@rackspace.com <> | 2014-02-06 09:59:04 -0600 |
commit | 805ac503531d27651f0ad4b1a590a488545a0887 (patch) | |
tree | 75e15bbb21ae0eed498a69f52d5c99bf6637fdc5 /cloudinit | |
parent | d57f684e62b00d3fc4f3b7f018a566d7804b7440 (diff) | |
download | vyos-cloud-init-805ac503531d27651f0ad4b1a590a488545a0887.tar.gz vyos-cloud-init-805ac503531d27651f0ad4b1a590a488545a0887.zip |
Removed exclude bits from yum module as its not a default
Diffstat (limited to 'cloudinit')
-rw-r--r-- | cloudinit/config/cc_yum_add_repo.py | 2 | ||||
-rw-r--r-- | cloudinit/distros/gentoo.py | 2 |
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) |