15 lines
298 B
YAML
15 lines
298 B
YAML
- name: pdisk test
|
|
hosts: ism
|
|
connection: local
|
|
gather_facts: no
|
|
vars:
|
|
ism:
|
|
host: "{{ ansible_ssh_host }}"
|
|
username: "{{ username }}"
|
|
password: "{{ password }}"
|
|
|
|
tasks:
|
|
|
|
- name: "get physical disks information"
|
|
inspur.sm.pdisk_info:
|
|
provider: "{{ ism }}" |