Skip to content
Snippets Groups Projects
Commit d83adcb3 authored by Lars Beckers's avatar Lars Beckers
Browse files

phpwebapps: allow granular home dir control

parent 2d45b822
Branches main
No related tags found
No related merge requests found
...@@ -41,9 +41,9 @@ ...@@ -41,9 +41,9 @@
file: file:
path: "{{item.directory|default('/var/www/' + item.name)}}" path: "{{item.directory|default('/var/www/' + item.name)}}"
state: directory state: directory
owner: "{{item.name}}" owner: "{{item.directory_owner|default(item.name)}}"
group: "{{item.name}}" group: "{{item.directory_group|default(item.name)}}"
mode: '0755' mode: "{{item.directory_mode|default('0755')}}"
loop: "{{phpwebapps}}" loop: "{{phpwebapps}}"
loop_control: loop_control:
label: "{{item.name}}" label: "{{item.name}}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment