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