live-build/hooks/minimal

31 lines
754 B
Plaintext
Raw Normal View History

2007-09-23 08:04:48 +00:00
#!/bin/sh
2007-09-23 08:04:46 +00:00
# /usr/share/live-helper/hooks/minimal - hook list for live-helper(7)
2007-09-23 08:04:48 +00:00
# Copyright (C) 2006-2007 Daniel Baumann <daniel@debian.org>
#
# live-helper comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
# This is free software, and you are welcome to redistribute it
# under certain conditions; see COPYING for details.
set -e
2007-09-23 08:04:46 +00:00
# Removing unused packages
2007-09-23 08:04:49 +00:00
apt-get remove --purge --yes apt-utils aptitude
apt-get remove --purge --yes man-db manpages info
apt-get remove --purge --yes ssl wget
2007-09-23 08:04:46 +00:00
# Removing unused files
2007-09-23 08:04:50 +00:00
find . -name *~ | xargs rm -f
2007-09-23 08:04:46 +00:00
rm -rf /var/cache/man/*
# Cleaning apt
rm -rf /var/lib/apt/lists
mkdir -p /var/lib/apt/lists/partial
# Truncating logs
for FILE in `find /var/log/ -type f`
do
cat < /dev/null > $FILE
done