blob: c3d3039f8793536b7420e5644cf8b3936e6a7389 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
- name: Screen test
hosts: ism
connection: local
gather_facts: no
vars:
ism:
host: "{{ ansible_ssh_host }}"
username: "{{ username }}"
password: "{{ password }}"
tasks:
- name: "Get auto capture screen information"
inspur.sm.auto_capture_info:
provider: "{{ ism }}"
|