diff options
author | Romain Gonçalves <me@rgoncalves.se> | 2021-12-21 17:42:23 +0000 |
---|---|---|
committer | Romain Gonçalves <me@rgoncalves.se> | 2021-12-21 17:51:50 +0000 |
commit | a4c3a63cbdb9fde03e827f1b583e6131faba5bc4 (patch) | |
tree | 216316fe918544a57d5d65e2b6039eb485058ccf /roles/nfsclient/tasks/main.yml | |
parent | 84aa6a0ad17aa8517c1429272cf4c6fcaed9bfbb (diff) | |
download | rules-a4c3a63cbdb9fde03e827f1b583e6131faba5bc4.tar.gz |
roles/nfsclient: Pass ansible-lint
posix.mount should be used and tested when possible
Diffstat (limited to 'roles/nfsclient/tasks/main.yml')
-rw-r--r-- | roles/nfsclient/tasks/main.yml | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/roles/nfsclient/tasks/main.yml b/roles/nfsclient/tasks/main.yml index 7799a60..0c1f75e 100644 --- a/roles/nfsclient/tasks/main.yml +++ b/roles/nfsclient/tasks/main.yml @@ -26,7 +26,4 @@ lineinfile: path: "{{ nfsclient_fstab_path }}" line: "{{ nfsclient_server_ip }}:{{ nfsclient_server_dir }}/{{ inventory_hostname }} {{ nfsclient_dir }} nfs rw,nodev,nosuid 0 0" - -- name: reload fstab - shell: mount -a - ignore_errors: true + notify: reload fstab |