#!/sbin/runscript # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ depend() { use net } start() { ebegin "Starting uShare" start-stop-daemon --start --quiet --exec /usr/bin/ushare -- -D -i ${USHARE_IFACE} \ -n ${USHARE_NAME} ${USHARE_OPTS} ${USHARE_DIRS} eend $? } stop() { ebegin "Stopping uShare" start-stop-daemon --stop --quiet --exec /usr/bin/ushare eend $? }