ソースを参照

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

Andrew Butcher 8 年 前
コミット
5efe55d568
1 ファイル変更1 行追加1 行削除
  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")