Add a missing PRELE() when the mfs_mount kernel process exits. Because
[dragonfly.git] / release / scripts / bin-install.sh
1 #!/bin/sh
2 #
3 if [ "`id -u`" != "0" ]; then
4         echo "Sorry, this must be done as root."
5         exit 1
6 fi
7
8 echo "You are about to extract the base distribution into ${DESTDIR:-/} - are you SURE"
9 echo -n "you want to do this over your installed system (y/n)? "
10 read ans 
11 if [ "$ans" = "y" ]; then
12         cat bin.?? | tar --unlink -xpzf - -C ${DESTDIR:-/}
13 fi