#!/sbin/runscript # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License, v2 or later depend() { need hald } start() { ebegin "Starting Automounter" start-stop-daemon --start --pidfile /var/run/halevt.pid --exec /usr/bin/halevt -- -u root -g plugdev -c /etc/halevt/halevt.xml > /dev/null eend $? } stop() { ebegin "Stopping Automounter" start-stop-daemon --stop --pidfile /var/run/halevt.pid eend $? }