diff options
author | 1996-07-18 09:57:35 +0000 | |
---|---|---|
committer | 1996-07-18 09:57:35 +0000 | |
commit | ba8d16019a091c702da5ac3b4286ff2f6ec113dd (patch) | |
tree | df4dcd71d2fc888cdbf883e9caf51ec937e25ca8 | |
parent | added my two firewall examples, plus the stuff from the distribution (diff) | |
download | wireguard-openbsd-ba8d16019a091c702da5ac3b4286ff2f6ec113dd.tar.xz wireguard-openbsd-ba8d16019a091c702da5ac3b4286ff2f6ec113dd.zip |
daily: disable the fscks by default.
rc: add /usr/local/lib to ldconfig.
-rw-r--r-- | etc/daily | 7 | ||||
-rw-r--r-- | etc/rc | 4 |
2 files changed, 6 insertions, 5 deletions
diff --git a/etc/daily b/etc/daily index 6033a95ad55..d2992c438ce 100644 --- a/etc/daily +++ b/etc/daily @@ -1,6 +1,6 @@ #!/bin/sh - # -# $OpenBSD: daily,v 1.7 1996/07/12 21:34:47 deraadt Exp $ +# $OpenBSD: daily,v 1.8 1996/07/18 09:57:35 downsj Exp $ # PATH=/bin:/usr/bin:/sbin:/usr/sbin:/usr/local host=`hostname -s` @@ -122,8 +122,9 @@ echo "" ruptime echo "" -echo "Checking filesystems:" -fsck -n | grep -v '^\*\* Phase' +echo "NOT checking filesystems." +#echo "Checking filesystems:" +#fsck -n | grep -v '^\*\* Phase' echo "" if [ -f /etc/Distfile ]; then @@ -1,4 +1,4 @@ -# $OpenBSD: rc,v 1.19 1996/07/05 02:18:43 deraadt Exp $ +# $OpenBSD: rc,v 1.20 1996/07/18 09:57:37 downsj Exp $ # System startup script run by init on autoboot # or after single-user. @@ -281,7 +281,7 @@ rm -f $T if [ -f /sbin/ldconfig ]; then echo 'creating runtime link editor directory cache.' - ldconfig /usr/X11R6/lib + ldconfig /usr/local/lib /usr/X11R6/lib fi # Kerberos runs ONLY on the Kerberos server machine |