add support for __process --name (in theory)

Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
remotes/origin/1.5
Nico Schottelius 14 years ago
parent 40b7b158c0
commit b8002efa6d
  1. 8
      conf/type/__process/explorer/runs
  2. 13
      conf/type/__process/gencode-remote
  3. 3
      conf/type/__process/man.text
  4. 1
      conf/type/__process/parameter/optional

@ -21,6 +21,10 @@
# Check whether a process runs
#
process="$__object_id"
if [ -f "$__object/parameter/name" ]; then
name="$(cat "$__object/parameter/name")"
else
name="$__object_id"
fi
pgrep -x -f "$process" || true
pgrep -x -f "$name" || true

@ -21,7 +21,11 @@
# __file is a very basic type, which will probably be reused quite often
#
process="$__object_id"
if [ -f "$__object/parameter/name" ]; then
name="$(cat "$__object/parameter/name")"
else
name="$__object_id"
fi
runs="$(cat "$__object/explorer/runs")"
state="$(cat "$__object/parameter/state")"
@ -33,7 +37,7 @@ case "$state" in
if [ -f "$__object/parameter/start" ]; then
cat "$__object/parameter/start"
else
echo "$process"
echo "$name"
fi
fi
;;
@ -47,4 +51,9 @@ case "$state" in
fi
fi
;;
*)
echo "Unknown state: $state" >&2
exit 1
;;
esac

@ -21,6 +21,9 @@ state::
OPTIONAL PARAMETERS
-------------------
name::
Process name to match on when using pgrep -f -x.
stop::
Executable to use for stopping the process.

Loading…
Cancel
Save