1 2 3 4 5 6 7 8 9 10 11
#!/bin/sh SIPROXD_HOME=${PKG_PREFIX}/siproxd SIPROXD_PID=${SIPROXD_HOME}/siproxd.pid case $2 in DEINSTALL) [ -r ${SIPROXD_PID} ] && kill `cat ${SIPROXD_PID}` rm -f ${SIPROXD_HOME}/* && rmdir ${SIPROXD_HOME} ;; esac