13 lines
111 B
Text
13 lines
111 B
Text
|
#!/sbin/openrc-run
|
||
|
|
||
|
depend()
|
||
|
{
|
||
|
after sysfs
|
||
|
}
|
||
|
|
||
|
start()
|
||
|
{
|
||
|
mount --make-shared /run
|
||
|
mount --make-shared /sys
|
||
|
}
|