diff options
author | kuriyama <kuriyama@FreeBSD.org> | 2002-04-02 09:10:04 +0800 |
---|---|---|
committer | kuriyama <kuriyama@FreeBSD.org> | 2002-04-02 09:10:04 +0800 |
commit | e1fb7d34b14f51f911f87e68f5c5ce3db2622c85 (patch) | |
tree | 87e2f1e159aa071769b132eb5e37eb7d2b6c635c /net-mgmt/smokeping | |
parent | 5ed82d7483bb906609133167a92f45dee3999c37 (diff) | |
download | freebsd-ports-gnome-e1fb7d34b14f51f911f87e68f5c5ce3db2622c85.tar.gz freebsd-ports-gnome-e1fb7d34b14f51f911f87e68f5c5ce3db2622c85.tar.zst freebsd-ports-gnome-e1fb7d34b14f51f911f87e68f5c5ce3db2622c85.zip |
o Upgrade to 1.6.
o Fix a bug of "stop" feature in smokeping.sh.
Submitted by: Lars Thegler <lars@thegler.dk> (maintainer)
PR: ports/36006
Diffstat (limited to 'net-mgmt/smokeping')
-rw-r--r-- | net-mgmt/smokeping/Makefile | 3 | ||||
-rw-r--r-- | net-mgmt/smokeping/distinfo | 2 | ||||
-rw-r--r-- | net-mgmt/smokeping/files/smokeping.sh | 2 |
3 files changed, 3 insertions, 4 deletions
diff --git a/net-mgmt/smokeping/Makefile b/net-mgmt/smokeping/Makefile index c12d2b1b508b..c7a87e768821 100644 --- a/net-mgmt/smokeping/Makefile +++ b/net-mgmt/smokeping/Makefile @@ -6,8 +6,7 @@ # PORTNAME= smokeping -PORTVERSION= 1.5 -PORTREVISION= 1 +PORTVERSION= 1.6 CATEGORIES= net www MASTER_SITES= http://people.ee.ethz.ch/~oetiker/webtools/smokeping/pub/ diff --git a/net-mgmt/smokeping/distinfo b/net-mgmt/smokeping/distinfo index c32a06e5abab..733db677425e 100644 --- a/net-mgmt/smokeping/distinfo +++ b/net-mgmt/smokeping/distinfo @@ -1 +1 @@ -MD5 (smokeping-1.5.tar.gz) = 06313500d18199d36a5e2d3fa61d40b0 +MD5 (smokeping-1.6.tar.gz) = 113237ec8d0580169f4018bee07dea3f diff --git a/net-mgmt/smokeping/files/smokeping.sh b/net-mgmt/smokeping/files/smokeping.sh index 018a71bace7d..9f8ff1cbf7d6 100644 --- a/net-mgmt/smokeping/files/smokeping.sh +++ b/net-mgmt/smokeping/files/smokeping.sh @@ -18,7 +18,7 @@ restart) ;; stop) [ -r ${PREFIX}/var/smokeping/smokeping.pid ] && \ - su -f -m smokeping -c kill `cat ${PREFIX}/var/smokeping/smokeping.pid` > /dev/null && \ + su -f -m smokeping -c "kill `cat ${PREFIX}/var/smokeping/smokeping.pid`" > /dev/null && \ echo -n ' smokeping' ;; *) |