summaryrefslogtreecommitdiff
path: root/cloudinit/config/cc_yum_add_repo.py
diff options
context:
space:
mode:
authorNate House nathan.house@rackspace.com <>2014-01-27 16:34:35 -0600
committerNate House nathan.house@rackspace.com <>2014-01-27 16:34:35 -0600
commit79d1eccc9fa751325fcb574fd9385a14bf2bbba6 (patch)
tree779f3570e484fa1d218d40ded165c65f5f61790d /cloudinit/config/cc_yum_add_repo.py
parent309457a96a84132d2e570bf902c464b2a1aa9d0b (diff)
downloadvyos-cloud-init-79d1eccc9fa751325fcb574fd9385a14bf2bbba6.tar.gz
vyos-cloud-init-79d1eccc9fa751325fcb574fd9385a14bf2bbba6.zip
Removed excessive is_excluded module calls
Diffstat (limited to 'cloudinit/config/cc_yum_add_repo.py')
-rw-r--r--cloudinit/config/cc_yum_add_repo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/config/cc_yum_add_repo.py b/cloudinit/config/cc_yum_add_repo.py
index 93b570a0..f63e3e08 100644
--- a/cloudinit/config/cc_yum_add_repo.py
+++ b/cloudinit/config/cc_yum_add_repo.py
@@ -58,7 +58,7 @@ def _format_repository_config(repo_id, repo_config):
def handle(name, cfg, _cloud, log, _args):
- if _cloud.is_excluded(name):
+ if _cloud.distro.is_excluded(name):
return
repos = cfg.get('yum_repos')
if not repos: