mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-01-17 16:11:33 +00:00
12 lines
267 B
Plaintext
Executable File
12 lines
267 B
Plaintext
Executable File
#!/sbin/openrc-run
|
|
|
|
start()
|
|
{
|
|
ebegin "Mounting 9p sockets"
|
|
mkdir -p /Socket
|
|
mount -t 9p -o trans=virtio,dfltuid=1001,dfltgid=50,version=9p2000 socket /Socket
|
|
mkdir -p /Mac
|
|
mount -t 9p -o trans=virtio,dfltuid=1001,dfltgid=50,version=9p2000.u plan9 /Mac
|
|
eend 0
|
|
}
|