Exclude virtual host by default

This commit is contained in:
Jeremy Gardais 2018-12-04 14:02:42 +01:00
parent faf3bfb2d2
commit 8d01a7236c
Signed by: jegardai
GPG Key ID: E759BAA22501AF32
2 changed files with 3 additions and 2 deletions

View File

@ -3,7 +3,7 @@
### Features ### Features
* Add linux.dell.com repo * Add linux.dell.com repo
* Set "present" state for Dell hardware * Set "present" state for Dell hardware (exclude virtual host)
* Install dependencies packages * Install dependencies packages
* Install base packages for all racadm usage * Install base packages for all racadm usage
* Fix libssl error RAC1170 * Fix libssl error RAC1170

View File

@ -46,7 +46,8 @@ openmanage__repositories:
# Ensure that openmanage is uninstalled and it's configuration is removed. # Ensure that openmanage is uninstalled and it's configuration is removed.
# #
openmanage__deploy_state: '{{ "present" openmanage__deploy_state: '{{ "present"
if (ansible_system_vendor is search("Dell")) if (ansible_system_vendor is search("Dell")
and (ansible_virtualization_role == "host"))
else "absent" }}' else "absent" }}'
# ]]] # ]]]
# .. envvar:: openmanage__install_recommends [[[ # .. envvar:: openmanage__install_recommends [[[