mirror of
https://github.com/YunoHost-Apps/duniter_ynh.git
synced 2024-09-03 18:26:35 +02:00
10 lines
143 B
Bash
Executable file
10 lines
143 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Stop uCoin daemon
|
|
pm2 stop ucoind
|
|
|
|
# Upgrade ucoin package
|
|
sudo npm install -g ucoin
|
|
|
|
# Restart uCoin daemon
|
|
pm2 restart ucoind
|