mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
16 lines
414 B
Plaintext
16 lines
414 B
Plaintext
|
#!/bin/sh
|
||
|
#
|
||
|
|
||
|
if [ -f /var/run/xitami.pid ]
|
||
|
then
|
||
|
${PKG_PREFIX}/etc/rc.d/xitami.sh stop > /dev/null
|
||
|
rm /var/run/xitami.pid
|
||
|
fi
|
||
|
|
||
|
echo "When pkg_delete has completed, you should examine ${PKG_PREFIX}/xitami"
|
||
|
echo "and it's subdirectories for content that you may wish to keep. Once you"
|
||
|
echo "have determined that it is safe to do so, you may nuke the entire tree"
|
||
|
echo "with \"rm -R ${PKG_PREFIX}/xitami\"."
|
||
|
|
||
|
exit 0
|