ansible-role-nfs/tasks/setup-Debian.yml
Joel Noyce Barnham 48114e97f7 Pass the list of packages to apt directly
The current method results in a deprecation warning on the latest
version of Ansible.
2018-07-15 11:08:44 +01:00

7 lines
129 B
YAML

---
- name: Ensure NFS utilities are installed.
apt:
name:
- nfs-common
- nfs-kernel-server
state: present