summaryrefslogtreecommitdiff
path: root/starter
blob: 03d278ca7a2c399342a97137c6ea7f5fb959087d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

CURRENT_RUNLEVEL=`basename $PWD`
# CURRENT_RUNLEVEL could be "rc3.d" or "rc4.d"

if [ x"$CURRENT_RUNLEVEL" == x"rc3.d" ]; then
	while [ ! -f /tmp/.wm_ready ];
	do
		/bin/sleep 0.1
	done
fi

/usr/bin/starter &