From owner-svn-ports-all@freebsd.org Tue Jan 2 16:01:34 2018 Return-Path: Delivered-To: svn-ports-all@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 E2D56EAC6AC; Tue, 2 Jan 2018 16:01:34 +0000 (UTC) (envelope-from madpilot@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 A630E66398; Tue, 2 Jan 2018 16:01:34 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w02G1X3V032186; Tue, 2 Jan 2018 16:01:33 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w02G1X78032184; Tue, 2 Jan 2018 16:01:33 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201801021601.w02G1X78032184@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Tue, 2 Jan 2018 16:01:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r457902 - in branches/2018Q1/net/asterisk13: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: madpilot X-SVN-Commit-Paths: in branches/2018Q1/net/asterisk13: . files X-SVN-Commit-Revision: 457902 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Jan 2018 16:01:35 -0000 Author: madpilot Date: Tue Jan 2 16:01:33 2018 New Revision: 457902 URL: https://svnweb.freebsd.org/changeset/ports/457902 Log: MFH: r457847 Fix error in conditional in asterisk rc script. PR: 224833 Submitted by: Robert Ames Approved by: ports-secteam (zi) Modified: branches/2018Q1/net/asterisk13/Makefile branches/2018Q1/net/asterisk13/files/asterisk.in Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/net/asterisk13/Makefile ============================================================================== --- branches/2018Q1/net/asterisk13/Makefile Tue Jan 2 16:00:25 2018 (r457901) +++ branches/2018Q1/net/asterisk13/Makefile Tue Jan 2 16:01:33 2018 (r457902) @@ -2,6 +2,7 @@ PORTNAME= asterisk PORTVERSION= 13.18.5 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= http://downloads.asterisk.org/pub/telephony/%SUBDIR%/:DEFAULT,g729 MASTER_SITE_SUBDIR= asterisk/ \ Modified: branches/2018Q1/net/asterisk13/files/asterisk.in ============================================================================== --- branches/2018Q1/net/asterisk13/files/asterisk.in Tue Jan 2 16:00:25 2018 (r457901) +++ branches/2018Q1/net/asterisk13/files/asterisk.in Tue Jan 2 16:01:33 2018 (r457902) @@ -61,7 +61,7 @@ asterisk_stop() return 1 fi echo 'Stopping asterisk.' - if [ ${asterisk_stopsleep} > 0 ]; then + if [ ${asterisk_stopsleep} -gt 0 ]; then sleep ${asterisk_stopsleep} fi $command -nqrx 'core stop now'