blob: 60c0691185b1bdb1f1516db323546fba9eb03e24 (
plain) (
tree)
|
|
#!/bin/sh
PREFIX=%%PREFIX%%
case "$1" in
start)
${PREFIX}/bin/xfstt --sync >/dev/null
${PREFIX}/bin/xfstt --user nobody --notcp --daemon && echo -n ' xfstt'
;;
stop)
/usr/bin/killall xfstt 2>/dev/null && echo -n ' xfstt'
;;
*)
echo "$0 start | stop"
;;
esac
|