quietly attempt mounting of /var/log early, in case someone creates such
authorderaadt <deraadt@openbsd.org>
Wed, 1 Sep 2021 08:15:53 +0000 (08:15 +0000)
committerderaadt <deraadt@openbsd.org>
Wed, 1 Sep 2021 08:15:53 +0000 (08:15 +0000)
a partition to avoid /var overflow issues
ok benno beck

etc/rc

diff --git a/etc/rc b/etc/rc
index 744cf6f..829511b 100644 (file)
--- a/etc/rc
+++ b/etc/rc
@@ -1,4 +1,4 @@
-#      $OpenBSD: rc,v 1.553 2021/07/28 20:48:36 deraadt Exp $
+#      $OpenBSD: rc,v 1.554 2021/09/01 08:15:53 deraadt Exp $
 
 # System startup script run by init on autoboot or after single-user.
 # Output and error are redirected to console by init, and the console is the
@@ -453,6 +453,7 @@ sh /etc/netstart
 
 mount -s /usr >/dev/null 2>&1
 mount -s /var >/dev/null 2>&1
+mount -s /var/log >/dev/null 2>&1
 
 start_daemon dhcpleased unwind resolvd >/dev/null 2>&1