aboutsummaryrefslogtreecommitdiff
path: root/release/scripts/doc-install.sh
diff options
context:
space:
mode:
authorNathan Whitehorn <nwhitehorn@FreeBSD.org>2011-10-03 15:13:09 +0000
committerNathan Whitehorn <nwhitehorn@FreeBSD.org>2011-10-03 15:13:09 +0000
commite59e2d8ec7ee4b936b1d9299aed5b879b5dcc26f (patch)
treec481c54594473b69a886998821cfee95a4a025ba /release/scripts/doc-install.sh
parent8d79dfca555bf45bec92359b163370674aa5a526 (diff)
downloadsrc-e59e2d8ec7ee4b936b1d9299aed5b879b5dcc26f.tar.gz
src-e59e2d8ec7ee4b936b1d9299aed5b879b5dcc26f.zip
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).
Notes
Notes: svn path=/head/; revision=225937
Diffstat (limited to 'release/scripts/doc-install.sh')
-rwxr-xr-xrelease/scripts/doc-install.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/release/scripts/doc-install.sh b/release/scripts/doc-install.sh
deleted file mode 100755
index 5609720ada37..000000000000
--- a/release/scripts/doc-install.sh
+++ /dev/null
@@ -1,15 +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 doc 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 doc.?? | tar --unlink -xpzf - -C ${DESTDIR:-/}
-fi