mirror of
https://github.com/opnsense/src.git
synced 2026-02-12 15:24:40 -05:00
8 lines
158 B
Bash
Executable file
8 lines
158 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
if [ "`id -u`" != "0" ]; then
|
|
echo "Sorry, this must be done as root."
|
|
exit 1
|
|
fi
|
|
cat compat20.?? | tar --unlink -xpzf - -C ${DESTDIR:-/}
|
|
exit 0
|