mirror of
https://github.com/geerlingguy/ansible-role-nfs
synced 2024-12-14 12:50:19 +01:00
8 lines
161 B
YAML
8 lines
161 B
YAML
|
---
|
||
|
- name: Ensure rpcbind and nfs are running.
|
||
|
service: "name={{ item }} state=started enabled=yes"
|
||
|
with_items:
|
||
|
- rpcbind
|
||
|
- nfs
|
||
|
when: nfs_exports
|