diff options
author | Scott Moser <smoser@ubuntu.com> | 2014-02-12 14:56:55 -0500 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2014-02-12 14:56:55 -0500 |
commit | 20305aea1eac724069e0bfaaf976ec5caa8c2439 (patch) | |
tree | c631bbfc05dd9265b28dcff4bccdf9aa56148b79 /cloudinit/config/cc_grub_dpkg.py | |
parent | 8d117d37e2945369abaa66d1e30f153e483c3faf (diff) | |
download | vyos-cloud-init-20305aea1eac724069e0bfaaf976ec5caa8c2439.tar.gz vyos-cloud-init-20305aea1eac724069e0bfaaf976ec5caa8c2439.zip |
drop 'is_excluded'.
for now, this the mechanism just doesn't seem right.
I think i'd rather have the module declare supported distros than
have distros declare [un]supported modules.
Diffstat (limited to 'cloudinit/config/cc_grub_dpkg.py')
-rw-r--r-- | cloudinit/config/cc_grub_dpkg.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/cloudinit/config/cc_grub_dpkg.py b/cloudinit/config/cc_grub_dpkg.py index 03cdd98c..b3ce6fb6 100644 --- a/cloudinit/config/cc_grub_dpkg.py +++ b/cloudinit/config/cc_grub_dpkg.py @@ -29,8 +29,6 @@ def handle(_name, cfg, _cloud, log, _args): idevs = None idevs_empty = None - if _cloud.distro.is_excluded(_name): - return if "grub-dpkg" in cfg: idevs = util.get_cfg_option_str(cfg["grub-dpkg"], "grub-pc/install_devices", None) |