mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
11 lines
192 B
Bash
11 lines
192 B
Bash
#!/bin/sh
|
|
|
|
if ! [ -e /etc/runlevels/sysinit/udev ]; then
|
|
exit 0
|
|
fi
|
|
|
|
if ! [ /etc/runlevels/sysinit/udev-trigger ]; then
|
|
ln -s /etc/init.d/udev-trigger /etc/runlevels/sysinit/udev-trigger
|
|
fi
|
|
|