diff options
Diffstat (limited to 'share/hooks/0140-remove-log-files.chroot')
-rwxr-xr-x | share/hooks/0140-remove-log-files.chroot | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/share/hooks/0140-remove-log-files.chroot b/share/hooks/0140-remove-log-files.chroot new file mode 100755 index 000000000..f95e54686 --- /dev/null +++ b/share/hooks/0140-remove-log-files.chroot @@ -0,0 +1,9 @@ +#!/bin/sh + +set -e + +# Truncate log files +for _FILE in $(find /var/log/ -type f) +do + : > ${_FILE} +done |