1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/kodi_ynh.git synced 2024-09-03 19:26:34 +02:00
kodi_ynh/scripts/install

112 lines
3.4 KiB
Text
Raw Normal View History

2017-09-27 23:15:40 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# RETRIEVE ARGUMENTS FROM THE MANIFEST
#=================================================
domain=$YNH_APP_ARG_DOMAIN
path_url=$YNH_APP_ARG_PATH
launch_on_boot=$YNH_APP_ARG_LAUNCH_ON_BOOT
app=kodi
final_path=/var/www/$app
test ! -e "$final_path" || ynh_die "This path already contains a folder"
# Normalize the url path syntax
path_url=$(ynh_normalize_url_path $path_url)
# Check web path availability
ynh_webpath_available $domain $path_url
2017-10-16 22:48:13 +02:00
2017-09-27 23:15:40 +02:00
# Register (book) web path
ynh_webpath_register $app $domain $path_url
#=================================================
# STORE SETTINGS FROM MANIFEST
#=================================================
ynh_app_setting_set $app domain $domain
ynh_app_setting_set $app final_path $final_path
ynh_app_setting_set $app launch_on_boot $launch_on_boot
#=================================================
# CREATE KODI USER
#=================================================
sudo mkdir /home/$app
ynh_system_user_create "$app" "/home/$app"
sudo usermod -a -G cdrom,audio,video,plugdev,users,dialout,dip,input $app
#=================================================
# ADD SYSTEMD SCRIPT (SERVICE)
#=================================================
sed -i "s@#KODIUSER#@${app}@g" ../conf/kodi.service
sed -i "s@#KODIGROUP#@${app}@g" ../conf/kodi.service
sudo cp ../conf/kodi.service /etc/systemd/system/kodi.service
2017-10-16 22:48:13 +02:00
sudo systemctl daemon-reload
2017-09-27 23:15:40 +02:00
#=================================================
2017-09-28 07:54:48 +02:00
# INSTALL DEPENDENCIES AND KODI
2017-09-27 23:15:40 +02:00
#=================================================
2017-09-28 07:54:48 +02:00
arch=$(uname -m)
if [[ $arch != arm* ]]; then
2017-10-16 22:48:13 +02:00
sudo cp ../conf/kodi.list /etc/apt/sources.list.d/${app}.list
2017-09-28 07:54:48 +02:00
fi
2017-09-27 23:15:40 +02:00
ynh_package_update
if [[ $arch == arm* ]]; then
ynh_package_install xserver-xorg-legacy
fi
ynh_package_install xorg dbus-x11 kodi
#=================================================
# X11 SETTINGS
#=================================================
sudo sed -i 's/allowed_users=console/allowed_users=anybody/' /etc/X11/Xwrapper.config
2017-09-27 23:15:40 +02:00
2017-10-16 22:48:13 +02:00
#=================================================
# ADVERTISE SERVICE IN ADMIN PANEL
#=================================================
yunohost service add $app --log "/home/$app/.kodi/temp/kodi.log"
2017-09-30 11:56:47 +02:00
#=================================================
# CONTROL WEB INTERFACE
#=================================================
sudo mkdir -p /home/$app/.kodi/userdata/
sudo cp ../conf/advancedsettings.xml /home/$app/.kodi/userdata/advancedsettings.xml
sudo chown -R $app:$app /home/$app
ynh_add_nginx_config
2017-10-16 22:48:13 +02:00
ynh_app_setting_set $app protected_uris "/"
# Reload SSOwat config
yunohost app ssowatconf
# Reload Nginx
systemctl reload nginx
#=================================================
# LAUNCH KODI AT STARTUP?
#=================================================
if [ $launch_on_boot -eq 1 ]
then
sudo systemctl enable $app
fi
#=================================================
# START KODI
#=================================================
sudo systemctl start $app