diff options
author | Alan Somers <asomers@FreeBSD.org> | 2017-02-01 23:22:54 +0000 |
---|---|---|
committer | Alan Somers <asomers@FreeBSD.org> | 2017-02-01 23:22:54 +0000 |
commit | cb23468e75163477cf6b9ba2624f2078339a15d1 (patch) | |
tree | d05a0ccea1d00a2b7804bbb9d367a05802b92d18 /etc/periodic/daily/999.local | |
parent | 878097c10e43c24f81e4a0b7d39bd76b4aa618b4 (diff) |
Notes
Diffstat (limited to 'etc/periodic/daily/999.local')
-rwxr-xr-x | etc/periodic/daily/999.local | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/etc/periodic/daily/999.local b/etc/periodic/daily/999.local index 317347526e79..eca04e5771b8 100755 --- a/etc/periodic/daily/999.local +++ b/etc/periodic/daily/999.local @@ -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:" |