|
|
How do I get inn to start on UnixWare 7/OpenServer 6? |
| You need the following script as a rc3.d file. For example I use this as S99news.
--------------Start of S99news---------------------
LD_LIBRARY_PATH=/lib:/usr/lib:/usr/ccs/lib:/usr/local/lib:/usr/local/mysql/lib/mysql: 'start')
# Start deamon
if test -x $bindir/rc.news
then
# -l means start with log.
/bin/su news -c "$bindir/rc.news --user=news -l &"
else
echo "Can't execute $bindir/rc.news"
fi
;;
'stop')
# Stop deamon
$bindir/rc.news stop
;;
esac--------------__End of S99news--------------------- gerberb@zenez.com | |
| [Append to This Answer] |
| Previous: |
|
| Next: |
|
| ||||||||