cleanup much of bin/cdist-object-explorer-all

Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
This commit is contained in:
Nico Schottelius 2011-02-24 17:28:14 +01:00
parent e599e1684c
commit 16ac8117b2
2 changed files with 31 additions and 40 deletions

View File

@ -42,10 +42,13 @@ set -u
: ${__cdist_name_out_dir:=out} : ${__cdist_name_out_dir:=out}
: ${__cdist_name_conf_dir:=conf} : ${__cdist_name_conf_dir:=conf}
: ${__cdist_name_target_host:=target_host} : ${__cdist_name_target_host:=target_host}
: ${__cdist_name_type:=types}
: ${__cdist_name_type_bin:=type_bin} : ${__cdist_name_type_bin:=type_bin}
: ${__cdist_name_type_explorers:=type_explores}
# Exported variable names (usable for non core) # Exported variable names (usable for non core)
: ${__cdist_name_var_explorer:=__$__cdist_name_explorer} : ${__cdist_name_var_explorer:=__$__cdist_name_explorer}
: ${__cdist_name_var_type_explorer:=__$__cdist_name_type_explorers}
: ${__cdist_name_var_manifest:=__$__cdist_name_manifest_dir} : ${__cdist_name_var_manifest:=__$__cdist_name_manifest_dir}
: ${__cdist_name_var_target_host:=__$__cdist_name_target_host} : ${__cdist_name_var_target_host:=__$__cdist_name_target_host}
: ${__cdist_name_var_object:=__$__cdist_name_object} : ${__cdist_name_var_object:=__$__cdist_name_object}
@ -55,7 +58,6 @@ set -u
: ${__cdist_name_manifests:=manifests} : ${__cdist_name_manifests:=manifests}
: ${__cdist_name_object:=objects} : ${__cdist_name_object:=objects}
: ${__cdist_name_type:=types}
: ${__cdist_name_params:=parameters} : ${__cdist_name_params:=parameters}
: ${__cdist_name_params_required:=required} : ${__cdist_name_params_required:=required}
: ${__cdist_name_params_optional:=optional} : ${__cdist_name_params_optional:=optional}
@ -141,6 +143,11 @@ __cdist_usage()
# echo "${__cdist_cache_hosts}/${__cdist_target_host}" # echo "${__cdist_cache_hosts}/${__cdist_target_host}"
# } # }
__cdist_type_has_explorer()
{
echo "${__cdist_type_dir}/${__cdist_type_current}"
}
__cdist_type_mydir() __cdist_type_mydir()
{ {
echo "${__cdist_type_dir}/${__cdist_type_current}" echo "${__cdist_type_dir}/${__cdist_type_current}"
@ -181,12 +188,14 @@ __cdist_object_id_from_object()
echo "${1#*/}" echo "${1#*/}"
} }
__cdist_object_arg() __cdist_object_param_dir()
{ {
local arg="$1"; shift echo "${__cdist_object_base_dir}/$1/$__cdist_name_params}"
local object="$1"; shift }
cat "${__cdist_object_base_dir}/${object}/${arg}" __cdist_remote_object_param_dir()
{
echo "${__cdist_remote_object_base_dir}/$1/$__cdist_name_params}"
} }
# Find objects, remove ./ and /MARKER # Find objects, remove ./ and /MARKER

View File

@ -28,9 +28,6 @@ set -eux
__cdist_target_host="$1"; shift __cdist_target_host="$1"; shift
__cdist_object_base_dir="$1"; shift __cdist_object_base_dir="$1"; shift
################################################################################
# New code
#
object_listing="$__cdist_tmp_dir/objects" object_listing="$__cdist_tmp_dir/objects"
type_listing_all="$__cdist_tmp_dir/types_all" type_listing_all="$__cdist_tmp_dir/types_all"
type_listing="$__cdist_tmp_dir/types" type_listing="$__cdist_tmp_dir/types"
@ -68,7 +65,6 @@ done
################################################################################ ################################################################################
# Explorer execution per object # Explorer execution per object
# #
# need to create pseudo array, as ssh in cdist-explorer-run will destroy while-read loops # need to create pseudo array, as ssh in cdist-explorer-run will destroy while-read loops
while read object; do while read object; do
set -- "$@" "$object" set -- "$@" "$object"
@ -76,43 +72,29 @@ done < "$object_listing"
# For every object of a type that has explorers, execute the explorers # For every object of a type that has explorers, execute the explorers
# and retrieve the results # and retrieve the results
while [ $# -gt 0 ]; do while [ $# -gt 0 ]; do
# NEW CODE
object="$1"; shift object="$1"; shift
object_id="$(__cdist_object_id_from_object "$object")" object_id="$(__cdist_object_id_from_object "$object")"
type="$(__cdist_type_from_object "$object")" type="$(__cdist_type_from_object "$object")"
type_explorer_dir="$(__cdist_remote_type_explorer_dir "$object")"
object_explorer_out_dir="$(__cdist_out_type_explorer_dir "$object")"
remote_object_explorer_out_dir="$(__cdist_remote_out_type_explorer_dir "$object")"
local_src_dir="$(__cdist_type_explorer_dir "$type")" # Always copy object parameters (looks weired if done only for the ones with explorer)
local_dst_dir="$__cdist_object_base_dir/${object}/${__cdist_name_explorer}" # Really always?
# FIXME: remove path concatenation from here and construct paths only in # Check if type of object has >= 1 explorer
# cdist-config! has_explorer="$(__cdist_type_has_explorer "$type")"
remote_src_dir="$__cdist_remote_cache_dir/$__cdist_name_type/$type/$__cdist_name_explorer"
set -x # If so, run explorers on remote side
# Contains parameters + output of explorers if [ "$has_explorer" ]; then
remote_object_dir="$__cdist_remote_cache_dir/$__cdist_name_object/$object" cdist-run-remote "$__cdist_target_host" cdist-remote-explorer-run \
remote_dst_dir="$remote_object_dir/$__cdist_name_explorer" "$__cdist_name_var_type_explorer" "$type_explorer_dir" \
"$remote_object_explorer_out_dir"
# Also copy parameters
# FIXME: add function to copy whole host specific tree! # Copy back results
local_params_dir="$__cdist_object_base_dir/$object/$__cdist_name_params" cdist-dir pull "$__cdist_target_host" \
"$remote_object_explorer_out_dir" "$object_explorer_out_dir"
# Copy directory, needs to be one level above, otherwise subdir is created
# FIXME: add -q later
ssh "${__cdist_remote_user}@${__cdist_target_host}" "mkdir -p \"$remote_object_dir\""
#
ssh "${__cdist_remote_user}@${__cdist_target_host}" "mkdir -p \"$remote_object_dir\""
scp -r "$local_params_dir" "${__cdist_remote_user}@${__cdist_target_host}:$remote_object_dir"
if [ -d "$local_src_dir" ]; then
echo "Executing explorers for $object ..."
cdist-explorer-run "$__cdist_target_host" \
"$local_src_dir" "$local_dst_dir" \
"$remote_src_dir" "$remote_dst_dir" \
"$object_id"
fi fi
set +x
done done