Skip to content

Commit

Permalink
More test
Browse files Browse the repository at this point in the history
  • Loading branch information
gjulianm committed Dec 11, 2024
1 parent 96e1ff9 commit 50625f0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/new-e2e/system-probe/test/micro-vm-init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@
set -eEuxo pipefail

runner_config=$@
docker_dir=/kmt-dockers/src
docker_dir=/kmt-dockers

find "${docker_dir}" -type f

ls -lahR $docker_dir

Expand All @@ -13,7 +12,8 @@ ls -lahR $docker_dir
systemctl start docker
## Load docker images
if [[ -d "${docker_dir}" ]]; then
find "${docker_dir}" -name "*.tar*" -type f -exec /bin/bash -c "echo loading image {} && docker load -i {}" \;
find "${docker_dir}" -type f
find "${docker_dir}/src" -name "*.tar*" -type f -exec /bin/bash -c "echo loading image {} && docker load -i {}" \;
fi

docker images
Expand Down

0 comments on commit 50625f0

Please sign in to comment.