Exclude virtual host by default
This commit is contained in:
parent
faf3bfb2d2
commit
8d01a7236c
|
@ -3,7 +3,7 @@
|
|||
|
||||
### Features
|
||||
* Add linux.dell.com repo
|
||||
* Set "present" state for Dell hardware
|
||||
* Set "present" state for Dell hardware (exclude virtual host)
|
||||
* Install dependencies packages
|
||||
* Install base packages for all racadm usage
|
||||
* Fix libssl error RAC1170
|
||||
|
|
|
@ -46,7 +46,8 @@ openmanage__repositories:
|
|||
# Ensure that openmanage is uninstalled and it's configuration is removed.
|
||||
#
|
||||
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" }}'
|
||||
# ]]]
|
||||
# .. envvar:: openmanage__install_recommends [[[
|
||||
|
|
Loading…
Reference in New Issue