From 6bd984106b0486d6963181ec84a8ea6d433148d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Sat, 12 Jan 2008 01:36:28 +0000 Subject: [PATCH] This should probably work better when multiuser is not enabled. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23432 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- data/system/boot/Bootscript | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/data/system/boot/Bootscript b/data/system/boot/Bootscript index 5f8467e7d4..898a92c7a8 100644 --- a/data/system/boot/Bootscript +++ b/data/system/boot/Bootscript @@ -87,8 +87,13 @@ fi # Launch Terminal or consoled depending on $SAFEMODE if [ "$SAFEMODE" != "yes" ]; then - launch beos/system/Tracker - launch beos/system/Deskbar + if [ -e /etc/users ]; then + launch beos/system/Login + # nothing more + else + launch beos/system/Tracker + launch beos/system/Deskbar + fi launch beos/apps/Terminal else launch beos/bin/consoled