diff options
author | Dave Brolley <brolley@redhat.com> | 2009-09-17 20:36:24 -0400 |
---|---|---|
committer | Dave Brolley <brolley@redhat.com> | 2009-09-17 20:36:24 -0400 |
commit | 762684a57fa5420cc122b475f592545e8eeb29cd (patch) | |
tree | c1b55657f1aff31e7298d76852bbe8522a84db13 /initscript/systemtap.in | |
parent | 8afee8bbf045e858dae186d40653293c99dbbcdd (diff) | |
parent | 6bde4f381475cea055352d8ad5f60bb2f24de21d (diff) | |
download | systemtap-steved-762684a57fa5420cc122b475f592545e8eeb29cd.tar.gz systemtap-steved-762684a57fa5420cc122b475f592545e8eeb29cd.tar.xz systemtap-steved-762684a57fa5420cc122b475f592545e8eeb29cd.zip |
Merge branch 'master' of ssh://sources.redhat.com/git/systemtap
Diffstat (limited to 'initscript/systemtap.in')
-rw-r--r-- | initscript/systemtap.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/initscript/systemtap.in b/initscript/systemtap.in index 21bcd65b..b3d6e868 100644 --- a/initscript/systemtap.in +++ b/initscript/systemtap.in @@ -1,17 +1,17 @@ #!/bin/bash # -# systemtap Startup script for systemtap scrips +# systemtap Startup script for SystemTap scripts # # chkconfig: - 00 99 -# description: Systemtap is a programable kernel/application tracing tool. +# description: SystemTap is a programmable kernel/application tracing tool. # config: /etc/systemtap/config # config: /etc/systemtap/conf.d ### BEGIN INIT INFO -# Provides: Systemtap scripts startup +# Provides: SystemTap scripts startup # Required-Start: $local_fs # Required-Stop: $local_fs -# Short-Description: start and stop systemtap scripts -# Description: Systemtap is a programable kernel/application tracing tool. +# Short-Description: Start and stop SystemTap scripts +# Description: SystemTap is a programmable kernel/application tracing tool. ### END INIT INFO # Source function library. @@ -231,7 +231,7 @@ might_fail () { # message exitcode } might_success () { # message if [ $NR_FAILS -ne 0 ]; then - log "Warning: $NR_FAILS failure occured." + log "Warning: $NR_FAILS failure occurred." do_warning "$1" else do_success "$1" |