diff --git a/etc/runit/sv/virtiofsd/down b/etc/runit/sv/virtiofsd/down deleted file mode 100644 index e69de29..0000000 diff --git a/etc/runit/sv/virtiofsd/finish b/etc/runit/sv/virtiofsd/finish deleted file mode 100755 index 964aeb8..0000000 --- a/etc/runit/sv/virtiofsd/finish +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -e - -# Read configuration -sourceconf() { [ -r "$1" ] && . "$1"; } -sourceconf ./conf - -# Delete socket and PID file -exec rm -f "$socket" "${socket}.pid" diff --git a/etc/runit/sv/virtiofsd/run b/etc/runit/sv/virtiofsd/run deleted file mode 100755 index 616294f..0000000 --- a/etc/runit/sv/virtiofsd/run +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -e - -# Read configuration -sourceconf() { - [ -r "$1" ] && . "$1" -} -sourceconf ./conf - -# Start a virtiofsd sharing qemu shared dir -exec /usr/lib/virtiofsd \ - --shared-dir "$shared_dir" \ - --socket-path "$socket" \ - --socket-group qemu