2015-05-24 23:01:16 +02:00
|
|
|
|
#!/bin/bash
|
|
|
|
|
|
2016-05-31 23:22:59 +02:00
|
|
|
|
# Exit on command errors and treat unset variables as an error
|
2016-06-23 14:57:52 +02:00
|
|
|
|
set -e
|
|
|
|
|
#u
|
2015-12-02 21:41:55 +01:00
|
|
|
|
|
2016-06-23 12:05:02 +02:00
|
|
|
|
# Source app helpers
|
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
2016-06-23 13:27:00 +02:00
|
|
|
|
# Retrive arguments
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
2016-06-23 14:57:52 +02:00
|
|
|
|
domain=$(ynh_app_setting_get "$app" domain)
|
|
|
|
|
path=$(ynh_app_setting_get "$app" path)
|
2016-06-23 19:53:54 +02:00
|
|
|
|
port=$(ynh_app_setting_get "$app" port)
|
2016-06-23 12:05:02 +02:00
|
|
|
|
arch=$(ynh_app_setting_get "$app" arch)
|
2016-06-22 20:42:13 +02:00
|
|
|
|
version=$(cat ../conf/upstream_version)
|
2015-05-24 23:01:16 +02:00
|
|
|
|
|
2016-06-24 11:49:05 +02:00
|
|
|
|
# Check CPU arch
|
|
|
|
|
if [ $arch != "x64" ]; then #&& $arch != "armv7l" ], then
|
|
|
|
|
ynh_die "$arch is not currently supported." 2
|
|
|
|
|
fi
|
|
|
|
|
|
2016-05-31 23:22:59 +02:00
|
|
|
|
# Stop duniter daemon
|
|
|
|
|
sudo $app stop
|
|
|
|
|
|
2016-06-22 20:42:13 +02:00
|
|
|
|
# Remove Duniter package
|
|
|
|
|
sudo dpkg -r duniter
|
|
|
|
|
|
|
|
|
|
# Retrive Duniter package and install it
|
2016-06-24 11:49:05 +02:00
|
|
|
|
wget -nc --quiet https://github.com/duniter/duniter/releases/download/$version/duniter-$version-linux-$arch.deb -P /tmp
|
2016-06-22 20:42:13 +02:00
|
|
|
|
sudo dpkg -i /tmp/duniter-$version-linux-$arch.deb
|
2016-06-23 12:05:02 +02:00
|
|
|
|
#sudo rm -f /tmp/duniter-$version-linux-$arch.deb
|
2016-05-31 23:22:59 +02:00
|
|
|
|
|
|
|
|
|
# Start duniter daemon
|
2016-06-23 14:47:19 +02:00
|
|
|
|
sudo $app webstart
|
2016-06-23 13:29:22 +02:00
|
|
|
|
|
2016-06-23 14:57:52 +02:00
|
|
|
|
# Remove trailing "/" for next command
|
|
|
|
|
path=${path%/}
|
|
|
|
|
|
|
|
|
|
# SSOwat Configuration
|
|
|
|
|
ynh_app_setting_set "$app" unprotected_uris "/"
|
|
|
|
|
|
2016-06-23 13:29:22 +02:00
|
|
|
|
# Upgrade Nginx configuration
|
|
|
|
|
nginx_conf="../conf/nginx.conf"
|
|
|
|
|
sudo sed -i "s@YNH_EXAMPLE_PATH@$path@g" $nginx_conf
|
|
|
|
|
sudo sed -i "s@YNH_EXAMPLE_PORT@$port@" $nginx_conf
|
|
|
|
|
sudo sed -i "s@YNH_EXAMPLE_DOMAIN@$domain@" $nginx_conf
|
|
|
|
|
sudo cp $nginx_conf /etc/nginx/conf.d/$domain.d/$app.conf
|
|
|
|
|
sudo service nginx reload
|