blob: 6001180a2af9a25f08a7fe0a40e0510163814867 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/bash
#
# stap-server init.d script for the systemtap compile server
#
# chkconfig: - 00 99
# description: The systemtap compile server provides a centralized and secure \
# environment for compiling systemtap scripts.
# config: /etc/sysconfig/stap-server
# config: /etc/stap-server/conf.d
# Call the installed stap-server script.
STAP_USER=stap-server @bindir/stap-server "$@"
|