mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-25 12:15:32 +03:00
13 lines
191 B
Text
13 lines
191 B
Text
#!/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 $?
|
|
}
|