선 밖에 선 자유인

password change playbook 본문

IT/Cloud & DevOps

password change playbook

Hotman 2019. 4. 26. 13:58

- name: Change Password
  hosts: all
  user: superman
  become: yes
  ignore_errors: yes

  tasks:
    - name: Change  Password
      user: name=<user> update_password=always password=<password hash>

 

Comments