-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtonido
More file actions
executable file
·45 lines (41 loc) · 822 Bytes
/
tonido
File metadata and controls
executable file
·45 lines (41 loc) · 822 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/bin/bash
# Arch Linux init script for Tonido Plug application
# Author: Nick Davis
# Created 1-15-12
. /etc/rc.conf
. /etc/rc.d/functions
USER=tonido
TONIDODIR=/home/tonido/app/tonido
LOGFILE=/home/tonido/tonido_$USER.log
PID=$(pidof $TONIDODIR/tonidoconsole)
case "$1" in
start)
stat_busy "Starting Tonido Services"
if [[ -z ${PID} ]] && su $USER -c "( cd $TONIDODIR && \
export LD_LIBRARY_PATH=. \
&& $TONIDODIR/tonidoconsole &>$LOGFILE &)" &> /dev/null; then
add_daemon tonido
stat_done
else
stat_fail
exit 1
fi
;;
stop)
stat_busy "Stopping Tonido Services"
if [[ -n ${PID} ]] && kill $PID &>/dev/null; then
rm_daemon tonido
stat_done
else
stat_fail
exit 1
fi
;;
restart)
$0 stop
sleep 1
$0 start
;;
*)
echo "usage: $0 {start|stop|restart}"
esac