1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/kiwiirc_ynh.git synced 2024-09-03 19:35:59 +02:00
This commit is contained in:
ericgaspar 2022-02-04 09:39:04 +01:00
parent ae302caa55
commit ac62592e26
4 changed files with 4 additions and 12 deletions

View file

@ -3,5 +3,5 @@ SOURCE_SUM=c99504c6de678fd91aed357ff0dada16a8df9e932970ed85767b516a9f87df52
SOURCE_SUM_PRG=sha256sum
SOURCE_FORMAT=deb
SOURCE_IN_SUBDIR=true
SOURCE_FILENAME=kiwiirc_20.05.24.1-1_amd64.deb
SOURCE_FILENAME=kiwiirc.deb
SOURCE_EXTRACT=false

View file

@ -57,7 +57,7 @@ ynh_script_progression --message="Setting up source files..." --weight=2
tempdir="$(mktemp -d)"
ynh_setup_source --dest_dir=$tempdir --source_id=app
ynh_exec_warn_less dpkg -i $tempdir/kiwiirc_20.05.24.1-1_amd64.deb
ynh_exec_warn_less dpkg -i $tempdir/kiwiirc.deb
#=================================================
# ADD A CONFIGURATION

View file

@ -40,7 +40,7 @@ ynh_script_progression --message="Setting up source files..." --weight=2
tempdir="$(mktemp -d)"
ynh_setup_source --dest_dir=$tempdir --source_id=app
ynh_exec_warn_less dpkg -i $tempdir/kiwiirc_20.05.24.1-1_amd64.deb
ynh_exec_warn_less dpkg -i $tempdir/kiwiirc.deb
#=================================================
# RESTORE THE NGINX CONFIGURATION
@ -49,14 +49,6 @@ ynh_script_progression --message="Restoring the NGINX configuration..."
ynh_restore_file --origin_path="/etc/kiwiirc"
#=================================================
# RESTORE SYSTEMD
#=================================================
ynh_script_progression --message="Restoring the systemd configuration..." --weight=1
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
systemctl enable $app.service --quiet
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================

View file

@ -48,7 +48,7 @@ if [ "$upgrade_type" == "UPGRADE_APP" ]
then
tempdir="$(mktemp -d)"
ynh_setup_source --dest_dir=$tempdir --source_id=app
ynh_exec_warn_less dpkg -i $tempdir/kiwiirc_20.05.24.1-1_amd64.deb
ynh_exec_warn_less dpkg -i $tempdir/kiwiirc.deb
fi
#=================================================