Skip to content

Commit 1a2d8e3

Browse files
Merge pull request #23255 from TomSweeneyRedHat/dev/tsweeney/accel244-v4.9-rhel
[v4.9-rhel] builds try to write to additionalImageStore
2 parents affa589 + 9bcdb60 commit 1a2d8e3

File tree

6 files changed

+41
-20
lines changed

6 files changed

+41
-20
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ require (
1919
github.com/containers/libhvee v0.5.0
2020
github.com/containers/ocicrypt v1.1.10
2121
github.com/containers/psgo v1.8.0
22-
github.com/containers/storage v1.51.0
22+
github.com/containers/storage v1.51.1
2323
github.com/coreos/go-systemd/v22 v22.5.1-0.20231103132048-7d375ecc2b09
2424
github.com/coreos/stream-metadata-go v0.4.4
2525
github.com/crc-org/vfkit v0.1.2-0.20231030102423-f3c783d34420

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -282,8 +282,8 @@ github.com/containers/ocicrypt v1.1.10/go.mod h1:YfzSSr06PTHQwSTUKqDSjish9BeW1E4
282282
github.com/containers/psgo v1.8.0 h1:2loGekmGAxM9ir5OsXWEfGwFxorMPYnc6gEDsGFQvhY=
283283
github.com/containers/psgo v1.8.0/go.mod h1:T8ZxnX3Ur4RvnhxFJ7t8xJ1F48RhiZB4rSrOaR/qGHc=
284284
github.com/containers/storage v1.43.0/go.mod h1:uZ147thiIFGdVTjMmIw19knttQnUCl3y9zjreHrg11s=
285-
github.com/containers/storage v1.51.0 h1:AowbcpiWXzAjHosKz7MKvPEqpyX+ryZA/ZurytRrFNA=
286-
github.com/containers/storage v1.51.0/go.mod h1:ybl8a3j1PPtpyaEi/5A6TOFs+5TrEyObeKJzVtkUlfc=
285+
github.com/containers/storage v1.51.1 h1:XMjFbFIgQ/I7DOhKeTOmnThz3UX1ZvkwxksYexHXRTM=
286+
github.com/containers/storage v1.51.1/go.mod h1:ybl8a3j1PPtpyaEi/5A6TOFs+5TrEyObeKJzVtkUlfc=
287287
github.com/coreos/bbolt v1.3.2/go.mod h1:iRUV2dpdMOn7Bo10OQBFzIJO9kkE559Wcmn+qkEiiKk=
288288
github.com/coreos/etcd v3.3.10+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE=
289289
github.com/coreos/go-iptables v0.4.5/go.mod h1:/mVI274lEDI2ns62jHCDnCyBF9Iwsmekav8Dbxlm1MU=

test/system/060-mount.bats

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -249,13 +249,10 @@ EOF
249249
reported_mountpoint=$(echo "$output" | awk '{print $2}')
250250
is "$reported_mountpoint" "$mount_path" "mountpoint reported by 'podman mount'"
251251

252-
# umount, and make sure files are gone
252+
# umount, and make sure mountpoint no longer exists
253253
run_podman umount $external_cid
254-
if [ -d "$mount_path" ]; then
255-
# Under VFS, mountpoint always exists even despite umount
256-
if [[ "$(podman_storage_driver)" != "vfs" ]]; then
257-
die "'podman umount' did not umount $mount_path"
258-
fi
254+
if findmnt "$mount_path" >/dev/null ; then
255+
die "'podman umount' did not umount $mount_path"
259256
fi
260257
buildah rm $external_cid
261258
}

vendor/github.com/containers/storage/VERSION

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/containers/storage/drivers/overlay/overlay.go

Lines changed: 33 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/modules.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ github.com/containers/psgo/internal/dev
353353
github.com/containers/psgo/internal/host
354354
github.com/containers/psgo/internal/proc
355355
github.com/containers/psgo/internal/process
356-
# github.com/containers/storage v1.51.0
356+
# github.com/containers/storage v1.51.1
357357
## explicit; go 1.19
358358
github.com/containers/storage
359359
github.com/containers/storage/drivers

0 commit comments

Comments
 (0)