mirror of https://github.com/jumpserver/jumpserver
perf: 添加监测密码的脚本
parent
09494193ab
commit
02d3747c70
|
@ -0,0 +1 @@
|
||||||
|
testhost ansible_host=192.168.244.207
|
|
@ -0,0 +1,23 @@
|
||||||
|
- hosts: testhost
|
||||||
|
vars:
|
||||||
|
ansible_user: root
|
||||||
|
ansible_ssh_password: Fit2Cloud20202
|
||||||
|
user1: web
|
||||||
|
user1password: Fit2Cloud@12344
|
||||||
|
|
||||||
|
tasks:
|
||||||
|
- name: 监测特权用户密码
|
||||||
|
ping:
|
||||||
|
|
||||||
|
- name: 更改用户密码
|
||||||
|
user:
|
||||||
|
name: "{{ user1 }}"
|
||||||
|
password: "{{ user1password|password_hash('sha512', 'K3mIlKK') }}"
|
||||||
|
update_password: always
|
||||||
|
|
||||||
|
- name: 校验密码是否更改成功
|
||||||
|
vars:
|
||||||
|
- ansible_user: '{{ user1 }}'
|
||||||
|
ansible_ssh_password: '{{ user1password }}'
|
||||||
|
ping:
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
ansible-playbook -i hosts main.yml
|
Loading…
Reference in New Issue