#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/tpconfig/files/tpconfig,v 1.5 2004/07/14 21:34:28 agriffis Exp $

depend() {
	before xdm
}

start() {
	ebegin "Loading tpconfig options..."
	/usr/bin/tpconfig ${TPOPTIONS} > /dev/null 2> /tmp/tpconfig.start
	if [ -z "`cat /tmp/tpconfig.start 2> /dev/null`" ]; then
		eend 0
	else
		eend 1
	fi
}

stop() {
	ebegin "Stoping tpconfig (this does nothing)..."
	eend 0
}
