aboutsummaryrefslogtreecommitdiff
blob: 3dbc76f1ac257a8fd2ab6439280959037bf7b45c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash

source ${clst_shdir}/support/functions.sh

case $1 in
	run)
		shift
		exec_in_chroot ${clst_shdir}/tinderbox/tinderbox-chroot.sh
	;;
	preclean)
		#exec_in_chroot ${clst_shdir}/tinderbox/tinderbox-preclean-chroot.sh
		delete_from_chroot /tmp/chroot-functions.sh
	;;
	clean)
		exit 0
	;;
	*)
		exit 1
	;;
esac
exit $?