aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/lttng/ust/ustd.init
blob: c23372a588be84b17a7351fbc8fe07c5a0a4e7a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh

PIDFILE="/var/run/ustd.pid"
TRACEDIR="/tmp/ust"

case "$1" in

    start)
	mkdir -p $TRACEDIR
	ustd -o $TRACEDIR -d --pidfile $PIDFILE
	;;

    stop)
	kill `cat $PIDFILE`
	;;

    reload)
	$0 stop
	$0 start
	;;

esac