summaryrefslogtreecommitdiffstats
path: root/prog/jelka/chroot.sh
blob: 3d92d2c82a8078dc0873f72d2eebd321fa5c92e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh
set -xeuo pipefail
mount -t tmpfs -o nr_blocks=1,mode=0755 tmp $2
if [ x$1 = xstart ]
then
	for i in /bin /dev/null /etc /lib /lib64 /usr
	do
		[ -d $i ] && mkdir -p $2/$i || { mkdir -p $2/`rev <<<$i | cut -d/ -f2- | rev` && touch $2/$i; }
		mount --bind -onosuid,ro $i $2/$i
	done
	mkdir -p $2/jelka
	mount --bind -onosuid,ro . $2/jelka
	mkdir -p $2/dev/shm
else
	mount | grep $2 | cut -d\  -f3 | xargs -I '{}' umount '{}'
fi