forked from ungleich-public/cdist
Add messaging to __process
This commit is contained in:
parent
07581e7231
commit
d1c3e2420f
2 changed files with 17 additions and 4 deletions
|
@ -2,6 +2,7 @@
|
|||
#
|
||||
# 2011-2012 Nico Schottelius (nico-cdist at schottelius.org)
|
||||
# 2014 Steven Armstrong (steven-cdist at armstrong.cc)
|
||||
# 2017 Thomas Eckert (tom at it-eckert.de)
|
||||
#
|
||||
# This file is part of cdist.
|
||||
#
|
||||
|
@ -45,13 +46,15 @@ case "$state_should" in
|
|||
else
|
||||
echo "$name"
|
||||
fi
|
||||
echo "started" >> "$__messages_out"
|
||||
;;
|
||||
absent)
|
||||
if [ -f "$__object/parameter/stop" ]; then
|
||||
if [ -f "$__object/parameter/stop" ]; then
|
||||
cat "$__object/parameter/stop"
|
||||
else
|
||||
else
|
||||
echo kill "${runs}"
|
||||
fi
|
||||
fi
|
||||
echo "stopped" >> "$__messages_out"
|
||||
;;
|
||||
*)
|
||||
echo "Unknown state: $state_should" >&2
|
||||
|
|
|
@ -30,6 +30,15 @@ start
|
|||
Executable to use for starting the process.
|
||||
|
||||
|
||||
MESSAGES
|
||||
--------
|
||||
started
|
||||
The process was started.
|
||||
|
||||
stopped
|
||||
The process was stopped.
|
||||
|
||||
|
||||
EXAMPLES
|
||||
--------
|
||||
|
||||
|
@ -63,7 +72,8 @@ SEE ALSO
|
|||
|
||||
AUTHORS
|
||||
-------
|
||||
Nico Schottelius <nico-cdist--@--schottelius.org>
|
||||
| Nico Schottelius <nico-cdist--@--schottelius.org>
|
||||
| Thomas Eckert <tom--@--it-eckert.de>
|
||||
|
||||
|
||||
COPYING
|
||||
|
|
Loading…
Reference in a new issue