# default: on
# description: turns a light off  port defined in /etc/services
# /etc/xinetd.d/lightoff
#
service lightoff
{
	disable	= no
	socket_type	= stream        
        protocol        = tcp
	wait		= no
	user		= root
	server		= /usr/local/bin/light
        server_args     = -f
        only_from       = 127.0.0.1
}
