aboutsummaryrefslogtreecommitdiff
path: root/net-mgmt/smokeping/pkg-deinstall
diff options
context:
space:
mode:
Diffstat (limited to 'net-mgmt/smokeping/pkg-deinstall')
-rw-r--r--net-mgmt/smokeping/pkg-deinstall23
1 files changed, 0 insertions, 23 deletions
diff --git a/net-mgmt/smokeping/pkg-deinstall b/net-mgmt/smokeping/pkg-deinstall
deleted file mode 100644
index 901e0c3182be..000000000000
--- a/net-mgmt/smokeping/pkg-deinstall
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/sh
-# $FreeBSD$
-#
-
-if [ -f ${PKG_PREFIX}/var/smokeping/smokeping.pid ]; then
- if [ -x ${PKG_PREFIX}/etc/rc.d/smokeping.sh ]; then
- ${PKG_PREFIX}/etc/rc.d/smokeping.sh stop > /dev/null
- fi
- rm ${PKG_PREFIX}/var/smokeping/smokeping.pid
-fi
-
-if [ "$2" != "POST-DEINSTALL" ]; then
- exit 0
-fi
-
-if [ -d ${PKG_PREFIX}/smokeping ]; then
- echo "----------------------------------------------------------------"
- echo "To delete your custom SmokePing configuration and all collected"
- echo "data permanently, use 'rm -R ${PKG_PREFIX}/smokeping'"
- echo "----------------------------------------------------------------"
-fi
-
-exit 0