Browse Source

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

Andrew Butcher 8 năm trước cách đây
mục cha
commit
5efe55d568
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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")