Compare commits

...

2 Commits

Author SHA1 Message Date
Marius Alwan Meyer
e8545cd4e7 Keine Wildcard in find's Startpunkt
All checks were successful
ansible-lint / Ansible Lint (push) Successful in 10s
2023-08-10 09:25:09 +02:00
Marius Alwan Meyer
18c18c112b Verleihe CAP_SYS_NICE an den MYSQL Container 2023-07-18 16:22:34 +02:00
2 changed files with 3 additions and 2 deletions

View File

@ -45,7 +45,7 @@
minute: "0"
hour: "8"
user: root
job: "find /var/backups/gitea-* -mtime +7 -type f -exec rm {} +"
job: find /var/backups -path /var/backups/gitea-* -mtime +7 -type f -exec rm {} +
cron_file: gitea-backup-cleanup
- name: Check if environment.env will get changed

View File

@ -41,4 +41,5 @@ services:
- gitea
volumes:
- ./mysql:/var/lib/mysql
cap_add:
- SYS_NICE