perf: 添加监测密码的脚本

pull/7677/head
ibuler 2022-02-22 17:41:30 +08:00 committed by Jiangjie.Bai
parent 09494193ab
commit 02d3747c70
3 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1 @@
testhost ansible_host=192.168.244.207

View File

@ -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:

View File

@ -0,0 +1,3 @@
#!/bin/bash
ansible-playbook -i hosts main.yml