mirror of
https://github.com/geerlingguy/ansible-role-nfs
synced 2024-12-14 04:40:18 +01:00
9 lines
224 B
YAML
9 lines
224 B
YAML
---
|
|
- name: Ensure NFS utilities are installed.
|
|
yum: name=nfs-utils state=installed
|
|
|
|
- name: Ensure rpcbind and nfs are running.
|
|
service: "name={{ item }} state=started enabled=yes"
|
|
with_items:
|
|
- rpcbind
|
|
- nfs
|