1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/duniter_ynh.git synced 2024-09-03 18:26:35 +02:00
duniter_ynh/scripts/upgrade
Moul 07c73d399a [mod] #12: remove install path choice.
A dedicated domain name is needed and make it easier to configure.
Remove code on manifest, install and upgrade scripts.
2017-02-21 12:58:51 +01:00

35 lines
787 B
Bash
Executable file
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/bash
# Exit on command errors and treat unset variables as an error
set -eu
# Source app helpers and functions
source /usr/share/yunohost/helpers
source functions.sh
# Retrive arguments
app=$YNH_APP_INSTANCE_NAME
domain=$(ynh_app_setting_get "$app" domain)
port=$(ynh_app_setting_get "$app" port)
arch=$(ynh_app_setting_get "$app" arch)
admin=$(ynh_app_setting_get "$app" admin)
is_cesium_public=$(ynh_app_setting_get "$app" is_cesium_public)
# Check CPU arch
if [[ $arch != "x64" && $arch != "armv7l" ]]; then
ynh_die "$arch is not supported." 2
fi
# Stop duniter daemon
sudo $app stop
# Remove Duniter package
sudo dpkg -r duniter
INSTALL_DUNITER_DEBIAN_PACKAGE
# Start duniter daemon
sudo $app webstart
CONFIG_SSOWAT_FOR_RESTRICTED_ACCESS
CONFIG_NGINX_FOR_WEB_ADMIN