mirror of
https://github.com/opnsense/src.git
synced 2026-02-23 01:46:42 -05:00
9 lines
148 B
Bash
9 lines
148 B
Bash
|
|
#!/bin/sh
|
||
|
|
#
|
||
|
|
if [ "`id -u`" != "0" ]; then
|
||
|
|
echo "Sorry, this must be done as root."
|
||
|
|
exit 1
|
||
|
|
fi
|
||
|
|
tar --unlink -xpzf commerce.tgz -C /usr/local
|
||
|
|
exit 0
|