diff options
author | Bruce Evans <bde@FreeBSD.org> | 1998-01-01 09:04:47 +0000 |
---|---|---|
committer | Bruce Evans <bde@FreeBSD.org> | 1998-01-01 09:04:47 +0000 |
commit | 7083bd1e7d74d67984c81f17dc6651c6fa08cdf8 (patch) | |
tree | 020f85a4df753a2f3e500895b190a81c1864dbeb /etc/periodic/weekly | |
parent | b1679c0f7ef3e2fb7bf3e294a1dca3dfda8d7b70 (diff) | |
download | src-7083bd1e7d74d67984c81f17dc6651c6fa08cdf8.tar.gz src-7083bd1e7d74d67984c81f17dc6651c6fa08cdf8.zip |
Don't test for executability of /usr/sbin/sysctl [before execing
plain sysctl]. We already assumed that many standard commands
exist, and sysctl is not special.
Notes
Notes:
svn path=/head/; revision=32154
Diffstat (limited to 'etc/periodic/weekly')
-rwxr-xr-x | etc/periodic/weekly/120.clean-kvmdb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/periodic/weekly/120.clean-kvmdb b/etc/periodic/weekly/120.clean-kvmdb index 24d8aa2b904a..69eed4a84ef8 100755 --- a/etc/periodic/weekly/120.clean-kvmdb +++ b/etc/periodic/weekly/120.clean-kvmdb @@ -1,9 +1,9 @@ #!/bin/sh - # -# $Id: 120.clean-kvmdb,v 1.1.1.1 1997/08/12 17:51:16 pst Exp $ +# $Id: 120.clean-kvmdb,v 1.1.1.1 1997/08/16 17:04:02 pst Exp $ # -if [ -d /var/db -a -x /usr/sbin/sysctl ] ; then +if [ -d /var/db ] ; then echo "" echo "Cleaning up kernel database files:" |