diff options
author | nwhitehorn <nwhitehorn@FreeBSD.org> | 2011-10-03 15:13:09 +0000 |
---|---|---|
committer | nwhitehorn <nwhitehorn@FreeBSD.org> | 2011-10-03 15:13:09 +0000 |
commit | 190bd9f0974ec538cdc498f5b910c06455f3df6e (patch) | |
tree | c481c54594473b69a886998821cfee95a4a025ba /release/scripts/base-install.sh | |
parent | 1d578b7f371a13305217ae300f26fd6f9336b7f7 (diff) | |
download | FreeBSD-src-190bd9f0974ec538cdc498f5b910c06455f3df6e.zip FreeBSD-src-190bd9f0974ec538cdc498f5b910c06455f3df6e.tar.gz |
Farewall, sysinstall! You served us well for many years, but 10.0 is one
digit beyond your time.
Various sysinstall dependencies (e.g. libftpio, libdisk, libodialog, etc.)
will be cleaned up in coming days. Some will take longer than others due to
a few other consumers (tzsetup and sade).
Diffstat (limited to 'release/scripts/base-install.sh')
-rwxr-xr-x | release/scripts/base-install.sh | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/release/scripts/base-install.sh b/release/scripts/base-install.sh deleted file mode 100755 index c87a38b..0000000 --- a/release/scripts/base-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 |