From owner-svn-ports-head@freebsd.org Mon Jul 31 22:15:05 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 15221DBF063; Mon, 31 Jul 2017 22:15:05 +0000 (UTC) (envelope-from rodrigo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CA5186B561; Mon, 31 Jul 2017 22:15:04 +0000 (UTC) (envelope-from rodrigo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v6VMF4Cc068859; Mon, 31 Jul 2017 22:15:04 GMT (envelope-from rodrigo@FreeBSD.org) Received: (from rodrigo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v6VMF3pE068857; Mon, 31 Jul 2017 22:15:03 GMT (envelope-from rodrigo@FreeBSD.org) Message-Id: <201707312215.v6VMF3pE068857@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rodrigo set sender to rodrigo@FreeBSD.org using -f From: Rodrigo Osorio Date: Mon, 31 Jul 2017 22:15:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r447003 - in head/net-mgmt/smokeping: . files X-SVN-Group: ports-head X-SVN-Commit-Author: rodrigo X-SVN-Commit-Paths: in head/net-mgmt/smokeping: . files X-SVN-Commit-Revision: 447003 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Jul 2017 22:15:05 -0000 Author: rodrigo Date: Mon Jul 31 22:15:03 2017 New Revision: 447003 URL: https://svnweb.freebsd.org/changeset/ports/447003 Log: Add a wait_for_pids at the end of the rc script stop function, waiting for the daemon to stops. With smokeping busy pinging a few hundred hosts it often occurs that the daemon stops after the rc call completion failing a restart. Bump PORTREVISION. PR: 221009 Submitted by: vegeta@tuxpowered.net Modified: head/net-mgmt/smokeping/Makefile head/net-mgmt/smokeping/files/smokeping.in Modified: head/net-mgmt/smokeping/Makefile ============================================================================== --- head/net-mgmt/smokeping/Makefile Mon Jul 31 22:09:32 2017 (r447002) +++ head/net-mgmt/smokeping/Makefile Mon Jul 31 22:15:03 2017 (r447003) @@ -3,7 +3,7 @@ PORTNAME= smokeping PORTVERSION= 2.6.11 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= net-mgmt www MASTER_SITES= http://oss.oetiker.ch/smokeping/pub/ \ http://smokeping.cs.pu.edu.tw/pub/ Modified: head/net-mgmt/smokeping/files/smokeping.in ============================================================================== --- head/net-mgmt/smokeping/files/smokeping.in Mon Jul 31 22:09:32 2017 (r447002) +++ head/net-mgmt/smokeping/files/smokeping.in Mon Jul 31 22:15:03 2017 (r447003) @@ -104,6 +104,7 @@ smokeping_stop() else echo "Stopping ${name}." kill -TERM $rc_pid + wait_for_pids $rc_pid fi }