From 445ce1d5e3c283aabfdb341bdb44058674799fb0 Mon Sep 17 00:00:00 2001 From: millert <> Date: Wed, 5 Jul 2000 17:15:51 +0000 Subject: [PATCH] Start sendmail in the background so it doesn't cause blockage on reboot timing out on DNS problems. --- src/etc/rc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/etc/rc b/src/etc/rc index 0f074b80..d21b75ad 100644 --- a/src/etc/rc +++ b/src/etc/rc @@ -1,4 +1,4 @@ -# $OpenBSD: rc,v 1.143 2000/07/02 21:24:00 espie Exp $ +# $OpenBSD: rc,v 1.144 2000/07/05 17:15:51 millert Exp $ # System startup script run by init on autoboot # or after single-user. @@ -435,7 +435,7 @@ fi # sendmail isn't run. We call sendmail with a full path so that # SIGHUP works. if [ "X${sendmail_flags}" != X"NO" -a -s /etc/mail/sendmail.cf ]; then - echo -n ' sendmail'; /usr/sbin/sendmail ${sendmail_flags} + echo -n ' sendmail'; ( /usr/sbin/sendmail ${sendmail_flags} >/dev/null & ) fi if [ "X${httpd_flags}" != X"NO" ]; then