diff options
author | Nate House nathan.house@rackspace.com <> | 2014-01-27 16:34:35 -0600 |
---|---|---|
committer | Nate House nathan.house@rackspace.com <> | 2014-01-27 16:34:35 -0600 |
commit | 79d1eccc9fa751325fcb574fd9385a14bf2bbba6 (patch) | |
tree | 779f3570e484fa1d218d40ded165c65f5f61790d /cloudinit/config/cc_mounts.py | |
parent | 309457a96a84132d2e570bf902c464b2a1aa9d0b (diff) | |
download | vyos-cloud-init-79d1eccc9fa751325fcb574fd9385a14bf2bbba6.tar.gz vyos-cloud-init-79d1eccc9fa751325fcb574fd9385a14bf2bbba6.zip |
Removed excessive is_excluded module calls
Diffstat (limited to 'cloudinit/config/cc_mounts.py')
-rw-r--r-- | cloudinit/config/cc_mounts.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cloudinit/config/cc_mounts.py b/cloudinit/config/cc_mounts.py index 1476d19f..c1ac76d4 100644 --- a/cloudinit/config/cc_mounts.py +++ b/cloudinit/config/cc_mounts.py @@ -76,8 +76,7 @@ def sanitize_devname(startname, transformer, log): def handle(_name, cfg, cloud, log, _args): - if cloud.is_excluded(_name): - return + # fs_spec, fs_file, fs_vfstype, fs_mntops, fs-freq, fs_passno defvals = [None, None, "auto", "defaults,nobootwait", "0", "2"] defvals = cfg.get("mount_default_fields", defvals) |