mirror of
https://git.freebsd.org/ports.git
synced 2025-05-30 09:56:43 -04:00
pkg-deinstall only needs to handle the removal of the .pid file use @stopdaemon to stop smoking instead of invoking smokeping stop manually by pkg-deinstall use bsd.port.options.mk use SUB_FILES to update pkg-message PR: ports/143182 Submitted by: Sevan Janiyan <venture37@geeklan.co.uk>
9 lines
228 B
Bash
9 lines
228 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD: /tmp/pcvs/ports/net-mgmt/smokeping/files/pkg-deinstall.in,v 1.1 2010-02-15 12:53:24 lth Exp $
|
|
#
|
|
|
|
if [ -f ${PKG_PREFIX}/var/smokeping/smokeping.pid ]; then
|
|
rm ${PKG_PREFIX}/var/smokeping/smokeping.pid
|
|
fi
|
|
|