DEBSOURCES
Skip Quicknav
sources / open-infrastructure-system-build / 20161101-lts2-2 / share / hooks / normal / 0140-remove-log-files.hook.chroot
123456789
#!/bin/sh set -e # Truncate log files for _FILE in $(find /var/log/ -type f) do : > ${_FILE} done