diff --git a/ansible/filter_plugins/bmc_type.py b/ansible/filter_plugins/bmc_type.py index 64f3dfd29..b51b8fe27 100644 --- a/ansible/filter_plugins/bmc_type.py +++ b/ansible/filter_plugins/bmc_type.py @@ -17,6 +17,8 @@ def bmc_type_from_system_vendor(system_vendor): return None if system_vendor.get('manufacturer') == 'Dell Inc.': return 'idrac' + if system_vendor.get('manufacturer') == 'Intel Corporation': + return 'intel' return None