Rename some roles to make ansible-lint happy.

This commit is contained in:
Andreas B. Mundt 2022-06-12 14:27:44 +02:00 committed by Andreas B. Mundt
parent 4d791a65f1
commit 1db0b6ec31
75 changed files with 29 additions and 29 deletions

View file

@ -0,0 +1,24 @@
- name: bind mount exported dir
mount:
path: "{{ export_root }}/home/"
src: "{{ lan_homes }}"
fstype: none
state: mounted
opts: bind
listen: "bind mount exported dirs"
- name: restart nfs-kernel-server
service: name=nfs-kernel-server state=restarted enabled=yes
listen: "restart nfs-kernel-server"
- name: restart rpc-svcgssd
service: name=rpc-svcgssd state=restarted enabled=yes
listen: "restart rpc-svcgssd"
- name: restart sssd
service: name=sssd state=restarted enabled=yes
listen: "restart sssd"
- name: restart dnsmasq
service: name=dnsmasq state=restarted enabled=yes
listen: "restart dnsmasq"