Skip to content

Commit d4f4911

Browse files
authored
Merge pull request #3898 from norio-nomura/use-go-diskfs#296
Use diskfs/go-diskfs#296
2 parents 2527116 + 7d98e39 commit d4f4911

File tree

4 files changed

+7
-10
lines changed

4 files changed

+7
-10
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ require (
1616
github.com/coreos/go-semver v0.3.1
1717
github.com/cpuguy83/go-md2man/v2 v2.0.7
1818
github.com/digitalocean/go-qemu v0.0.0-20221209210016-f035778c97f7
19-
github.com/diskfs/go-diskfs v1.6.0 // gomodjail:unconfined
19+
github.com/diskfs/go-diskfs v1.6.1-0.20250518130040-b3152784dab9 // gomodjail:unconfined
2020
github.com/docker/go-units v0.5.0
2121
github.com/elastic/go-libaudit/v2 v2.6.2
2222
github.com/foxcpp/go-mockdns v1.1.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ github.com/digitalocean/go-qemu v0.0.0-20221209210016-f035778c97f7 h1:3OVJAbR131
5555
github.com/digitalocean/go-qemu v0.0.0-20221209210016-f035778c97f7/go.mod h1:K4+o74YGNjOb9N6yyG+LPj1NjHtk+Qz0IYQPvirbaLs=
5656
github.com/dimchansky/utfbom v1.1.1 h1:vV6w1AhK4VMnhBno/TPVCoK9U/LP0PkLCS9tbxHdi/U=
5757
github.com/dimchansky/utfbom v1.1.1/go.mod h1:SxdoEBH5qIqFocHMyGOXVAybYJdr71b1Q/j0mACtrfE=
58-
github.com/diskfs/go-diskfs v1.6.0 h1:YmK5+vLSfkwC6kKKRTRPGaDGNF+Xh8FXeiNHwryDfu4=
59-
github.com/diskfs/go-diskfs v1.6.0/go.mod h1:bRFumZeGFCO8C2KNswrQeuj2m1WCVr4Ms5IjWMczMDk=
58+
github.com/diskfs/go-diskfs v1.6.1-0.20250518130040-b3152784dab9 h1:pykEg46HBYZmfmnaHj5qxXBuZRGGh6pG8XIqcBD2M9E=
59+
github.com/diskfs/go-diskfs v1.6.1-0.20250518130040-b3152784dab9/go.mod h1:bRFumZeGFCO8C2KNswrQeuj2m1WCVr4Ms5IjWMczMDk=
6060
github.com/djherbis/times v1.6.0 h1:w2ctJ92J8fBvWPxugmXIv7Nz7Q3iDMKNx9v5ocVH20c=
6161
github.com/djherbis/times v1.6.0/go.mod h1:gOHeRAz2h+VJNZ5Gmc/o7iD9k4wW7NMVqieYCY99oc0=
6262
github.com/dlclark/regexp2 v1.11.0 h1:G/nrcoOa7ZXlpoa/91N3X7mM3r8eIlMBBJZvsz/mxKI=

hack/test-templates.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,8 +205,7 @@ if [[ -n ${CHECKS["param-env-variables"]} ]]; then
205205
limactl shell "$NAME" test -e /tmp/param-dependency
206206
limactl shell "$NAME" test -e /tmp/param-probe
207207
limactl shell "$NAME" test -e /tmp/param-system
208-
# TODO re-enable once https://github.com/lima-vm/lima/issues/3308 is fixed
209-
# limactl shell "$NAME" test -e /tmp/param-user
208+
limactl shell "$NAME" test -e /tmp/param-user
210209
fi
211210

212211
if [[ -n ${CHECKS["set-user"]} ]]; then

hack/test-templates/test-misc.yaml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ param:
1919
DEPENDENCY: dependency
2020
PROBE: probe
2121
SYSTEM: system
22-
# TODO re-enable once https://github.com/lima-vm/lima/issues/3308 is fixed
23-
# USER: user
22+
USER: user
2423

2524
provision:
2625
- mode: ansible
@@ -31,9 +30,8 @@ provision:
3130
script: "touch /tmp/param-$PARAM_DEPENDENCY"
3231
- mode: system
3332
script: "touch /tmp/param-$PARAM_SYSTEM"
34-
# TODO re-enable once https://github.com/lima-vm/lima/issues/3308 is fixed
35-
# - mode: user
36-
# script: "touch /tmp/param-$PARAM_USER"
33+
- mode: user
34+
script: "touch /tmp/param-$PARAM_USER"
3735
- mode: data
3836
path: /etc/sysctl.d/99-inotify.conf
3937
content: |

0 commit comments

Comments
 (0)