mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
3662c512b5
PR: ports/87661 Submitted by: maintainer
12 lines
233 B
Bash
12 lines
233 B
Bash
#!/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
|