re-rename variable, which got broken during core integration
Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
This commit is contained in:
parent
cdc6f0d0c0
commit
86e30c7a8a
1 changed files with 10 additions and 3 deletions
|
@ -33,12 +33,19 @@ __cdist_object_all_object_all()
|
|||
# Ensure object dir exists, so marker can be created
|
||||
mkdir -p "${__cdist_out_object_dir}"
|
||||
|
||||
BUG:
|
||||
- where does $__cdist_objects_created get setup?
|
||||
- why do we use a file?
|
||||
core/__cdist_object_manifest_run: touch "$__cdist_objects_created"
|
||||
|
||||
|
||||
exit 23
|
||||
# Loop until we do not create new objects anymore
|
||||
# which is equal to all objects have been run
|
||||
touch "$__cdist_object_all_object_all_objects_created"
|
||||
while [ -f "$__cdist_object_all_object_all_objects_created" ]; do
|
||||
touch "$__cdist_objects_created"
|
||||
while [ -f "$__cdist_objects_created" ]; do
|
||||
# Assume we're done after this run
|
||||
rm "$__cdist_object_all_object_all_objects_created"
|
||||
rm "$__cdist_objects_created"
|
||||
|
||||
# Get listing of objects
|
||||
__cdist_object_all_object_list "$__cdist_out_object_dir" > \
|
||||
|
|
Loading…
Reference in a new issue