From owner-svn-ports-head@freebsd.org Sun Jul 5 08:13:11 2015 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 A242AA0D1; Sun, 5 Jul 2015 08:13:11 +0000 (UTC) (envelope-from rodrigo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 8853E1D8A; Sun, 5 Jul 2015 08:13:11 +0000 (UTC) (envelope-from rodrigo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t658DBii057423; Sun, 5 Jul 2015 08:13:11 GMT (envelope-from rodrigo@FreeBSD.org) Received: (from rodrigo@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t658DBxD057421; Sun, 5 Jul 2015 08:13:11 GMT (envelope-from rodrigo@FreeBSD.org) Message-Id: <201507050813.t658DBxD057421@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rodrigo set sender to rodrigo@FreeBSD.org using -f From: Rodrigo Osorio Date: Sun, 5 Jul 2015 08:13:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r391348 - in head/net-mgmt/smokeping: . files X-SVN-Group: ports-head 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.20 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: Sun, 05 Jul 2015 08:13:11 -0000 Author: rodrigo Date: Sun Jul 5 08:13:10 2015 New Revision: 391348 URL: https://svnweb.freebsd.org/changeset/ports/391348 Log: Fix previous mistake in the init script, committed with minor changes PR: 200851 Modified: head/net-mgmt/smokeping/Makefile head/net-mgmt/smokeping/files/smokeping.in Modified: head/net-mgmt/smokeping/Makefile ============================================================================== --- head/net-mgmt/smokeping/Makefile Sun Jul 5 07:50:06 2015 (r391347) +++ head/net-mgmt/smokeping/Makefile Sun Jul 5 08:13:10 2015 (r391348) @@ -3,7 +3,7 @@ PORTNAME= smokeping PORTVERSION= 2.6.11 -PORTREVISION= 3 +PORTREVISION= 4 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 Sun Jul 5 07:50:06 2015 (r391347) +++ head/net-mgmt/smokeping/files/smokeping.in Sun Jul 5 08:13:10 2015 (r391348) @@ -65,7 +65,7 @@ smokeping_start() fi echo "Starting ${name}." - ${command} ${smokeping_flags} ${command_args} + su -m ${smokeping_user} -c "sh -c '${command} ${smokeping_flags} ${command_args}'" } smokeping_status()