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

Make matomo table prefix configurable

parent c4e986cb
No related branches found
No related tags found
No related merge requests found
...@@ -51,7 +51,7 @@ ...@@ -51,7 +51,7 @@
- name: "Clone Git Repository" - name: "Clone Git Repository"
git: git:
accept_hostkey: yes accept_hostkey: yes
repo: 'git@github.com:matomo/matomo.git' repo: 'git@github.com:matomo-org/matomo.git'
dest: '{{ webRoot }}' dest: '{{ webRoot }}'
track_submodules: yes track_submodules: yes
force: yes force: yes
......
...@@ -5,7 +5,7 @@ host = "127.0.0.1" ...@@ -5,7 +5,7 @@ host = "127.0.0.1"
username = "root" username = "root"
password = "{{ mysql_root_password|default("root") }}" password = "{{ mysql_root_password|default("root") }}"
dbname = "matomo_{{ matomo.id }}" dbname = "matomo_{{ matomo.id }}"
tables_prefix = "matomo_" tables_prefix = "{{ matomo.tables_prefix|default("matomo") }}_"
port = "{{ matomo.db_port|default('3306') }}" port = "{{ matomo.db_port|default('3306') }}"
[General] [General]
......
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