Commit 58e4f80e authored by Nicolas Wavrant's avatar Nicolas Wavrant

runner: importer-consistency-promise shouldn't fail until the 1st backpu is done

parent 51f45430
...@@ -70,7 +70,7 @@ mode = 0644 ...@@ -70,7 +70,7 @@ mode = 0644
recipe = slapos.recipe.template recipe = slapos.recipe.template
url = ${:_profile_base_location_}/instance-runner-import.cfg.in url = ${:_profile_base_location_}/instance-runner-import.cfg.in
output = ${buildout:directory}/instance-runner-import.cfg output = ${buildout:directory}/instance-runner-import.cfg
md5sum = 54f88118f280d7c7e970bdce641f3157 md5sum = 5234b94f24d57d43e3cd29ccabb2b119
mode = 0644 mode = 0644
[template-runner-export-script] [template-runner-export-script]
......
...@@ -85,18 +85,24 @@ context = ...@@ -85,18 +85,24 @@ context =
raw restore_exit_code_file $${:restore-exit-code-file} raw restore_exit_code_file $${:restore-exit-code-file}
[importer-consistency-promise] [importer-consistency-promise]
# Test that the importer script and "after-import" subscripts: # Test that the importer script and "after-import" subscripts
# 1/ Have been run in the last 24 hours # are not older than 1 day (24h), and have succeeded
# 2/ Have succeeded
recipe = collective.recipe.template recipe = collective.recipe.template
input = inline: #!/bin/sh input = inline: #!/bin/sh
EXIT_CODE_FILE=$(find "$${importer:restore-exit-code-file}" -mtime -1) EXIT_CODE_FILE=$(find "$${importer:restore-exit-code-file}")
RECENT_EXIT_CODE_FILE=$(find "$${importer:restore-exit-code-file}" -mtime -1)
if [ -z "$EXIT_CODE_FILE" ]; then if [ -z "$EXIT_CODE_FILE" ]; then
echo "Consistency check is too old." exit 0;
exit 1 else
fi if [ -z "$RECENT_EXIT_CODE_FILE" ]; then
EXIT_CODE=$(cat $EXIT_CODE_FILE) echo "Consistency check is too old.";
exit $EXIT_CODE exit 1;
else
EXIT_CODE=$(cat $EXIT_CODE_FILE)
exit $EXIT_CODE
fi
fi
exit 1; # Something else went wrong
output = $${directory:promises}/importer-consistency-promise output = $${directory:promises}/importer-consistency-promise
mode = 755 mode = 755
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment