19 lines
354 B
YAML
19 lines
354 B
YAML
|
---
|
||
|
# Disable passwd and chsh
|
||
|
- name: Copy passwd and chsh scripts
|
||
|
template:
|
||
|
src: "{{ item }}"
|
||
|
dest: /usr/local/bin/
|
||
|
mode: 0755
|
||
|
with_items:
|
||
|
- 'chsh'
|
||
|
- 'passwd'
|
||
|
|
||
|
# We do not want password change this way
|
||
|
- name: Symlink chsh.ldap to chsh
|
||
|
file:
|
||
|
src: "/usr/local/bin/chsh"
|
||
|
dest: "/usr/local/bin/chsh.ldap"
|
||
|
state: link
|
||
|
|