aboutsummaryrefslogtreecommitdiff
path: root/release/scripts
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>1999-04-20 11:42:51 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>1999-04-20 11:42:51 +0000
commitd790bc70965b42cf8dbc1bb21dd836117e366fdf (patch)
tree5ceec1c3631799438610906f38c7af9eade2f0fb /release/scripts
parentac34a7a431be7533fdd1bbeaaef8956453964f7a (diff)
downloadsrc-d790bc70965b42cf8dbc1bb21dd836117e366fdf.tar.gz
src-d790bc70965b42cf8dbc1bb21dd836117e366fdf.zip
Add script to install the compat3x distribution.
Notes
Notes: svn path=/head/; revision=45864
Diffstat (limited to 'release/scripts')
-rwxr-xr-xrelease/scripts/compat3x-install.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/release/scripts/compat3x-install.sh b/release/scripts/compat3x-install.sh
new file mode 100755
index 000000000000..9d79d0109ff9
--- /dev/null
+++ b/release/scripts/compat3x-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 compat3x.?? | tar --unlink -xpzf - -C ${DESTDIR:-/}
+exit 0