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-08-20 01:35:46 +02:00
|
|
|
|
set -eu
|
2015-12-02 21:41:55 +01:00
|
|
|
|
|
2016-08-20 02:31:08 +02:00
|
|
|
|
# Source app helpers and functions
|
2016-06-23 12:05:02 +02:00
|
|
|
|
source /usr/share/yunohost/helpers
|
2016-08-20 02:31:08 +02:00
|
|
|
|
source functions.sh
|
2016-06-23 12:05:02 +02:00
|
|
|
|
|
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-24 11:57:31 +02:00
|
|
|
|
admin=$(ynh_app_setting_get "$app" admin)
|
2015-05-24 23:01:16 +02:00
|
|
|
|
|
2016-06-24 11:49:05 +02:00
|
|
|
|
# Check CPU arch
|
2016-07-23 15:04:07 +02:00
|
|
|
|
if [[ $arch != "x64" && $arch != "armv7l" ]]; then
|
2016-08-20 02:31:08 +02:00
|
|
|
|
ynh_die "$arch is not supported." 2
|
2016-06-24 11:49:05 +02:00
|
|
|
|
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
|
|
|
|
|
|
2016-08-20 02:31:08 +02:00
|
|
|
|
INSTALL_DUNITER_DEBIAN_PACKAGE
|
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%/}
|
|
|
|
|
|
2016-08-20 02:31:08 +02:00
|
|
|
|
CONFIG_SSOWAT_FOR_RESTRICTED_ACCESS
|
|
|
|
|
CONFIG_NGINX_FOR_WEB_ADMIN
|