summaryrefslogtreecommitdiff
path: root/helpers/lh_clean
blob: d884ebe9d66290de66d00cda6ebd404ea702c738 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
#!/bin/sh

# lh_clean(1) - clean up system build directories
# 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

# Source common functions
for FUNCTION in /usr/share/live-helper/functions/*.sh
do
	. ${FUNCTION}
done

# Set static variables
DESCRIPTION="clean up system build directories"
HELP=""
USAGE="${PROGRAM} [all|cache|chroot|binary|lock|purge|stage|source]"

Arguments "${@}"

# Reading configuration files
Read_conffile config/common
Set_defaults

case "${1}" in
	all)
		"${0}" chroot
		"${0}" binary
		"${0}" lock
		"${0}" stage
		"${0}" source

		if [ -d chroot ]
		then
			mkdir -p .stage
			touch .stage/bootstrap
		fi
		;;

	cache)
		rm -rf cache
		;;

	chroot)
		umount -f chroot/sys > /dev/null 2>&1 || true
		umount -f chroot/proc > /dev/null 2>&1 || true
		umount -f chroot/lib/init/rw > /dev/null 2>&1 || true
		umount -f chroot/dev/shm > /dev/null 2>&1 || true
		umount -f chroot/dev/pts > /dev/null 2>&1 || true
		umount -f chroot/dev > /dev/null 2>&1 || true

		rm -rf chroot

		if [ "${PURGE}" != "true" ] && [ -d cache/chroot_bootstrap ]
		then
			cp -a cache/chroot_bootstrap chroot
			mkdir -p .stage
			touch .stage/bootstrap
		fi

		rm -f .stage/chroot*
		;;

	binary)
		rm -f binary.iso
		rm -f binary.img
		rm -f binary*.tar.gz
		rm -f packages.txt

		rm -rf binary
		rm -rf tftpboot

		rm -f .stage/binary*
		;;

	lock)
		rm -f .lock
		;;

	purge)
		PURGE="true" "${0}" all
		"${0}" cache
		;;

	stage)
		rm -rf .stage
		;;

	source)
		rm -f source.iso
		rm -f source.img
		rm -f source*.tar.gz

		rm -rf source

		rm -f .stage/source*
		;;

	*)
		"${0}" all
		;;
esac