From owner-svn-src-all@freebsd.org Wed Feb 1 23:22:55 2017 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 B0AD2CCC715; Wed, 1 Feb 2017 23:22:55 +0000 (UTC) (envelope-from asomers@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 6616615AF; Wed, 1 Feb 2017 23:22:55 +0000 (UTC) (envelope-from asomers@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v11NMsq4046864; Wed, 1 Feb 2017 23:22:54 GMT (envelope-from asomers@FreeBSD.org) Received: (from asomers@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v11NMspn046862; Wed, 1 Feb 2017 23:22:54 GMT (envelope-from asomers@FreeBSD.org) Message-Id: <201702012322.v11NMspn046862@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: asomers set sender to asomers@FreeBSD.org using -f From: Alan Somers Date: Wed, 1 Feb 2017 23:22:54 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r313069 - in head/etc/periodic: daily monthly weekly X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.23 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: Wed, 01 Feb 2017 23:22:55 -0000 Author: asomers Date: Wed Feb 1 23:22:54 2017 New Revision: 313069 URL: https://svnweb.freebsd.org/changeset/base/313069 Log: Allow 999.local to run scripts in any language If one of the scripts listed in (daily|weekly|monthly)_local is executable, 999.local should simply execute it. Only if the script isn't executable should 999.local assume it needs /bin/sh. Reviewed by: brian MFC after: 3 weeks Sponsored by: Spectra Logic Corp Modified: head/etc/periodic/daily/999.local head/etc/periodic/monthly/999.local head/etc/periodic/weekly/999.local Modified: head/etc/periodic/daily/999.local ============================================================================== --- head/etc/periodic/daily/999.local Wed Feb 1 22:03:59 2017 (r313068) +++ head/etc/periodic/daily/999.local Wed Feb 1 23:22:54 2017 (r313069) @@ -20,7 +20,12 @@ do echo '' case "$script" in /*) - if [ -f "$script" ] + if [ -x "$script" ] + then + echo "Running $script:" + + $script || rc=3 + elif [ -f "$script" ] then echo "Running $script:" Modified: head/etc/periodic/monthly/999.local ============================================================================== --- head/etc/periodic/monthly/999.local Wed Feb 1 22:03:59 2017 (r313068) +++ head/etc/periodic/monthly/999.local Wed Feb 1 23:22:54 2017 (r313069) @@ -17,7 +17,12 @@ do echo '' case "$script" in /*) - if [ -f "$script" ] + if [ -x "$script" ] + then + echo "Running $script:" + + $script || rc=3 + elif [ -f "$script" ] then echo "Running $script:" Modified: head/etc/periodic/weekly/999.local ============================================================================== --- head/etc/periodic/weekly/999.local Wed Feb 1 22:03:59 2017 (r313068) +++ head/etc/periodic/weekly/999.local Wed Feb 1 23:22:54 2017 (r313069) @@ -17,7 +17,12 @@ do echo '' case "$script" in /*) - if [ -f "$script" ] + if [ -x "$script" ] + then + echo "Running $script:" + + $script || rc=3 + elif [ -f "$script" ] then echo "Running $script:"