Skip to content
Snippets Groups Projects
Commit a73190a7 authored by Chris Hines's avatar Chris Hines
Browse files

allows the nfs-server to start on Debian based OS as well

parent 46a18edc
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,14 @@
- name: "Starting rpcbind"
service: "name=rpcbind state=restarted"
sudo: true
when: ansible_os_family == "RedHat"
- name: "Start the Server"
service: "name=nfs state=restarted"
sudo: true
when: ansible_os_family == "RedHat"
- name: "Start the Server"
service: "name=nfs-kernel-server state=restarted"
sudo: true
when: ansible_os_family == "Debian"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment