forked from ISTI-ansible-roles/ansible-roles
11 lines
306 B
YAML
11 lines
306 B
YAML
|
---
|
||
|
- block:
|
||
|
- name: Install the RH/CentOS Dell utilities
|
||
|
yum: pkg={{ dell_utilities_packages }} state=latest
|
||
|
|
||
|
when:
|
||
|
- "'Dell' in ansible_system_vendor"
|
||
|
#- ansible_system_vendor.stdout.find('Dell') != -1
|
||
|
- ansible_virtualization_role == "host"
|
||
|
tags: [ 'dell_utilities', 'dell_dsu' ]
|