mirror of
https://github.com/davestephens/ansible-nas
synced 2024-12-24 10:33:06 +00:00
Rename consume_documents to documents_root
This commit is contained in:
parent
3758c83ac5
commit
ebc0d15638
1 changed files with 3 additions and 3 deletions
|
@ -106,7 +106,7 @@ comics_root: "{{ samba_shares_root }}/comics"
|
||||||
photos_root: "{{ samba_shares_root }}/photos"
|
photos_root: "{{ samba_shares_root }}/photos"
|
||||||
|
|
||||||
# Where paperless_ng consumes documents
|
# Where paperless_ng consumes documents
|
||||||
consume_documents: "{{ samba_shares_root }}/consume_documents"
|
documents_root: "{{ samba_shares_root }}/documents"
|
||||||
|
|
||||||
# The description that'll appear next to your Ansible-NAS box when browsing your network
|
# The description that'll appear next to your Ansible-NAS box when browsing your network
|
||||||
samba_server_string: Ansible NAS
|
samba_server_string: Ansible NAS
|
||||||
|
@ -201,13 +201,13 @@ samba_shares:
|
||||||
browseable: yes
|
browseable: yes
|
||||||
path: "{{ comics_root }}"
|
path: "{{ comics_root }}"
|
||||||
|
|
||||||
- name: consume
|
- name: documents
|
||||||
comment: 'Documents'
|
comment: 'Documents'
|
||||||
guest_ok: yes
|
guest_ok: yes
|
||||||
public: yes
|
public: yes
|
||||||
writable: yes
|
writable: yes
|
||||||
browseable: yes
|
browseable: yes
|
||||||
path: "{{ consume_documents }}"
|
path: "{{ documents_root }}"
|
||||||
|
|
||||||
###
|
###
|
||||||
### NFS
|
### NFS
|
||||||
|
|
Loading…
Reference in a new issue