diff options
author | ru <ru@FreeBSD.org> | 2002-04-30 09:57:21 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2002-04-30 09:57:21 +0000 |
commit | d8d79a52dd2c5755de0bb8773935ac0641578944 (patch) | |
tree | 205a9c4b665a6a67da561775035003f540bedfdf /release/scripts | |
parent | 0b2fc084f5b2604600535bf98f4405cbb5a0e36c (diff) | |
download | FreeBSD-src-d8d79a52dd2c5755de0bb8773935ac0641578944.zip FreeBSD-src-d8d79a52dd2c5755de0bb8773935ac0641578944.tar.gz |
bin-install.sh has been repo-copied to base-install.sh.
Diffstat (limited to 'release/scripts')
-rwxr-xr-x | release/scripts/bin-install.sh | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/release/scripts/bin-install.sh b/release/scripts/bin-install.sh deleted file mode 100755 index c87a38b..0000000 --- a/release/scripts/bin-install.sh +++ /dev/null @@ -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 |