forked from ungleich-public/cdist
move export of __cdist_out_object_dir to cdist-run-remote
Signed-off-by: Steven Armstrong <steven@icarus.ethz.ch>
This commit is contained in:
parent
fe159eccb2
commit
878f7d18ce
2 changed files with 3 additions and 2 deletions
|
@ -36,6 +36,5 @@ cdist-code-run "$__cdist_object" "${__cdist_name_gencode_local}" \
|
|||
|
||||
# Code remote
|
||||
cdist-run-remote "$__cdist_target_host" \
|
||||
"export __cdist_out_object_dir=\"$__cdist_remote_out_object_dir\";" \
|
||||
"cdist-code-run" "$__cdist_object" "${__cdist_name_gencode_remote}" \
|
||||
|| __cdist_exit_err "Remote code failed for $__cdist_object"
|
||||
|
|
|
@ -28,4 +28,6 @@ set -ue
|
|||
__cdist_target_host="$1"; shift
|
||||
|
||||
ssh "${__cdist_remote_user}@${__cdist_target_host}" \
|
||||
"export PATH=\"${__cdist_remote_bin_dir}:\$PATH\";" "$@"
|
||||
"export PATH=\"${__cdist_remote_bin_dir}:\$PATH\";" \
|
||||
"export __cdist_out_object_dir=\"$__cdist_remote_out_object_dir\";" \
|
||||
"$@"
|
||||
|
|
Loading…
Reference in a new issue