Skip to content

Commit a720b42

Browse files
committed
Fix & prioritize check for Matomo variables, fix folder variables / handling
1 parent 752bb6b commit a720b42

File tree

2 files changed

+31
-27
lines changed

2 files changed

+31
-27
lines changed

defaults/main.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
addons_dir: "{{ www_root }}/{{ item.key }}/addons"
3-
matomo_dir: "matomo"
2+
addons_dir: "{{ www_root }}/{{ item.key }}/{{ item.value.matomo.paths.addons }}"
3+
matomo_dir: "{{ item.value.matomo.paths.matomo }}"
44
combined_wordpress_sites: "{{ wordpress_sites|combine(vault_wordpress_sites, recursive=True) }}"
55
matomo_url: "https://builds.matomo.org/matomo-latest.zip"
66
matomo_php_extensions:

tasks/main.yml

+29-25
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,29 @@
1212
state: present
1313
become: yes
1414

15+
- name: Check if Matomo variables are set for each site
16+
fail:
17+
msg: >
18+
Matomo database credentials are not properly set for the site '{{ item.key }}'.
19+
Please ensure that the following variables are configured:
20+
- matomo.db
21+
- matomo.db.user
22+
- matomo.db.password
23+
- matomo.paths
24+
- matomo.paths.addons
25+
- matomo.paths.matomo
26+
when:
27+
- item.value.matomo is not defined or
28+
item.value.matomo.db is not defined or
29+
item.value.matomo.db.user is not defined or
30+
item.value.matomo.db.password is not defined or
31+
item.value.matomo.paths is not defined or
32+
item.value.matomo.paths.addons is not defined or
33+
item.value.matomo.paths.matomo is not defined
34+
with_dict: "{{ combined_wordpress_sites }}"
35+
no_log: "{{ item.value.matomo.db.password is not defined }}"
36+
tags: matomo
37+
1538
- name: Create addons folder for Matomo installation
1639
file:
1740
path: "{{ addons_dir }}"
@@ -32,7 +55,7 @@
3255
src: "/tmp/matomo_latest.zip"
3356
dest: "{{ addons_dir }}"
3457
remote_src: yes
35-
creates: "{{ addons_dir }}/{{ matomo_dir }}"
58+
creates: "{{ addons_dir }}/matomo"
3659
with_dict: "{{ wordpress_sites }}"
3760
no_log: true
3861
tags: matomo
@@ -47,7 +70,7 @@
4770

4871
- name: Set ownership of Matomo files
4972
file:
50-
path: "{{ addons_dir }}/{{ matomo_dir }}"
73+
path: "{{ addons_dir }}/matomo"
5174
owner: "{{ matomo_owner }}"
5275
group: "{{ matomo_group }}"
5376
recurse: yes
@@ -57,32 +80,13 @@
5780

5881
- name: Ensure correct permissions on Matomo directory
5982
file:
60-
path: "{{ addons_dir }}/{{ matomo_dir }}"
83+
path: "{{ addons_dir }}/matomo"
6184
mode: '0755'
6285
recurse: yes
6386
with_dict: "{{ wordpress_sites }}"
6487
no_log: true
6588
tags: matomo
6689

67-
- name: Check if Matomo variables are set for each site
68-
fail:
69-
msg: >
70-
Matomo database credentials are not properly set for the site '{{ item.key }}'.
71-
Please ensure that the following variables are configured:
72-
- matomo.db
73-
- matomo.db.user
74-
- matomo.db.password
75-
- matomo.db.host
76-
when:
77-
- item.value.matomo is not defined or
78-
item.value.matomo.db is not defined or
79-
item.value.matomo.db.user is not defined or
80-
item.value.matomo.db.password is not defined or
81-
item.value.matomo.db.host is not defined
82-
with_dict: "{{ combined_wordpress_sites }}"
83-
no_log: "{{ item.value.matomo.db.password is not defined }}"
84-
tags: matomo
85-
8690
- name: Create Matomo database
8791
mysql_db:
8892
name: "{{ matomo_db_name }}"
@@ -111,8 +115,8 @@
111115

112116
- name: Create symlink to Matomo
113117
file:
114-
path: "{{ www_root }}/{{ item.key }}/{{ item.value.current_path | default('current') }}/{{ item.value.public_path | default('web') }}/{{ item.value.matomo.path | default('matomo') }}"
115-
src: "{{ addons_dir }}/{{ matomo_dir }}"
118+
path: "{{ www_root }}/{{ item.key }}/{{ item.value.current_path | default('current') }}/{{ item.value.public_path | default('web') }}/{{ matomo_dir }}"
119+
src: "{{ addons_dir }}/matomo"
116120
state: link
117121
loop: "{{ wordpress_sites | dict2items }}"
118122
loop_control:
@@ -127,7 +131,7 @@
127131
128132
1) Deploy
129133
130-
2) Point your browser to {{ wordpress_env_defaults.wp_home }}/{{ item.value.matomo.path | default('matomo') }}
134+
2) Point your browser to {{ wordpress_env_defaults.wp_home }}/{{ matomo_dir }}
131135
132136
3) Proceed with the form using following credentials:
133137

0 commit comments

Comments
 (0)