mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-05 22:43:24 +00:00
8 lines
152 B
Bash
8 lines
152 B
Bash
|
#!/bin/sh
|
||
|
roxen=%%PREFIX%%/roxen/server
|
||
|
|
||
|
if [ -x $roxen/start ]; then
|
||
|
( cd $roxen; ./start --log-dir=/var/log/roxen ) > /dev/null
|
||
|
echo -n ' Roxen'
|
||
|
fi
|