Skip to content
Snippets Groups Projects
Commit 142e9dd6 authored by jurgenhaas's avatar jurgenhaas
Browse files

ansible-playbooks/general#85 Linting [skip-ci]

parent 002d0490
No related branches found
No related tags found
No related merge requests found
......@@ -15,7 +15,7 @@
state: directory
owner: '{{ apacheUser }}'
group: '{{ apacheUser }}'
mode: 775
mode: 0775
with_items: '{{ drupal.domains }}'
when: item.install|default(true)
......@@ -40,7 +40,7 @@
state: directory
owner: '{{ apacheUser }}'
group: '{{ apacheUser }}'
mode: 775
mode: 0775
with_nested:
- {{ drupal.domains }}
- {{ drupal_config_directories }}
......
......@@ -9,7 +9,7 @@
state: directory
owner: root
group: root
mode: 775
mode: 0775
- name: Clone Git Repository
git:
......
......@@ -16,7 +16,7 @@
state: directory
owner: '{{ apacheUser }}'
group: '{{ apacheUser }}'
mode: 755
mode: 0755
- name: Ensure directory for mountpoint in jail
file:
......@@ -24,7 +24,7 @@
state: directory
owner: '{{ apacheUser }}'
group: '{{ apacheUser }}'
mode: 755
mode: 0755
when: drupal.jail is defined
- name: Mount the item
......@@ -51,14 +51,14 @@
state: directory
owner: '{{ apacheUser }}'
group: '{{ apacheUser }}'
mode: 755
mode: 0755
- block:
- name: Create hidden file to be monitored
copy:
dest: '{{ item.path }}/.monitor'
mode: 440
mode: 0440
content: "This file is here for monitoring purposes only."
tags:
- cron
......@@ -69,7 +69,7 @@
dest: /usr/local/bin/monitor.{{ item.monitor.id }}.sh
owner: root
group: root
mode: 775
mode: 0775
tags:
- cron
......
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