7 lines
180 B
Bash
Executable file
7 lines
180 B
Bash
Executable file
#!/bin/sh -e
|
|
|
|
# Start a virtiofsd sharing qemu shared dir
|
|
exec /usr/lib/virtiofsd \
|
|
--shared-dir ~qemu/shared \
|
|
--socket-path /run/virtiofsd.sock \
|
|
--socket-group qemu
|