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