Skip to content
This repository has been archived by the owner on Dec 5, 2020. It is now read-only.

jellyfin-archive/jellyfin-plugin-isomounter

Repository files navigation

jellyfin-plugin-isomounter

ARCHIVED: Functionality moved to core server.

This implements two core interfaces: IIsoManager and IIsoMount.

IIsoManager

The manager class can be used to create a mount, and also determine if the mounter is capable of mounting a given file.

IIsoMount

IIsoMount then represents a mount instance, which will be unmounted on disposal.

This Linux version uses sudo, mount, and umount.

You need to add this to your sudo file via visudo.

Defaults:jsmith !requiretty
jsmith ALL=(root) NOPASSWD: /bin/mount
jsmith ALL=(root) NOPASSWD: /bin/umount