merge from changerunningorder

Signed-off-by: Steven Armstrong <steven@icarus.ethz.ch>
This commit is contained in:
Steven Armstrong 2011-03-28 13:03:17 +02:00
commit cd1a1347c9
14 changed files with 314 additions and 122 deletions

View file

@ -19,11 +19,7 @@
# along with cdist. If not, see <http://www.gnu.org/licenses/>.
#
#
# For each created object:
# - run type explorers
# - generate code
# - copy object to target
# - execute code on target
# Run cdist-object-run for each created object.
#
. cdist-config
@ -56,30 +52,16 @@ while [ $# -gt 0 ]; do
# Check if type of object has >= 1 explorer
__cdist_has_explorer="$(__cdist_type_has_explorer "$__cdist_type")"
# If so, run explorers on remote side
# Transfer the type explorers if any
if [ "$__cdist_has_explorer" ]; then
# Transfer the type explorers
if ! grep -q "$__cdist_type" "$__cdist_types_pushed"; then
cdist-type-explorer-push "$__cdist_target_host" "$__cdist_type"
echo "$__cdist_type" >> "$__cdist_types_pushed"
fi
# Run the type explorers for the current object
cdist-object-explorer-run "$__cdist_target_host" "$__cdist_object"
echo "$__cdist_type" >> "$__cdist_types_pushed"
fi
fi
# Run the manifest for the current object
cdist-object-manifest-run "$__cdist_target_host" "$__cdist_object"
# Run the gencode scripts for the current object
cdist-object-gencode-run "$__cdist_target_host" "$__cdist_object"
# Transfer the current object to the target
cdist-object-push "$__cdist_target_host" "$__cdist_object"
# Run the code for the current object
cdist-object-code-run "$__cdist_target_host" "$__cdist_object"
# Process the given object
cdist-object-run "$__cdist_target_host" "$__cdist_object"
done