13 lines
409 B
Bash
13 lines
409 B
Bash
#!/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 ${exec_prefix}/bin/stap-server "$@"
|