mirror of
https://github.com/YunoHost-Apps/jellyfin_ynh.git
synced 2024-09-03 19:26:29 +02:00
Merge pull request #89 from YunoHost-Apps/add-multimedia
Add access to multimedia directories
This commit is contained in:
commit
c5fa922ae7
8 changed files with 43 additions and 1 deletions
|
@ -31,6 +31,9 @@ Media System that manage and stream your media.
|
|||
* Standard users need the `main` permission;
|
||||
* Users with the `admin` permission will have access to the administration panel.
|
||||
|
||||
* The app can access YunoHost's multimedia directories:
|
||||
choose one of the folders in `/home/yunohost.multimedia/share` upon configuration of your libraries.
|
||||
|
||||
* Starting version 10.7.5~ynh2, you can ask for the discovery ports (1900 and 7359) to be opened.
|
||||
They ease the setting up of your media center between clients and server.
|
||||
* If you are upgrading to this version and above, set `discovery: '1'` in `/etc/yunohost/apps/jellyfin/settings.yml`
|
||||
|
|
|
@ -27,6 +27,9 @@ Système multimédia qui gère et diffuse vos médias.
|
|||
* Les utilisateurs standards doivent avoir la permission `main` ;
|
||||
* Les utilisateurs doivent avoir la permission `admin` pour pouvoir accéder au panneau d'administration.
|
||||
|
||||
* L'app a accès aux dossiers multimédia de YunoHost:
|
||||
indiquez un des dossiers de `/home/yunohost.multimedia/share` comme source lors du paramétrage de vos bibliothèques.
|
||||
|
||||
* À partir de la version 10.7.5~ynh2, vous pouvez demander l'ouverture des ports de découverte (1900 et 7359).
|
||||
Ils facilitent la mise en place de votre système multimédia entre les clients et le serveur.
|
||||
* Si vous mettez à jour vers cette version et les suivantes, mettez `discovery: '1'` dans `/etc/yunohost/apps/jellyfin/settings.yml`
|
||||
|
|
|
@ -2,6 +2,9 @@
|
|||
* Standard users need the `main` permission;
|
||||
* Users with the `admin` permission will have access to the administration panel.
|
||||
|
||||
* The app can access YunoHost's multimedia directories:
|
||||
choose one of the folders in `/home/yunohost.multimedia/share` upon configuration of your libraries.
|
||||
|
||||
* Starting version 10.7.5~ynh2, you can ask for the discovery ports (1900 and 7359) to be opened.
|
||||
They ease the setting up of your media center between clients and server.
|
||||
* If you are upgrading to this version and above, set `discovery: '1'` in `/etc/yunohost/apps/jellyfin/settings.yml`
|
||||
|
|
|
@ -2,6 +2,9 @@
|
|||
* Les utilisateurs standards doivent avoir la permission `main` ;
|
||||
* Les utilisateurs doivent avoir la permission `admin` pour pouvoir accéder au panneau d'administration.
|
||||
|
||||
* L'app a accès aux dossiers multimédia de YunoHost:
|
||||
indiquez un des dossiers de `/home/yunohost.multimedia/share` comme source lors du paramétrage de vos bibliothèques.
|
||||
|
||||
* À partir de la version 10.7.5~ynh2, vous pouvez demander l'ouverture des ports de découverte (1900 et 7359).
|
||||
Ils facilitent la mise en place de votre système multimédia entre les clients et le serveur.
|
||||
* Si vous mettez à jour vers cette version et les suivantes, mettez `discovery: '1'` dans `/etc/yunohost/apps/jellyfin/settings.yml`
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
}
|
||||
],
|
||||
"requirements": {
|
||||
"yunohost": ">= 4.1.3"
|
||||
"yunohost": ">= 4.2"
|
||||
},
|
||||
"multi_instance": false,
|
||||
"services": [
|
||||
|
|
|
@ -178,6 +178,16 @@ ynh_setup_source --dest_dir="/var/lib/jellyfin/plugins/LDAP Authentication" --so
|
|||
mkdir -p /var/lib/jellyfin/plugins/configurations/
|
||||
ynh_add_config --template="LDAP-Auth.xml" --destination="/var/lib/jellyfin/plugins/configurations/LDAP-Auth.xml"
|
||||
|
||||
#=================================================
|
||||
# YUNOHOST MULTIMEDIA INTEGRATION
|
||||
#=================================================
|
||||
ynh_script_progression --message="Adding multimedia directories..." --weight=2
|
||||
|
||||
# Build YunoHost multimedia directories
|
||||
ynh_multimedia_build_main_dir
|
||||
# Allow Jellyfin to write into these directories
|
||||
ynh_multimedia_addaccess $app
|
||||
|
||||
#=================================================
|
||||
# GENERIC FINALIZATION
|
||||
#=================================================
|
||||
|
|
|
@ -184,6 +184,16 @@ ynh_script_progression --message="Starting a systemd service..." --weight=1
|
|||
|
||||
ynh_systemd_action --service_name=$app --action="restart" --log_path="systemd" --line_match="Started Jellyfin Media Server" --timeout=15
|
||||
|
||||
#=================================================
|
||||
# YUNOHOST MULTIMEDIA INTEGRATION
|
||||
#=================================================
|
||||
ynh_script_progression --message="Adding multimedia directories..." --weight=2
|
||||
|
||||
# Build YunoHost multimedia directories
|
||||
ynh_multimedia_build_main_dir
|
||||
# Allow Jellyfin to write into these directories
|
||||
ynh_multimedia_addaccess $app
|
||||
|
||||
#=================================================
|
||||
# GENERIC FINALIZATION
|
||||
#=================================================
|
||||
|
|
|
@ -197,6 +197,16 @@ ynh_setup_source --dest_dir="/var/lib/jellyfin/plugins/LDAP Authentication" --so
|
|||
mkdir -p /var/lib/jellyfin/plugins/configurations/
|
||||
ynh_add_config --template="LDAP-Auth.xml" --destination="/var/lib/jellyfin/plugins/configurations/LDAP-Auth.xml"
|
||||
|
||||
#=================================================
|
||||
# YUNOHOST MULTIMEDIA INTEGRATION
|
||||
#=================================================
|
||||
ynh_script_progression --message="Adding multimedia directories..." --weight=2
|
||||
|
||||
# Build YunoHost multimedia directories
|
||||
ynh_multimedia_build_main_dir
|
||||
# Allow Jellyfin to write into these directories
|
||||
ynh_multimedia_addaccess $app
|
||||
|
||||
#=================================================
|
||||
# GENERIC FINALIZATION
|
||||
#=================================================
|
||||
|
|
Loading…
Add table
Reference in a new issue