more cleanups, __cdist prefixes

Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
This commit is contained in:
Nico Schottelius 2011-03-31 19:35:26 +02:00
commit b3d7cf3192
3 changed files with 11 additions and 9 deletions

View file

@ -32,7 +32,6 @@ __cdist_object="$1"; shift
__object_id="$(__cdist_object_id_from_object "$__cdist_object")"
__cdist_type="$(__cdist_type_from_object "$__cdist_object")"
# Check if type of object has >= 1 explorer
__cdist_has_explorer="$(__cdist_type_has_explorer "$__cdist_type")"
# Run the type explorers for the current object if any
@ -47,8 +46,8 @@ if [ "$__cdist_has_explorer" ]; then
echo "Running explorers for $__cdist_object ..."
# Copy object parameters
cdist-dir push "$__cdist_target_host" \
"$(__cdist_object_parameter_dir "$__cdist_object")" \
cdist-dir push "$__cdist_target_host" \
"$(__cdist_object_parameter_dir "$__cdist_object")" \
"$(__cdist_remote_object_parameter_dir "$__cdist_object")"
# Execute explorers
@ -62,7 +61,7 @@ if [ "$__cdist_has_explorer" ]; then
"$(__cdist_remote_object_type_explorer_dir "$__cdist_object")"
# Copy back results
cdist-dir pull "$__cdist_target_host" \
cdist-dir pull "$__cdist_target_host" \
"$(__cdist_remote_object_type_explorer_dir "$__cdist_object")" \
"$(__cdist_object_type_explorer_dir "$__cdist_object")"
fi