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