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

30 lines
757 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
source /usr/share/yunohost/helpers
# Retrive CPU architecure
app=duniter
arch=$(ynh_app_setting_get "$app" arch)
version=$(cat ../conf/upstream_version)
# Stop duniter daemon
sudo $app stop
# Remove Duniter package
sudo dpkg -r duniter
# Retrive Duniter package and install it
if [ $arch == "x64" ]; then #|| $arch == "armv7l" ]
wget -nc --quiet https://github.com/duniter/duniter/releases/download/$version/duniter-$version-linux-$arch.deb -P /tmp
else
ynh_die "$arch is not currently supported." 2
fi
sudo dpkg -i /tmp/duniter-$version-linux-$arch.deb
#sudo rm -f /tmp/duniter-$version-linux-$arch.deb
# Start duniter daemon
sudo $app start