From owner-svn-ports-head@freebsd.org Wed Jun 14 02:08:58 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 25C84C774B0; Wed, 14 Jun 2017 02:08:58 +0000 (UTC) (envelope-from cy@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 E600974E85; Wed, 14 Jun 2017 02:08:57 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5E28uVr012422; Wed, 14 Jun 2017 02:08:56 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5E28uIu012418; Wed, 14 Jun 2017 02:08:56 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201706140208.v5E28uIu012418@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Wed, 14 Jun 2017 02:08:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443552 - in head/sysutils/nut: . 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.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: Wed, 14 Jun 2017 02:08:58 -0000 Author: cy Date: Wed Jun 14 02:08:56 2017 New Revision: 443552 URL: https://svnweb.freebsd.org/changeset/ports/443552 Log: Fixup "use default values" assignments for real. Modified: head/sysutils/nut/Makefile head/sysutils/nut/files/nut.in head/sysutils/nut/files/nut_upslog.in head/sysutils/nut/files/nut_upsmon.in Modified: head/sysutils/nut/Makefile ============================================================================== --- head/sysutils/nut/Makefile Wed Jun 14 02:07:14 2017 (r443551) +++ head/sysutils/nut/Makefile Wed Jun 14 02:08:56 2017 (r443552) @@ -3,7 +3,7 @@ PORTNAME= nut PORTVERSION= 2.7.4 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= sysutils MASTER_SITES= http://www.networkupstools.org/source/${PORTVERSION:R}/ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}${EXTRACT_SUFX}.sig Modified: head/sysutils/nut/files/nut.in ============================================================================== --- head/sysutils/nut/files/nut.in Wed Jun 14 02:07:14 2017 (r443551) +++ head/sysutils/nut/files/nut.in Wed Jun 14 02:08:56 2017 (r443552) @@ -15,8 +15,8 @@ # # DO NOT CHANGE THESE DEFAULT VALUES HERE # -nut_enable=${nut_enable-"NO"} -nut_prefix=${nut_prefix-"%%PREFIX%%"} +nut_enable=${nut_enable:-"NO"} +nut_prefix=${nut_prefix:-"%%PREFIX%%"} . /etc/rc.subr Modified: head/sysutils/nut/files/nut_upslog.in ============================================================================== --- head/sysutils/nut/files/nut_upslog.in Wed Jun 14 02:07:14 2017 (r443551) +++ head/sysutils/nut/files/nut_upslog.in Wed Jun 14 02:08:56 2017 (r443552) @@ -15,11 +15,11 @@ # # DO NOT CHANGE THESE DEFAULT VALUES HERE # -nut_upslog_enable=${nut_upslog_enable-"NO"} -nut_upslog_prefix=${nut_upslog_prefix-"%%PREFIX%%"} -nut_upslog_logfile=${nut_upslog_logfile-"/var/log/ups.log"} -nut_upslog_interval=${nut_upslog_interval-"300"} -nut_upslog_ups=${nut_upslog_ups-"myups@localhost"} +nut_upslog_enable=${nut_upslog_enable:-"NO"} +nut_upslog_prefix=${nut_upslog_prefix:-"%%PREFIX%%"} +nut_upslog_logfile=${nut_upslog_logfile:-"/var/log/ups.log"} +nut_upslog_interval=${nut_upslog_interval:-"300"} +nut_upslog_ups=${nut_upslog_ups:-"myups@localhost"} . /etc/rc.subr Modified: head/sysutils/nut/files/nut_upsmon.in ============================================================================== --- head/sysutils/nut/files/nut_upsmon.in Wed Jun 14 02:07:14 2017 (r443551) +++ head/sysutils/nut/files/nut_upsmon.in Wed Jun 14 02:08:56 2017 (r443552) @@ -15,8 +15,8 @@ # # DO NOT CHANGE THESE DEFAULT VALUES HERE # -nut_upsmon_enable=${nut_upsmon_enable-"NO"} -nut_upsmon_prefix=${nut_upsmon_prefix-"%%PREFIX%%"} +nut_upsmon_enable=${nut_upsmon_enable:-"NO"} +nut_upsmon_prefix=${nut_upsmon_prefix:-"%%PREFIX%%"} . /etc/rc.subr