|
|
|
@ -38,13 +38,13 @@ while [ $# -ge 1 ]; do |
|
|
|
|
object="$1"; shift |
|
|
|
|
|
|
|
|
|
# Code local |
|
|
|
|
cdist-code-run "$__cdist_out_object_dir" "$object" \ |
|
|
|
|
"${__cdist_name_gencode_local}" \ |
|
|
|
|
export __cdist_out_object_dir="$__cdist_out_object_dir" |
|
|
|
|
cdist-code-run "$object" "${__cdist_name_gencode_local}" \ |
|
|
|
|
|| __cdist_exit_err "Local 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}" \ |
|
|
|
|
cdist-run-remote "$__cdist_target_host" \ |
|
|
|
|
"export __cdist_out_object_dir=\"$__cdist_remote_out_object_base_dir\";" \ |
|
|
|
|
"cdist-code-run" "$object" "${__cdist_name_gencode_remote}" \ |
|
|
|
|
|| __cdist_exit_err "Remote code failed for $object" |
|
|
|
|
done < "$__cdist_tmp_file" |
|
|
|
|