summaryrefslogtreecommitdiff
path: root/share/hooks
diff options
context:
space:
mode:
Diffstat (limited to 'share/hooks')
-rwxr-xr-xshare/hooks/0160-truncate-log-files.chroot9
1 files changed, 9 insertions, 0 deletions
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