This commit is contained in:
Philippe Caseiro 2023-01-04 11:33:37 +01:00
parent f718356ad9
commit 013d8b9384
1 changed files with 0 additions and 24 deletions

View File

@ -30,30 +30,6 @@ mkdir -p "${ASSETS_DIR}"
chown -R "${MATCHBOX_USER}:${MATCHBOX_USER}" "${MATCHBOX_DIR}"
chown -R "${MATCHBOX_USER}:${MATCHBOX_USER}" "${ASSETS_DIR}"
tout=30
item=1
echo "Provisionning matchbox with flatcar images"
echo " * Current stable image (try 1)"
for version in ${FL_VERSIONS}; do
while ! bash -x /usr/local/bin/get-flatcar stable ${version} ${ASSETS_DIR}; do
sleep 1
echo " * ${version} stable image (try ${item})"
if [ "${tout}" -eq "${item}" ]; then
break
exit 1
fi
item=$((item+1))
done
done
echo " * 3374.2.0 stable image (try 1)"
get-flatcar stable 3374.2.0 "${ASSETS_DIR}"
if [ "${?}" -ne 0 ]; then
sleep 3
echo " * 3374.2.0 stable image (try 2)"
get-flatcar stable 3374.2.0 "${ASSETS_DIR}"
fi
chown -R "${MATCHBOX_USER}:${MATCHBOX_USER}" "${ASSETS_DIR}"
ls -lhaR ${ASSETS_DIR}