summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2012-12-16 23:58:54 +0100
committerDaniel Baumann <daniel@debian.org>2012-12-16 23:58:54 +0100
commit5b11bd1a069a6e4096efe9b06d584cd16a974597 (patch)
treecc4178090657b5bf0e893c66820ec16cbb6d663f /share
parent43434c2f6a84ec5ad294c23506d6aff4ebd96c70 (diff)
downloadvyos-live-build-5b11bd1a069a6e4096efe9b06d584cd16a974597.tar.gz
vyos-live-build-5b11bd1a069a6e4096efe9b06d584cd16a974597.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