Files
ansible-manage-lvm/tasks/centos.yml
T
Larry Smith Jr d1d99b2f17 first commit
2015-11-02 21:23:03 -05:00

20 lines
393 B
YAML

---
- name: centos | installing lvm2
yum:
name: system-storage-manager
state: present
- name: centos | installing sg3_utils
yum:
name: sg3_utils
state: present
- name: centos | checking for scsi devices
shell: sg_scan
register: scsi_devices
changed_when: False
- name: centos | rescanning for new disks
command: /usr/bin/rescan-scsi-bus.sh
changed_when: False