> OTOH, on another box where I have a daemon script, I put in this code
> for shutdown:
> 
>         stop)
>                 echo -n "Shutting down WebKit: "
>                 kill -s 2 `cat $PID_FILE`
>                 for SUBPID in `ps aux --cols 200 | grep 
> 'python Launch.py' | awk
>  '{print $2}'` ; do
>                         kill -s 2 $SUBPID > /dev/null 2>&1
>                 done
>                 success "Shutting down WebKit"
>                 echo
>                 ;;

Woohoo, I've been dreading trying to write a rc.d script for webkit,
this will help a lot!  Thanks!  

_______________________________________________
Webware-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/webware-devel

Reply via email to