diff options
author | Romain Gonçalves <me@rgoncalves.se> | 2021-12-11 11:55:55 +0000 |
---|---|---|
committer | Romain Gonçalves <me@rgoncalves.se> | 2021-12-11 11:55:55 +0000 |
commit | 13ef8e5744442b6a6d61a96888f87a1c96c44ba6 (patch) | |
tree | 02d217738020807cbb79bd9cf6b382d8e0f1348d /roles/nfsclient/tasks/os_alpine.yml | |
parent | 4c65e7d4cbc3e0bfee426c05e88690ea2a486673 (diff) | |
download | rules-13ef8e5744442b6a6d61a96888f87a1c96c44ba6.tar.gz |
roles: Add nfsclient
Diffstat (limited to 'roles/nfsclient/tasks/os_alpine.yml')
-rw-r--r-- | roles/nfsclient/tasks/os_alpine.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/roles/nfsclient/tasks/os_alpine.yml b/roles/nfsclient/tasks/os_alpine.yml new file mode 100644 index 0000000..62d8f70 --- /dev/null +++ b/roles/nfsclient/tasks/os_alpine.yml @@ -0,0 +1,10 @@ +- name: install nfs-utils + package: + name: nfs-utils + state: present + +- name: restart and enable nfsmount + service: + name: nfsmount + state: restarted + enabled: true |