diff options
author | Daniel Baumann <daniel@debian.org> | 2012-12-16 23:58:54 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2012-12-16 23:58:54 +0100 |
commit | 5b11bd1a069a6e4096efe9b06d584cd16a974597 (patch) | |
tree | cc4178090657b5bf0e893c66820ec16cbb6d663f /share/hooks | |
parent | 43434c2f6a84ec5ad294c23506d6aff4ebd96c70 (diff) | |
download | vyos-live-build-5b11bd1a069a6e4096efe9b06d584cd16a974597.tar.gz vyos-live-build-5b11bd1a069a6e4096efe9b06d584cd16a974597.zip |
Adding default hook to truncate log files.
Diffstat (limited to 'share/hooks')
-rwxr-xr-x | share/hooks/0160-truncate-log-files.chroot | 9 |
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 |