#!/bin/sh

# LoginHook - executed before loginwindow processes a login

# Brighten the video display

BIN=/usr/local/etc
F=${BIN}/VidLev.pid
if /bin/test -r $F
then
	P=`/bin/cat $F`
	/bin/ps $P | /bin/grep VidLev > /dev/null 2>&1
	if /bin/test $? -eq 0
	then
		/bin/kill -HUP $P
	fi
fi
