live-build/share/hooks/0140-remove-log-files.chroot

10 lines
101 B
Plaintext
Raw Normal View History

#!/bin/sh
set -e
# Truncate log files
for _FILE in $(find /var/log/ -type f)
do
: > ${_FILE}
done