mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 15:57:05 -05:00
8 lines
146 B
Bash
Executable file
8 lines
146 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 /
|
|
exit 0
|