summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2012-12-16 23:58:54 +0100
committerDaniel Baumann <mail@daniel-baumann.ch>2013-05-06 14:50:02 +0200
commitd6a30e84eb9e88cef7eec27ad7d58f8f245181ca (patch)
treebdfbfab87fe665905d304a9707907db5f2adff93 /share
parentfae7a1ce27a04d0756e2c64300b64193bd9d4147 (diff)
downloadvyos-live-build-d6a30e84eb9e88cef7eec27ad7d58f8f245181ca.tar.gz
vyos-live-build-d6a30e84eb9e88cef7eec27ad7d58f8f245181ca.zip
Adding default hook to truncate log files.
Diffstat (limited to 'share')
-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