diff options
| author | Artyom V. Poptsov <poptsov.artyom@gmail.com> | 2016-12-25 18:20:22 +0300 |
|---|---|---|
| committer | Artyom V. Poptsov <poptsov.artyom@gmail.com> | 2016-12-25 18:20:22 +0300 |
| commit | f29717c62b35ea30951b3d83f581d6a14869f3d3 (patch) | |
| tree | 9619ce7ac933464cb5e7c0c43bbc39c827703da3 | |
| parent | shell.scm (fallback-pkill): Use 'fallback-pkill' (diff) | |
| download | guile-ssh-f29717c62b35ea30951b3d83f581d6a14869f3d3.tar.gz | |
shell.scm: Add/update docstrings
* modules/ssh/shell.scm (pgrep): Update the docstring.
(pkill, fallback-pkill): Add docstrings.
| -rw-r--r-- | modules/ssh/shell.scm | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/modules/ssh/shell.scm b/modules/ssh/shell.scm index dd683b0..1e67309 100644 --- a/modules/ssh/shell.scm +++ b/modules/ssh/shell.scm @@ -93,14 +93,18 @@ a check result and a return code." ;; [1] https://gitlab.com/procps-ng/procps/commit/4581ac2240d3c2108c6a65ba2d19599195b512bc (define* (pgrep session pattern #:key (full? #f)) - "Check if a process with a PATTERN cmdline is available on a NODE. -Return two values: a check result and a return code." + "Check if a process with a PATTERN cmdline is available on a machine +represented by a SESSION. Return two values: a check result and a return +code." (rexec session (format #f "pgrep ~a '~a'" (if full? "-f" "") pattern))) (define* (pkill session pattern #:key (full? #f) (signal 'SIGTERM)) + "Send a SIGNAL to a process which name matches to PATTERN on a remote +machine represented by a SESSION. Return two values: a pkill result and a +return code." (rexec session (format #f "pkill ~a --signal ~a '~a'" (if full? "-f" "") signal @@ -136,6 +140,13 @@ exit 1; (define* (fallback-pkill session pattern #:key (full? #f) (signal 'SIGTERM)) + "Guile-SSH implementation of 'pkill' that uses pure bash, '/proc' filsystem +and Guile itself to kill a process. Note that this procedure won't work if +Guile is missing on a target machine. + +Send a SIGNAL to a process which name matches to PATTERN on a remote machine +represented by a SESSION. Return two values: a pkill result and a return +code." (let-values (((pids exit-status) (fallback-pgrep session pattern))) (format-log 'functions "[scm] fallback-pkill" "pids: ~a (pgrep exit status: ~a)" |
