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/distros/gentoo.py | |
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/distros/gentoo.py')
-rw-r--r-- | cloudinit/distros/gentoo.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |