ports/sysutils/tabled/pkg/MESSAGE

16 lines
443 B
Text
Raw Normal View History

2023-08-16 22:26:55 +00:00
Tabled uses a fifo to accept commands. That fifo must be manually created
in this version of tabled before the daemon is started:
# mkfifo /var/run/tabled.sock
To automatically start tabled at system startup time, you can add the following
commands to /etc/rc.local:
if [ -x ${PREFIX}/sbin/tabled ]; then
echo -n ' tabled'
mkfifo -m 600 /var/run/tabled.sock
${PREFIX}/sbin/tabled
fi
Make sure to set the permission of the fifo right.