Add messaging to __process

This commit is contained in:
tom 2017-09-29 14:48:51 +02:00 committed by Darko Poljak
parent 07581e7231
commit d1c3e2420f
2 changed files with 17 additions and 4 deletions

View File

@ -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

View File

@ -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