38 lines
625 B
Plaintext
Raw Normal View History

2024-09-09 08:52:07 +00:00
#!/bin/sh
### BEGIN INIT INFO
2024-09-09 08:57:42 +00:00
# Provides: oprofile-server
2024-09-09 08:52:07 +00:00
# Required-Start: $network
# Required-Stop: $network
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
2024-09-09 08:57:42 +00:00
# Short-Description: OProfileUI server
2024-09-09 08:52:07 +00:00
# Description:
### END INIT INFO
. /etc/init.d/functions
case "$1" in
start)
2024-09-09 08:57:42 +00:00
echo "Starting OProfileUI server"
2024-09-09 08:52:07 +00:00
. /etc/profile
/usr/bin/oprofile-server &
;;
stop)
2024-09-09 08:57:42 +00:00
echo "Stopping OProfileUI server"
2024-09-09 08:52:07 +00:00
killproc oprofile-server
;;
restart)
$0 stop
sleep 1
$0 start
;;
*)
echo "usage: $0 { start | stop | restart }"
;;
esac
exit 0