diff options
Diffstat (limited to 'release/scripts/compat4x-install.sh')
-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 0000000..2950a1b --- /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 |