taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

commit ac7615469675cd3c83eba5312cc699ce420a9619
parent 5d33d84929b56d344c80b6ae96802d45835b26c9
Author: Christian Grothoff <christian@grothoff.org>
Date:   Sat,  4 Mar 2023 13:56:27 +0100

improve libeufin script to use Debian package better

Diffstat:
Mnetzbon/config_launch_libeufin.sh | 4++++
Mnetzbon/config_nginx.sh | 4++++
Mnetzbon/install_debian_packages.sh | 4++++
Mnetzbon/setup-exchange.sh | 6++++++
4 files changed, 18 insertions(+), 0 deletions(-)

diff --git a/netzbon/config_launch_libeufin.sh b/netzbon/config_launch_libeufin.sh @@ -27,6 +27,10 @@ set -eu +source functions.sh +source config/user.conf +source config/internal.conf + say "Setting up libeufin" # EBICS parameters that must match but are only used internally. diff --git a/netzbon/config_nginx.sh b/netzbon/config_nginx.sh @@ -3,6 +3,10 @@ # Inputs: DOMAIN_NAME +source functions.sh +source config/user.conf +source config/internal.conf + say "Configuring Nginx" systemctl stop nginx diff --git a/netzbon/install_debian_packages.sh b/netzbon/install_debian_packages.sh @@ -1,6 +1,10 @@ #!/bin/bash # This file is in the public domain. +source functions.sh +source config/user.conf +source config/internal.conf + # Program versions PG_VERSION=15 diff --git a/netzbon/setup-exchange.sh b/netzbon/setup-exchange.sh @@ -1,5 +1,11 @@ #!/bin/bash +set -eu + +source functions.sh +source config/user.conf +source config/internal.conf + # Required inputs: # # - LIBEUFIN_NEXUS_USERNAME (exchange username for libeufin-nexus)