aboutsummaryrefslogtreecommitdiff
path: root/release/scripts/proflibs-install.sh
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1996-01-08 06:19:45 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1996-01-08 06:19:45 +0000
commit2838466c0995cd445ed47f8988826faa317c0d1f (patch)
tree74d1bc1985305b5a90bb4217a820c0adf5fa004d /release/scripts/proflibs-install.sh
parente5255f3193867eac5a79e83742ba442a81a9edb2 (diff)
downloadsrc-2838466c0995cd445ed47f8988826faa317c0d1f.tar.gz
src-2838466c0995cd445ed47f8988826faa317c0d1f.zip
Check in the shell scripts I used for the 2.1-RELEASE CDROM. These
are provided simply as easy short-cuts for users who are prowling through the dists structure and decide to install something directly from there. There still needs to be some glue stuck into release/Makefile to copy these into the appropriate homes following a full `make release', but I'll wait until phk is done in there.
Notes
Notes: svn path=/head/; revision=13341
Diffstat (limited to 'release/scripts/proflibs-install.sh')
-rwxr-xr-xrelease/scripts/proflibs-install.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/release/scripts/proflibs-install.sh b/release/scripts/proflibs-install.sh
new file mode 100755
index 000000000000..afcd5c506824
--- /dev/null
+++ b/release/scripts/proflibs-install.sh
@@ -0,0 +1,8 @@
+#!/bin/sh
+#
+if [ "`id -u`" != "0" ]; then
+ echo "Sorry, this must be done as root."
+ exit 1
+fi
+cat proflibs.?? | tar --unlink -xpzf - -C /
+exit 0