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

29 lines
646 B
Text
Raw Normal View History

2015-05-24 23:01:16 +02:00
#!/bin/bash
# Exit on command errors and treat unset variables as an error
set -eu
app=duniter
2016-06-22 20:42:13 +02:00
version=$(cat ../conf/upstream_version)
2015-05-24 23:01:16 +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
arch=$(uname -m)
if [ $arch == "x86_64" ]; then
arch="x64"
fi
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
# Start duniter daemon
sudo $app start