blob: 8372b504f1b2b455f8235d239b056def642cb7f8 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
case "$root" in
live:/dev/*)
printf 'SYMLINK=="%s", RUN+="/sbin/initqueue --settled --onetime --unique /sbin/create-overlay %s"\n' \
"${root#live:/dev/}" "${root#live:}" >> /etc/udev/rules.d/95-create-overlay.rules
wait_for_dev -n "${root#live:}"
;;
esac
|