22 lines
475 B
YAML
22 lines
475 B
YAML
- name: KVM test
|
|
hosts: ism
|
|
connection: local
|
|
gather_facts: no
|
|
vars:
|
|
ism:
|
|
host: "{{ ansible_ssh_host }}"
|
|
username: "{{ username }}"
|
|
password: "{{ password }}"
|
|
|
|
tasks:
|
|
|
|
- name: "Set KVM"
|
|
inspur.sm.edit_kvm:
|
|
kvm_encryption: "enable"
|
|
media_attach: "auto"
|
|
keyboard_language: "AD"
|
|
retry_count: 13
|
|
retry_time_interval: 10
|
|
local_monitor_off: "enable"
|
|
automatic_off: "enable"
|
|
provider: "{{ ism }}" |