blob: a5810f7b05c7eb701d357cc852a826aabacf6ca9 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
if [ "${root%%:*}" = "liveiso" ]; then
{
# shellcheck disable=SC2016
printf 'KERNEL=="loop-control", RUN+="/sbin/initqueue --settled --onetime --unique /sbin/dmsquash-live-root `/sbin/losetup -f --show %s`"\n' \
"${root#liveiso:}"
} >> /etc/udev/rules.d/99-liveiso-mount.rules
fi
|