From 63416e4af83c2717a37e986f91620c1bc113c5f0 Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Fri, 18 Mar 2011 01:48:30 +0100 Subject: [PATCH] indent messages Signed-off-by: Nico Schottelius --- bin/cdist-remote-code-run | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/cdist-remote-code-run b/bin/cdist-remote-code-run index 02487a89..7fa6a4f6 100755 --- a/bin/cdist-remote-code-run +++ b/bin/cdist-remote-code-run @@ -31,7 +31,7 @@ __cdist_out_object_dir="$1"; shift object="$1"; shift if [ ! -d "$(__cdist_object_dir "$object")" ]; then - __cdist_exit_err "Object $object missing." + __cdist_exit_err "Object $object is missing." fi @@ -45,11 +45,11 @@ if [ -f "$finished" ]; then exit 0 fi -echo "Checking code for $object ..." +echo "Checking code for $object ..." if [ -f "$require" ]; then while read requirement; do - echo "Running dependency $requirement for $object ..." + echo "Requiring object $requirement for $object ..." cdist-remote-code-run "$__cdist_out_object_dir" "$requirement" done < "$require" fi