summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMakoto Matsushita <matusita@FreeBSD.org>2002-04-26 13:33:46 +0000
committerMakoto Matsushita <matusita@FreeBSD.org>2002-04-26 13:33:46 +0000
commitd40aecb39dc60e7862e15df51f27dcd2eceeaf2e (patch)
tree747f93a6c2a434fee418652f12734da63cde2413
parent9e1b5510c30405030e1282ad9f44d54f0d7b55e8 (diff)
Notes
-rwxr-xr-xrelease/scripts/compat4x-install.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/release/scripts/compat4x-install.sh b/release/scripts/compat4x-install.sh
new file mode 100755
index 000000000000..2950a1b6b9fc
--- /dev/null
+++ b/release/scripts/compat4x-install.sh
@@ -0,0 +1,11 @@
+#!/bin/sh
+#
+# $FreeBSD$
+#
+
+if [ "`id -u`" != "0" ]; then
+ echo "Sorry, this must be done as root."
+ exit 1
+fi
+cat compat4x.?? | tar --unlink -xpzf - -C ${DESTDIR:-/}
+exit 0