forked from ungleich-public/cdist
cleaupn cdist-manifest-run and in theory fix output problem
Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
This commit is contained in:
parent
3f19f92435
commit
fdea6edcd2
1 changed files with 22 additions and 9 deletions
|
@ -23,18 +23,32 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
. cdist-config
|
. cdist-config
|
||||||
[ $# -eq 3 ] || __cdist_usage "<target host> <manifest> <out dir>"
|
[ $# -eq 3 ] || __cdist_usage "<target host> <manifest> <out object dir>"
|
||||||
set -u
|
set -u
|
||||||
|
|
||||||
__cdist_target_host="$1"; shift
|
__cdist_target_host="$1"; shift
|
||||||
__cdist_manifest="$1"; shift
|
__cdist_manifest="$1"; shift
|
||||||
__cdist_output_dir="$1"; shift
|
|
||||||
|
|
||||||
# Export information for cdist-type-emulator
|
################################################################################
|
||||||
export __cdist_conf_dir __cdist_output_dir __cdist_manifest __cdist_version
|
# Export information for cdist-type-emulator or manifest
|
||||||
|
#
|
||||||
|
|
||||||
|
# This is a special variable, as being used by __cdist_object_dir
|
||||||
|
# We need to adjust it, so cdist-type-emulator writes to the right location
|
||||||
|
export __cdist_out_object_dir="$1"; shift
|
||||||
|
|
||||||
|
# Config dir should not get reset - FIXME: why did I do this?
|
||||||
|
export __cdist_conf_dir
|
||||||
|
|
||||||
|
# Used to record the source in the object
|
||||||
|
export __cdist_manifest
|
||||||
|
|
||||||
# Export information for manifests
|
# Export information for manifests
|
||||||
export __global="$__cdist_out_dir"
|
export __global="$__cdist_out_object_dir"
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
# The actual run
|
||||||
|
#
|
||||||
|
|
||||||
# Ensure binaries exist and are up-to-date
|
# Ensure binaries exist and are up-to-date
|
||||||
cdist-type-build-emulation "${__cdist_out_type_bin_dir}" \
|
cdist-type-build-emulation "${__cdist_out_type_bin_dir}" \
|
||||||
|
@ -48,8 +62,7 @@ export PATH="${__cdist_out_type_bin_dir}:$PATH"
|
||||||
|| __cdist_exit_err "Missing manifest ${__cdist_manifest}"
|
|| __cdist_exit_err "Missing manifest ${__cdist_manifest}"
|
||||||
[ -x "${__cdist_manifest}" ] \
|
[ -x "${__cdist_manifest}" ] \
|
||||||
|| __cdist_exit_err "${__cdist_manifest} needs to be executable."
|
|| __cdist_exit_err "${__cdist_manifest} needs to be executable."
|
||||||
mkdir -p "${__cdist_output_dir}" \
|
mkdir -p "${__cdist_out_object_dir}" \
|
||||||
|| __cdist_exit_err "Cannot create output dir ${__cdist_output_dir}"
|
|| __cdist_exit_err "Cannot create output dir ${__cdist_out_object_dir}"
|
||||||
|
|
||||||
# FIXME remove $@? i think this has been deprecated!
|
__cdist_exec_fail_on_error "${__cdist_manifest}"
|
||||||
__cdist_exec_fail_on_error "${__cdist_manifest}" "$@"
|
|
||||||
|
|
Loading…
Reference in a new issue