@@ -54,7 +54,6 @@ declare -A CHECKS=(
54
54
[" disk" ]=" "
55
55
[" user-v2" ]=" "
56
56
[" mount-path-with-spaces" ]=" "
57
- [" provision-ansible" ]=" "
58
57
[" provision-data" ]=" "
59
58
[" param-env-variables" ]=" "
60
59
[" set-user" ]=" "
@@ -82,7 +81,6 @@ case "$NAME" in
82
81
CHECKS[" snapshot-online" ]=" 1"
83
82
CHECKS[" snapshot-offline" ]=" 1"
84
83
CHECKS[" mount-path-with-spaces" ]=" 1"
85
- CHECKS[" provision-ansible" ]=" 1"
86
84
CHECKS[" provision-data" ]=" 1"
87
85
CHECKS[" param-env-variables" ]=" 1"
88
86
CHECKS[" set-user" ]=" 1"
@@ -188,18 +186,14 @@ if [[ -n ${CHECKS["mount-path-with-spaces"]} ]]; then
188
186
[ " $( limactl shell " $NAME " cat " /tmp/lima test dir with spaces/test file" ) " = " test file content" ]
189
187
fi
190
188
191
- if [[ -n ${CHECKS["provision-ansible"]} ]]; then
192
- INFO ' Testing that /tmp/ansible was created successfully on provision'
193
- limactl shell " $NAME " test -e /tmp/ansible
194
- fi
195
-
196
189
if [[ -n ${CHECKS["provision-data"]} ]]; then
197
190
INFO ' Testing that /etc/sysctl.d/99-inotify.conf was created successfully on provision'
198
191
limactl shell " $NAME " grep -q fs.inotify.max_user_watches /etc/sysctl.d/99-inotify.conf
199
192
fi
200
193
201
194
if [[ -n ${CHECKS["param-env-variables"]} ]]; then
202
195
INFO ' Testing that PARAM env variables are exported to all types of provisioning scripts and probes'
196
+ limactl shell " $NAME " test -e /tmp/param-ansible
203
197
limactl shell " $NAME " test -e /tmp/param-boot
204
198
limactl shell " $NAME " test -e /tmp/param-dependency
205
199
limactl shell " $NAME " test -e /tmp/param-probe
0 commit comments