Update to 2022-03-04 11:00

This commit is contained in:
Daniel Berteaud
2022-03-04 11:00:17 +01:00
parent bc6d7f90ae
commit 8c7a9d243a
4 changed files with 34 additions and 11 deletions

View File

@@ -52,3 +52,12 @@
when: db_created.changed
tags: pma
- name: Setup a cron job to cleanup expired sessions
cron:
name: phpmyadmin_{{ pma_id }}_session_cleanup
cron_file: phpmyadmin
user: "{{ pma_php_user }}"
job: "find {{ pma_root_dir }}/sessions -type f -mmin +480 -exec rm -f \"{}\" \\;"
special_time: hourly
tags: pma