shellcheck will complain about crypt-cleanup.sh when checking for
busybox:
```
In modules.d/70crypt/crypt-cleanup.sh line 8:
local do_break="y"
^---^ SC2168 (error): 'local' is only valid in functions.
```
# close everything which is not busy
rm -f -- /etc/udev/rules.d/70-luks.rules > /dev/null 2>&1
-if ! getarg rd.luks.uuid > /dev/null 2>&1 && getargbool 1 rd.luks > /dev/null 2>&1; then
+close_luks() {
while :; do
local do_break="y"
for i in /dev/mapper/luks-*; do
done
[ "$do_break" = "y" ] && break
done
+}
+
+if ! getarg rd.luks.uuid > /dev/null 2>&1 && getargbool 1 rd.luks > /dev/null 2>&1; then
+ close_luks
fi