aboutsummaryrefslogtreecommitdiff
path: root/regional-currency/install_packages.sh
diff options
context:
space:
mode:
Diffstat (limited to 'regional-currency/install_packages.sh')
-rwxr-xr-xregional-currency/install_packages.sh15
1 files changed, 10 insertions, 5 deletions
diff --git a/regional-currency/install_packages.sh b/regional-currency/install_packages.sh
index 6d5519e..0ef5031 100755
--- a/regional-currency/install_packages.sh
+++ b/regional-currency/install_packages.sh
@@ -12,9 +12,11 @@ detect_distro
# Program versions
PG_VERSION=15
+say "Installing necessary packages (this may take a while)..."
+
## Update
-apt update
+apt update &>> setup.log
## General requirements
@@ -28,7 +30,7 @@ apt install uuid-runtime \
postgresql-client-${PG_VERSION} \
dbconfig-pgsql \
certbot \
- python3-certbot-nginx -y
+ python3-certbot-nginx -y &>> setup.log
## Add GNU Taler deb.taler.net to /etc/apt/sources.list
@@ -48,14 +50,17 @@ ubuntu)
;;
esac
-wget -P /etc/apt/keyrings https://taler.net/taler-systems.gpg
+wget -P /etc/apt/keyrings https://taler.net/taler-systems.gpg &>> setup.log
## Specific GNU Taler packages
-apt update
+say "Installing GNU Taler packages (this may take a while)..."
+
+apt update &>> setup.log
apt install taler-exchange \
taler-merchant \
taler-harness \
taler-wallet-cli \
+ taler-exchange-offline \
libeufin-bank \
- libeufin-nexus -y
+ libeufin-nexus -y &>> setup.log \ No newline at end of file