forked from irl/ansible-collection-wip
Add cleaninishgts script and config file
This commit is contained in:
parent
bf6ed83fd6
commit
7ea092737a
6 changed files with 386 additions and 3 deletions
|
@ -11,6 +11,25 @@
|
|||
- mysql
|
||||
- matomo
|
||||
|
||||
|
||||
- name: install cleaninsights script
|
||||
ansible.builtin.copy:
|
||||
src: templates/cleaninsights.php
|
||||
dest: "/home/{{ podman_cleaninsights_podman_rootless_user }}/matomo/cleaninsights.php"
|
||||
owner: "{{ podman_cleaninsights_podman_rootless_user }}"
|
||||
group: "{{ podman_cleaninsights_podman_rootless_user }}"
|
||||
mode: "0755"
|
||||
become: true
|
||||
|
||||
- name: install cleaninsights configuration file
|
||||
ansible.builtin.template:
|
||||
src: "cleaninsights.ini.j2"
|
||||
dest: "/home/{{ podman_cleaninsights_podman_rootless_user }}/matomo/cleaninsights.ini"
|
||||
owner: "{{ podman_cleaninsights_podman_rootless_user }}"
|
||||
group: "{{ podman_cleaninsights_podman_rootless_user }}"
|
||||
mode: "0755"
|
||||
become: true
|
||||
|
||||
- name: install podman quadlet for rootless podman user
|
||||
ansible.builtin.template:
|
||||
src: "{{ item }}"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue