|
|
|
@ -78,8 +78,12 @@ while [ "$__cdist_new_objects_created" = "y" ]; do |
|
|
|
|
|
|
|
|
|
# Verify no conflicting objects have been created |
|
|
|
|
while read __cdist_new_object; do |
|
|
|
|
grep -q "^$__cdist_new_object\$" "$__cdist_objects_list" && \ |
|
|
|
|
__cdist_exit_err "${__cdist_manifest}: Tried to recreate ${__cdist_new_object}" |
|
|
|
|
__cdist_object_found=$(grep "^$__cdist_new_object\$" "$__cdist_objects_list" || true) |
|
|
|
|
|
|
|
|
|
if [ "$__cdist_object_found" ]; then |
|
|
|
|
__cdist_object_source="$(cat "$(__cdist_object_dir "$__cdist_new_object")/${__cdist_name_object_source}")" |
|
|
|
|
__cdist_exit_err "${__cdist_manifest}: ${__cdist_new_object} already exists (source: $__cdist_object_source)" |
|
|
|
|
fi |
|
|
|
|
done < "$__cdist_new_objects_list" |
|
|
|
|
|
|
|
|
|
# Safe harbour: We can merge all objects into main tree |
|
|
|
|