2006-11-25 13:07:29 -07:00
|
|
|
#!/bin/sh
|
2006-11-28 08:41:12 -07:00
|
|
|
#
|
|
|
|
# $OpenBSD: Xstartup,v 1.2 2006/11/28 15:41:12 matthieu Exp $
|
|
|
|
#
|
2006-11-25 13:07:29 -07:00
|
|
|
# Register a login (derived from GiveConsole as follows:)
|
|
|
|
#
|
2006-11-28 08:41:12 -07:00
|
|
|
if [ -f /etc/nologin ]; then
|
|
|
|
/usr/X11R6/bin/xmessage -file /etc/nologin -timeout 30 -center
|
|
|
|
exit 1
|
|
|
|
fi
|
2006-11-25 13:07:29 -07:00
|
|
|
/usr/X11R6/bin/sessreg -a -w "/var/log/wtmp" -u "/var/run/utmp" \
|
|
|
|
-x "/etc/X11/xdm/Xservers" -l $DISPLAY -h "" $USER
|