Procházet zdrojové kódy

Ensure 'oo_nfs_to_config' in groups prior to checking group length when nfs host unset.

Andrew Butcher před 8 roky
rodič
revize
5efe55d568
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      filter_plugins/oo_filters.py

+ 1 - 1
filter_plugins/oo_filters.py

@@ -660,7 +660,7 @@ class FilterModule(object):
                         if kind == 'nfs':
                             host = params['host']
                             if host == None:
-                                if len(groups['oo_nfs_to_config']) > 0:
+                                if 'oo_nfs_to_config' in groups and len(groups['oo_nfs_to_config']) > 0:
                                     host = groups['oo_nfs_to_config'][0]
                                 else:
                                     raise errors.AnsibleFilterError("|failed no storage host detected")