mirror of
https://github.com/YunoHost-Apps/duniter_ynh.git
synced 2024-09-03 18:26:35 +02:00
[enh] add working upgrade script.
This commit is contained in:
parent
be1003a318
commit
b66d6c08ff
1 changed files with 15 additions and 3 deletions
|
@ -4,13 +4,25 @@
|
||||||
set -eu
|
set -eu
|
||||||
|
|
||||||
app=duniter
|
app=duniter
|
||||||
|
version=$(cat ../conf/upstream_version)
|
||||||
|
|
||||||
# Stop duniter daemon
|
# Stop duniter daemon
|
||||||
sudo $app stop
|
sudo $app stop
|
||||||
|
|
||||||
# Upgrade Duniter package
|
# Remove Duniter package
|
||||||
#dpkg -r
|
sudo dpkg -r duniter
|
||||||
#dpkg -i
|
|
||||||
|
# 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
|
# Start duniter daemon
|
||||||
sudo $app start
|
sudo $app start
|
||||||
|
|
Loading…
Add table
Reference in a new issue