-
Notifications
You must be signed in to change notification settings - Fork 15
/
ChangePassword.yml
26 lines (21 loc) · 1.06 KB
/
ChangePassword.yml
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
26
# Author: jmutkawoa@gmail.com
# This playbook will change password of a user.
# Always use the hash of the password in the password field
# The goal is to update the /etc/shadow file on the remote machines.
---
- hosts: changepass
gather_facts: no
become: yes
become_method: sudo
#############################################################################################
################## MODIFY THESE TWO VALUES BEFORE USING THIS PLAYBOOK #######################
######################### THE VALUES ARE "YourUserName" and "YourHash" ###########################
#############################################################################################
vars:
YourUserName: "xxx"
YourHash: "$6$E.sdjsndsjdsldjslkjdlsk"
#############################################################################################
#############################################################################################
tasks:
- name: Changing password
user: name="{{ YourUserName }}" update_password=always password="{{ YourHash }}" shell=/bin/bash