|
12 | 12 | state: present
|
13 | 13 | become: yes
|
14 | 14 |
|
| 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 | + |
15 | 38 | - name: Create addons folder for Matomo installation
|
16 | 39 | file:
|
17 | 40 | path: "{{ addons_dir }}"
|
|
32 | 55 | src: "/tmp/matomo_latest.zip"
|
33 | 56 | dest: "{{ addons_dir }}"
|
34 | 57 | remote_src: yes
|
35 |
| - creates: "{{ addons_dir }}/{{ matomo_dir }}" |
| 58 | + creates: "{{ addons_dir }}/matomo" |
36 | 59 | with_dict: "{{ wordpress_sites }}"
|
37 | 60 | no_log: true
|
38 | 61 | tags: matomo
|
|
47 | 70 |
|
48 | 71 | - name: Set ownership of Matomo files
|
49 | 72 | file:
|
50 |
| - path: "{{ addons_dir }}/{{ matomo_dir }}" |
| 73 | + path: "{{ addons_dir }}/matomo" |
51 | 74 | owner: "{{ matomo_owner }}"
|
52 | 75 | group: "{{ matomo_group }}"
|
53 | 76 | recurse: yes
|
|
57 | 80 |
|
58 | 81 | - name: Ensure correct permissions on Matomo directory
|
59 | 82 | file:
|
60 |
| - path: "{{ addons_dir }}/{{ matomo_dir }}" |
| 83 | + path: "{{ addons_dir }}/matomo" |
61 | 84 | mode: '0755'
|
62 | 85 | recurse: yes
|
63 | 86 | with_dict: "{{ wordpress_sites }}"
|
64 | 87 | no_log: true
|
65 | 88 | tags: matomo
|
66 | 89 |
|
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 |
| - |
86 | 90 | - name: Create Matomo database
|
87 | 91 | mysql_db:
|
88 | 92 | name: "{{ matomo_db_name }}"
|
|
111 | 115 |
|
112 | 116 | - name: Create symlink to Matomo
|
113 | 117 | 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" |
116 | 120 | state: link
|
117 | 121 | loop: "{{ wordpress_sites | dict2items }}"
|
118 | 122 | loop_control:
|
|
127 | 131 |
|
128 | 132 | 1) Deploy
|
129 | 133 |
|
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 }} |
131 | 135 |
|
132 | 136 | 3) Proceed with the form using following credentials:
|
133 | 137 |
|
|
0 commit comments