diff options
Diffstat (limited to 'release/scripts')
-rwxr-xr-x | release/scripts/compat22-install.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/release/scripts/compat22-install.sh b/release/scripts/compat22-install.sh new file mode 100755 index 000000000000..c0d09d214d21 --- /dev/null +++ b/release/scripts/compat22-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 compat22.?? | tar --unlink -xpzf - -C ${DESTDIR:-/} +exit 0 |