openbsd-ports/www/havp/pkg/MESSAGE
ajacoutot 1218d91767 Create both /var/run/havp/ and /var/tmp/havp/ from rc.local instead of
adding them to the PLIST. First, /var/run/* is cleaned upon reboot and
second /var/tmp/havp/ has a chance to get wiped out being in a temporary
dir.

ok giovanni@ (maintainer)
2010-05-13 16:24:36 +00:00

9 lines
203 B
Plaintext

To have havp start at boot time, insert the following
into /etc/rc.local:
if [ -x ${PREFIX}/sbin/havp ]; then
echo -n ' havp'
install -d -o _havp /var/run/havp/ /var/tmp/havp/
${PREFIX}/sbin/havp
fi