Skip to content
Snippets Groups Projects
Commit d186a38f authored by Stephane Armanet's avatar Stephane Armanet
Browse files

add uploads SMB share

parent 3841f8fd
No related branches found
No related tags found
No related merge requests found
Pipeline #17902 failed
......@@ -16,6 +16,14 @@
url_password: "{{ pss_soft_artifactory_password }}"
with_items: "{{ pss_nas_software_files }}"
- name: add uploads folder
file:
path: /uploads
owner: "{{ pss_nas_softs_owner }}"
group: "{{ pss_nas_softs_owner }}"
mode: 0755
state: directory
- name: add samba specific options file fo PSS NAS
template:
src: smb-pss.conf.j2
......
......@@ -3,6 +3,16 @@
read only = yes
force user = "{{ pss_nas_softs_owner }}"
valid users =
[uploads]
path = /uploads
read only = no
valid users =
force user = "{{ pss_nas_softs_owner }}"
writeable = yes
directory mask = 0755
create mask = 0644
browseable = yes
[homes]
comment = Home Directory
......
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