bin-install.sh has been repo-copied to base-install.sh.

This commit is contained in:
Ruslan Ermilov 2002-04-30 09:57:21 +00:00
parent 77776e8c7a
commit 5183f6e789
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=95788

View File

@ -1,16 +0,0 @@
#!/bin/sh
#
# $FreeBSD$
#
if [ "`id -u`" != "0" ]; then
echo "Sorry, this must be done as root."
exit 1
fi
echo "You are about to extract the base distribution into ${DESTDIR:-/} - are you SURE"
echo -n "you want to do this over your installed system (y/n)? "
read ans
if [ "$ans" = "y" ]; then
cat base.?? | tar --unlink -xpzf - -C ${DESTDIR:-/}
fi