diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | stap-server.8.in | 3 | ||||
-rwxr-xr-x | stap-stop-server | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -8,6 +8,7 @@ for phases 1-4. (fatal,error): Correct quoting typos. stap-server.8.in: Add SSL information. + * stap-stop-server: Use 'ps -e' to list processes. 2009-02-02 Stan Cox <scox@redhat.com> diff --git a/stap-server.8.in b/stap-server.8.in index f7d31153..2159ba25 100644 --- a/stap-server.8.in +++ b/stap-server.8.in @@ -23,8 +23,7 @@ stap-server \- systemtap server and related utilities .B \-\-server=\fIHOSTNAME\fR|\fIIP_ADDRESS\fR[\fB:\fIPORT\fR] ] [ -.B \-\-ssl= -.I DIRNAME +.B \-\-ssl=\fIDIRNAME ] [ .I ARGUMENTS diff --git a/stap-stop-server b/stap-stop-server index 5afcf705..48c8a450 100755 --- a/stap-stop-server +++ b/stap-stop-server @@ -20,7 +20,7 @@ if test "X$pid" = "X"; then fi # Verify that it is a systemtap server -(ps -a | grep stap-serverd | grep -q $pid) +(ps -e | grep stap-serverd | grep -q $pid) if test $? != 0; then echo "$pid is not a systemtap server" exit 1 |