From 3298322d252a37bb0b9dbbf07938efb4e3ec77b2 Mon Sep 17 00:00:00 2001 From: halex <> Date: Sun, 31 May 2009 20:57:12 +0000 Subject: [PATCH] Make sure xdm is installed before trying to run it ok deraadt@ --- src/etc/rc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/etc/rc b/src/etc/rc index 69b827cb..dca9f8f3 100644 --- a/src/etc/rc +++ b/src/etc/rc @@ -1,4 +1,4 @@ -# $OpenBSD: rc,v 1.324 2009/04/17 17:17:03 henning Exp $ +# $OpenBSD: rc,v 1.325 2009/05/31 20:57:12 halex Exp $ # System startup script run by init on autoboot # or after single-user. @@ -809,7 +809,7 @@ if [ X"${wsmoused_flags}" != X"NO" -a -x /usr/sbin/wsmoused ]; then fi # Alternatively, on some architectures, xdm may be started in /etc/ttys. -if [ X"${xdm_flags}" != X"NO" ]; then +if [ X"${xdm_flags}" != X"NO" -a -x /usr/X11R6/bin/xdm ]; then echo 'starting xdm...'; /usr/X11R6/bin/xdm ${xdm_flags} fi