inetd SIGHUP

After making changes to inetd.conf I need to send a SIGHUP to re-read the
file and restart inetd. Is there a command line utility I can use to do this
??

Thanks

Steve wrote:

After making changes to inetd.conf I need to send a SIGHUP to re-read the
file and restart inetd. Is there a command line utility I can use to do this
??

Thanks

You could put the following in a file, make it executable
and put it in your path:

slay -HUP inetd

Hope this helps
William Morris

Steve <stevec@nav-tech.com> wrote in message
news:asi59p$at8$1@inn.qnx.com

After making changes to inetd.conf I need to send a SIGHUP to re-read the
file and restart inetd. Is there a command line utility I can use to do
this
??

“/bin/kill” is the UNIX way (try “use /bin/kill”) to send a signal to a
process;
A QNX alternative is “slay”.

-xtang

> slay -HUP inetd

Sorry, that should read
slay -s HUP inetd

William