diff options
author | Romain Gonçalves <me@rgoncalves.se> | 2021-07-29 17:00:20 +0200 |
---|---|---|
committer | Romain Gonçalves <me@rgoncalves.se> | 2021-07-29 17:00:20 +0200 |
commit | b232b894c3cbe087c8d504e91637dcf62199eed1 (patch) | |
tree | ea72a7d1a7f63c6425ee46785e1cec924351b2c3 /roles/nfsd | |
parent | 22126073344e60c405d086df37b64da0c6d3c086 (diff) | |
download | infrastructure-b232b894c3cbe087c8d504e91637dcf62199eed1.tar.gz |
Bump to third revision of homelab
Diffstat (limited to 'roles/nfsd')
-rw-r--r-- | roles/nfsd/defaults/main.yml | 7 | ||||
-rw-r--r-- | roles/nfsd/tasks/main.yml | 22 | ||||
-rw-r--r-- | roles/nfsd/templates/etc-exports.j2 | 2 |
3 files changed, 3 insertions, 28 deletions
diff --git a/roles/nfsd/defaults/main.yml b/roles/nfsd/defaults/main.yml index d116b22..618b721 100644 --- a/roles/nfsd/defaults/main.yml +++ b/roles/nfsd/defaults/main.yml @@ -4,11 +4,6 @@ --- nfsd_dir: "/data/nfs" -nfsd_dirs: "undefined" +nfsd_dirs: null nfsd_config: "/etc/exports" nfsd_nb_process: 10 - -nfsd_user: nfsu -nfsd_user_id: 2000 -nfsd_group: nfsu -nfsd_group_id: 2000 diff --git a/roles/nfsd/tasks/main.yml b/roles/nfsd/tasks/main.yml index 7da9240..71e9b55 100644 --- a/roles/nfsd/tasks/main.yml +++ b/roles/nfsd/tasks/main.yml @@ -4,29 +4,9 @@ --- -- debug: - var: nfsd_dirs - - name: ensure nfsd required variables are set fail: - when: item == "undefined" - loop: - - "{{ nfsd_dirs }}" - -- name: ensure nfs shared group exists - group: - name: "{{ nfsd_group }}" - gid: "{{ nfsd_group_id }}" - system: true - state: absent - -- name: ensure nfs shared user exists - user: - name: "{{ nfsd_user }}" - uid: "{{ nfsd_user_id }}" - group: "{{ nfsd_group }}" - system: true - state: absent + when: nsfd_dirs is none - name: ensure nfsd directory exists file: diff --git a/roles/nfsd/templates/etc-exports.j2 b/roles/nfsd/templates/etc-exports.j2 index 2fdbf21..545846f 100644 --- a/roles/nfsd/templates/etc-exports.j2 +++ b/roles/nfsd/templates/etc-exports.j2 @@ -4,5 +4,5 @@ {% for host in groups["servers"] %} {% set host = dict(hostvars[host]) %} -/data/nfs/{{ host.ansible_host }} -maproot=0:0 -alldirs {{ host.ip.in if host.ip.in is defined }} {{ host.ip.out if host.ip.out is defined }} +/data/nfs/{{ host.ansible_host }} -maproot=root {{ host.ip.in if host.ip.in is defined }} {{ host.ip.out if host.ip.out is defined }} {% endfor %} |