diff options
| author | Makoto Matsushita <matusita@FreeBSD.org> | 2002-04-26 13:33:46 +0000 |
|---|---|---|
| committer | Makoto Matsushita <matusita@FreeBSD.org> | 2002-04-26 13:33:46 +0000 |
| commit | d40aecb39dc60e7862e15df51f27dcd2eceeaf2e (patch) | |
| tree | 747f93a6c2a434fee418652f12734da63cde2413 | |
| parent | 9e1b5510c30405030e1282ad9f44d54f0d7b55e8 (diff) | |
Notes
| -rwxr-xr-x | release/scripts/compat4x-install.sh | 11 |
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 |
