refs #8025 autofs task restored

This commit is contained in:
Juan Ferrer 2024-09-24 09:45:24 +02:00
parent 46b9c9d6be
commit fffa279650
2 changed files with 44 additions and 6 deletions

View File

@ -0,0 +1,8 @@
- name: restart-nslcd
service:
name: nslcd
state: restarted
- name: restart-autofs
service:
name: autofs
state: restarted

View File

@ -1,8 +1,38 @@
- name: Restart nslcd
service:
name: nslcd
state: restarted
- name: Restart autofs
- name: Install autofs packages
apt:
name: "{{ item }}"
state: present
with_items:
- nfs-common
- autofs
- libnfs-utils
- autofs-ldap
- name: Create homes directory
ansible.builtin.file:
path: "{{ homes_path }}"
state: directory
mode: '0755'
- name: Configure nsswitch for autofs
lineinfile:
path: /etc/nsswitch.conf
line: "automount: files"
notify: restart-nslcd
- name: Add file homes.autofs configured to autofs
copy:
src: homes.autofs
dest: /etc/auto.master.d/homes.autofs
owner: root
group: root
mode: '0644'
- name: Add file /etc/auto.homes configured to the systemd
copy:
src: auto.homes
dest: /etc/auto.homes
owner: root
group: root
mode: '0644'
notify: restart-autofs
- name: Service autofs service
service:
name: autofs
state: restarted
enabled: yes