Upgrade Gitea to 1.16.5 #400

Merged
raucao merged 2 commits from chore/upgrade_gitea into master 2022-04-11 10:52:34 +00:00
Showing only changes of commit 8f4d11b317 - Show all commits

View File

@ -124,3 +124,10 @@ firewall_rule 'gitea' do
protocol :tcp
command :allow
end
# Hack-fix until we can disable auto-generation of archives
# TODO https://gitea.kosmos.org/kosmos/chef/issues/395
cron 'delete auto-generated repo file archives' do
minute '*/15'
command 'rm -rf /var/lib/gitea/data/repo-archive/* >/dev/null 2>&1'
end