From owner-svn-src-all@freebsd.org Mon Jul 13 10:56:18 2015 Return-Path: Delivered-To: svn-src-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 B23D8999CBD; Mon, 13 Jul 2015 10:56:18 +0000 (UTC) (envelope-from jlehen@gmail.com) Received: from mail-la0-x230.google.com (mail-la0-x230.google.com [IPv6:2a00:1450:4010:c03::230]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 32C6E17B; Mon, 13 Jul 2015 10:56:18 +0000 (UTC) (envelope-from jlehen@gmail.com) Received: by laem6 with SMTP id m6so6806962lae.0; Mon, 13 Jul 2015 03:56:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=cBbr8SL9FNTKMpAooBI3Fgpei1Ktgm19ckcn1CgY1IM=; b=esybSoce65gc4x4uM6TMxHTtFVeYriErHaanSrAdE9ZU8paUYMukvFuf+OeA0sSQ+Z /UMh/tzdwgIESpm5i9D7kUI9xwksGa90M5cVceeIr662i8Rn0qNTMROdTZlFp8Q9v8ml tPEnJWStbfAnSQmaNJbBEGoEL+0G/UXSeiD8f7udJ+Magmm8pClYMsU+lcrMcntZcfqq 9AMlkbS7edtglR5len8xNQ1Bnl/1YzGwdo4JGet/taswmmS3DXGmSzsD5uCFD3pcFCFn kx8F4VMOhZrbML5ZJhWa6OYd/0WssTivTwn1gMlMWNUjSMNsIocUj+cvys2bsyK2u/7N l1JQ== MIME-Version: 1.0 X-Received: by 10.152.26.163 with SMTP id m3mr31827410lag.86.1436784976363; Mon, 13 Jul 2015 03:56:16 -0700 (PDT) Sender: jlehen@gmail.com Received: by 10.112.58.169 with HTTP; Mon, 13 Jul 2015 03:56:16 -0700 (PDT) In-Reply-To: <528265C1-8B55-41D0-BF89-3A8AEF810D7F@gmail.com> References: <201507131015.t6DAF2rV025100@repo.freebsd.org> <528265C1-8B55-41D0-BF89-3A8AEF810D7F@gmail.com> Date: Mon, 13 Jul 2015 12:56:16 +0200 X-Google-Sender-Auth: Qhi72RHo2EALBFGFjVZlGe0xWlE Message-ID: Subject: Re: svn commit: r285444 - head/etc/defaults From: Jeremie Le Hen To: Garrett Cooper Cc: "src-committers@freebsd.org" , "svn-src-all@freebsd.org" , "svn-src-head@freebsd.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Jul 2015 10:56:18 -0000 On Mon, Jul 13, 2015 at 12:43 PM, Garrett Cooper wrote: > >> On Jul 13, 2015, at 03:15, Jeremie Le Hen wrote: >> >> Author: jlh >> Date: Mon Jul 13 10:15:01 2015 >> New Revision: 285444 >> URL: https://svnweb.freebsd.org/changeset/base/285444 >> >> Log: >> Allow again periodic scripts to be run from command-line. >> >> PR: 188109 >> Submitted by: Jason Unovitch >> MFC after: 1 week >> >> Modified: >> head/etc/defaults/periodic.conf >> >> Modified: head/etc/defaults/periodic.conf >> ============================================================================== >> --- head/etc/defaults/periodic.conf Mon Jul 13 09:12:05 2015 (r285443) >> +++ head/etc/defaults/periodic.conf Mon Jul 13 10:15:01 2015 (r285444) >> @@ -357,8 +357,12 @@ if [ -z "${source_periodic_confs_defined >> *) return 0 ;; >> esac >> ;; >> + '') >> + # Script run manually. >> + return 0 >> + ;; >> *) >> - echo "ASSERTION FAILED: Unexpected value for " \ >> + echo "ASSERTION FAILED: Unexpected value for" \ Actually I removed it because while trying to run one periodic script manually, I realized there was one additional space: # /etc/periodic/security/410.logincheck ASSERTION FAILED: Unexpected value for $PERIODIC: '' -- Jeremie Le Hen jlh@FreeBSD.org