2007-01-12 09:43:43 -05: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
|
|
|
|
|
2007-01-15 04:46:47 -05:00
|
|
|
To automatically start tabled at system startup time, you can add the following
|
2008-10-28 11:21:48 -04:00
|
|
|
commands to /etc/rc.local:
|
2007-01-15 04:46:47 -05:00
|
|
|
|
|
|
|
if [ -x ${PREFIX}/sbin/tabled ]; then
|
|
|
|
echo -n ' tabled'
|
|
|
|
mkfifo -m 600 /var/run/tabled.sock
|
|
|
|
${PREFIX}/sbin/tabled
|
|
|
|
fi
|
|
|
|
|
2010-03-21 07:50:00 -04:00
|
|
|
Make sure to set the permission of the fifo right.
|