Stop did not work for me either.  I added this to my init.d/webkit:

        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
                ;;

Actually, there's just one "python Launch.py" that has to be killed --
the parent, I suppose -- and this gives an error because of that (since
it then tries to kill children that are already dead, since their parent
was killed -- hehe, sick terminology).  But it has worked alright for
me.

  Ian



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

Reply via email to