blob: 60c0691185b1bdb1f1516db323546fba9eb03e24 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/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
|