ansible/roles/ldap-client/tasks/2_userland_scripts.yml

18 lines
360 B
YAML
Raw Normal View History

---
# Disable passwd and chsh
- name: Copy passwd and chsh scripts
template:
2019-02-19 10:42:57 +01:00
src: "{{ item }}.j2"
2019-02-19 11:41:08 +01:00
dest: "/usr/local/bin/{{ item }}"
mode: 0755
with_items:
2019-02-19 10:42:57 +01:00
- chsh
- passwd
# We do not want password change this way
- name: Symlink chsh.ldap to chsh
file:
2019-02-19 10:42:57 +01:00
src: /usr/local/bin/chsh
dest: /usr/local/bin/chsh.ldap
state: link