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
|
|
|
|
|
set -eu
|
2015-12-02 21:41:55 +01:00
|
|
|
|
|
2016-06-23 12:05:02 +02:00
|
|
|
|
# Source app helpers
|
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
|
|
# Retrive CPU architecure
|
2016-05-02 15:22:52 +02:00
|
|
|
|
app=duniter
|
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-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
|
|
|
|
|
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
|
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
|
|
|
|
|
sudo $app start
|