summaryrefslogtreecommitdiff
path: root/scripts/build/clean
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2010-07-24 17:06:14 +0200
committerDaniel Baumann <daniel@debian.org>2011-03-09 19:17:15 +0100
commit74c3ad26d5d710282da6f51b746a33ad6370b8ce (patch)
treea6b80f2ddec96ad9ac94a5ba72a0f0ca9eac0bb4 /scripts/build/clean
parentc58e77942a264198c8bf00c96413968cffea8d4f (diff)
downloadlive-build-74c3ad26d5d710282da6f51b746a33ad6370b8ce.zip
live-build-74c3ad26d5d710282da6f51b746a33ad6370b8ce.tar.gz
Rearranging helpers scripts in source tree.
Diffstat (limited to 'scripts/build/clean')
-rwxr-xr-xscripts/build/clean155
1 files changed, 155 insertions, 0 deletions
diff --git a/scripts/build/clean b/scripts/build/clean
new file mode 100755
index 0000000..2df040c
--- /dev/null
+++ b/scripts/build/clean
@@ -0,0 +1,155 @@
+#!/bin/sh
+
+# lh_clean(1) - clean up system build directories
+# Copyright (C) 2006-2010 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
+
+# Including common functions
+. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+
+# Read meta config
+if [ "${1}" != "noauto" ] && [ -x auto/clean ]
+then
+ Echo_message "Executing auto/clean script."
+ ./auto/clean ${@}
+fi
+
+if [ "${1}" = "noauto" ]
+then
+ shift
+fi
+
+# Setting static variables
+DESCRIPTION="$(Echo 'clean up system build directories')"
+HELP=""
+USAGE="${PROGRAM} [--all] [--cache] [--chroot] [--binary] [--purge] [--remove] [--stage] [--source]"
+
+#Arguments "${@}"
+
+# Reading configuration files
+Read_conffiles config/all config/common config/bootstrap config/chroot config/binary config/source
+Set_defaults
+
+# Avoid cases were users accidentally nuke their config/binary
+if [ ! -d config ] && [ "$(basename ${PWD})" = "config" ]
+then
+ Echo_error "%s is not a good Debian Live working directory to clean." "${PWD}"
+ exit 1
+fi
+
+rm -f .lock
+
+if [ -z "${*}" ]
+then
+ ARGUMENTS="--all"
+else
+ ARGUMENTS="${@}"
+fi
+
+for ARGUMENT in ${ARGUMENTS}
+do
+ case "${ARGUMENT}" in
+ --all)
+ LH=1 "${0}" noauto --chroot
+ LH=1 "${0}" noauto --binary
+ LH=1 "${0}" noauto --stage
+ LH=1 "${0}" noauto --source
+
+ if [ -d auto ]
+ then
+ rmdir --ignore-fail-on-non-empty auto
+ fi
+ ;;
+
+ --cache)
+ ${LH_ROOT_COMMAND} rm -rf cache
+ ;;
+
+ --chroot)
+ Echo_message "Cleaning chroot"
+ ${LH_ROOT_COMMAND} umount -f chroot/sys > /dev/null 2>&1 || true
+ ${LH_ROOT_COMMAND} umount -f chroot/proc/sys/fs/binfmt_misc > /dev/null 2>&1 || true
+ ${LH_ROOT_COMMAND} umount -f chroot/proc > /dev/null 2>&1 || true
+ ${LH_ROOT_COMMAND} umount -f chroot/lib/init/rw > /dev/null 2>&1 || true
+ ${LH_ROOT_COMMAND} umount -f chroot/dev/shm > /dev/null 2>&1 || true
+ ${LH_ROOT_COMMAND} umount -f chroot/dev/pts > /dev/null 2>&1 || true
+ ${LH_ROOT_COMMAND} umount -f chroot/dev > /dev/null 2>&1 || true
+
+ ${LH_ROOT_COMMAND} umount -f chroot/binary.tmp > /dev/null 2>&1 || true
+ ${LH_ROOT_COMMAND} umount -f chroot/dev.tmp/pts > /dev/null 2>&1 || true
+
+ ${LH_ROOT_COMMAND} rm -rf chroot chroot.tmp
+
+ rm -f .stage/chroot*
+ ;;
+
+ --binary)
+ ${LH_ROOT_COMMAND} umount -f binary.tmp > /dev/null 2>&1 || true
+ rm -rf binary.tmp binary.deb binary.udeb
+ rm -f binary*.iso
+ rm -f binary*.img
+ rm -f binary*.tar.gz
+ rm -f binary.sh
+ rm -f binary.list binary.packages md5sum.txt
+
+ rm -rf binary
+ rm -rf tftpboot
+
+ rm -f .stage/binary*
+ ;;
+
+ --remove)
+ LH=1 "${0}" --all
+ rm -rf cache/packages_*
+ ;;
+
+ --purge)
+ LH=1 "${0}" --all
+ LH=1 "${0}" --cache
+
+ if [ -e auto/config ]
+ then
+ rm -f .stage/config
+ fi
+ ;;
+
+ --stage)
+ rm -rf .stage
+ ;;
+
+ --source)
+ rm -f source*.iso
+ rm -f source*.img
+ rm -f source*.tar
+ rm -f source*.tar.gz
+ rm -f source.list
+ rm -f source-selection.txt
+
+ rm -rf source
+
+ rm -f .stage/source*
+ ;;
+
+ -h|--help)
+ Help
+ ;;
+
+ -u|--usage)
+ Usage
+ ;;
+
+ -v|--version)
+ Version
+ ;;
+
+ *)
+ Usage
+ exit 1
+ ;;
+ esac
+done