diff options
Diffstat (limited to 'release/scripts')
| -rwxr-xr-x | release/scripts/compat3x-install.sh | 8 |
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 |
