blob: 493b3b8488d74865f6d0842f91f44bc68089ef73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
- name: Smtp dest test
hosts: ism
connection: local
gather_facts: no
vars:
ism:
host: "{{ ansible_ssh_host }}"
username: "{{ username }}"
password: "{{ password }}"
tasks:
- name: "Set smtp dest information"
inspur.sm.edit_smtp_dest:
id: 1
status: "disable"
provider: "{{ ism }}"
- name: "Set smtp dest information"
inspur.sm.edit_smtp_dest:
id: 1
status: "enable"
address: "wbs@inspur.com"
description: "test"
provider: "{{ ism }}"
|