From be3080b24766f7a956f5eb35bc222244e278b584 Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Sun, 20 Mar 2011 22:42:00 +0100 Subject: [PATCH] __cdist_exit_err, not __exit_err Signed-off-by: Nico Schottelius --- bin/cdist-code-run-all | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/cdist-code-run-all b/bin/cdist-code-run-all index b8a17430..3a360715 100755 --- a/bin/cdist-code-run-all +++ b/bin/cdist-code-run-all @@ -40,11 +40,11 @@ while [ $# -ge 1 ]; do # Code local cdist-code-run "$__cdist_out_object_dir" "$object" \ "${__cdist_name_gencode_local}" \ - || __exit_err "Remote code failed for $object" + || __cdist_exit_err "Remote code failed for $object" # Code remote cdist-run-remote "$__cdist_target_host" "cdist-code-run" \ "${__cdist_remote_out_object_base_dir}" "$object" \ "${__cdist_name_gencode_remote}" \ - || __exit_err "Remote code failed for $object" + || __cdist_exit_err "Remote code failed for $object" done < "$__cdist_tmp_file"