From 4c68f854875061a2d0dd89295b5ada6ddec59125 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 16 Dec 2012 23:58:54 +0100 Subject: Adding default hook to truncate log files. --- share/hooks/0160-truncate-log-files.chroot | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 share/hooks/0160-truncate-log-files.chroot (limited to 'share') diff --git a/share/hooks/0160-truncate-log-files.chroot b/share/hooks/0160-truncate-log-files.chroot new file mode 100755 index 000000000..f95e54686 --- /dev/null +++ b/share/hooks/0160-truncate-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 -- cgit v1.2.3