mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
13 lines
224 B
Bash
13 lines
224 B
Bash
#!/bin/sh
|
|
|
|
DELAY=60
|
|
INTERFACE=en0
|
|
PREFIX=__PREFIX__
|
|
|
|
echo sancp will start in "$DELAY" seconds
|
|
sleep "$DELAY"
|
|
exec "$PREFIX"/bin/sancp \
|
|
-i "$INTERFACE" \
|
|
-c "$PREFIX"/etc/sancp.conf \
|
|
-d "$PREFIX"/var/log/sancp
|