HEX
Server: Apache
System: Linux eisbus 6.8.12-9-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-9 (2025-03-16T19:18Z) x86_64
User: www-data (33)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: //etc/cron.weekly/etckeeper-gc
#!/bin/bash -e
#
# weekly cron job to do garebage collection for etckeeper 

# only run if git is installed & /etc is git repo
if [ -f /usr/bin/git ] && [ -d /etc/.git ]; then
    cd /etc
    /usr/bin/git gc --auto --quiet
fi