mirror of
https://github.com/armbian/build.git
synced 2025-08-14 15:16:58 +02:00
34 lines
1.4 KiB
Bash
Executable File
34 lines
1.4 KiB
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Copyright (c) Authors: https://www.armbian.com/authors
|
|
#
|
|
# This file is licensed under the terms of the GNU General Public
|
|
# License version 2. This program is licensed "as is" without any
|
|
# warranty of any kind, whether express or implied.
|
|
#
|
|
# truncate, save and clean logs if they get over 75% of the /var/log size
|
|
# working only when armbian-ramlog is enabled
|
|
|
|
treshold=75 # %
|
|
JOURNAL_SIZE=5M # size to shrink systemd-journal
|
|
|
|
[ -f /etc/default/armbian-ramlog ] && . /etc/default/armbian-ramlog
|
|
|
|
[ "$ENABLED" != true ] && exit 0
|
|
|
|
logusage=$(df /var/log/ --output=pcent | tail -1 |cut -d "%" -f 1)
|
|
if [ $logusage -ge $treshold ]; then
|
|
# write to SD
|
|
/usr/lib/armbian/armbian-ramlog write >/dev/null 2>&1
|
|
# rotate logs on "disk"
|
|
/usr/sbin/logrotate --force /etc/logrotate.conf
|
|
# truncate
|
|
/usr/bin/find /var/log -name '*.log' -or -name '*.xz' -or -name 'lastlog' -or -name 'messages' -or -name 'debug' -or -name 'syslog' | xargs -r truncate --size 0
|
|
/usr/bin/find /var/log -name 'btmp' -or -name 'wtmp' -or -name 'faillog' -or -name 'firewalld' | xargs -r truncate --size 0
|
|
/usr/bin/find /var/log -name 'mail.err' -or -name 'mail.info' -or -name 'mail.warning' | xargs -r truncate --size 0
|
|
# remove
|
|
/usr/bin/find /var/log -name '*.[0-9]' -or -name '*.gz' | xargs -r rm -f
|
|
# vacuum systemd-journald
|
|
[ -d /var/log/journal ] && journalctl --vacuum-size=${JOURNAL_SIZE}
|
|
fi
|