diff options
author | Josh Stone <jistone@redhat.com> | 2009-09-16 15:20:05 -0700 |
---|---|---|
committer | Josh Stone <jistone@redhat.com> | 2009-09-16 15:20:05 -0700 |
commit | 5f4b21e21d7d9503bc27b04d0296adb74adeb86b (patch) | |
tree | 1099931bc540739513eb25b5f5a2a08b3ce2623b /initscript/systemtap.in | |
parent | ad7e33d7ceb3251f5141b586dad4f824c519d757 (diff) | |
download | systemtap-steved-5f4b21e21d7d9503bc27b04d0296adb74adeb86b.tar.gz systemtap-steved-5f4b21e21d7d9503bc27b04d0296adb74adeb86b.tar.xz systemtap-steved-5f4b21e21d7d9503bc27b04d0296adb74adeb86b.zip |
Spelling fixes in the init script
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" |