blob: 82fcf805884e70be8c956cd50ab6c83736366a7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
- name: edit user password test
hosts: ism
connection: local
gather_facts: no
vars:
ism:
host: "{{ ansible_ssh_host }}"
username: "{{ username }}"
password: "{{ password }}"
tasks:
- name: "change user password"
inspur.sm.edit_pass_user:
uname: "wbs"
upass: "admin1"
provider: "{{ ism }}"
|