mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
14 lines
191 B
Plaintext
14 lines
191 B
Plaintext
#!/sbin/openrc-run
|
|
|
|
depend() {
|
|
need nldev
|
|
provide dev
|
|
keyword -lxc -vserver
|
|
}
|
|
|
|
start() {
|
|
ebegin "Populating /dev with existing devices through uevents"
|
|
/bin/nltrigger add all
|
|
eend $?
|
|
}
|