summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorms <ms@taler.net>2021-11-23 17:28:43 +0100
committerms <ms@taler.net>2021-11-23 17:28:43 +0100
commit47b604a9e642712d2bf2df987b97de13d4cc981c (patch)
tree175aabff213302c31bbc983ea074f057da6ecbcc
parent5ee703cb9c51378ae86cd4a54305486fe1099c3a (diff)
downloaddeployment-47b604a9e642712d2bf2df987b97de13d4cc981c.tar.gz
deployment-47b604a9e642712d2bf2df987b97de13d4cc981c.tar.bz2
deployment-47b604a9e642712d2bf2df987b97de13d4cc981c.zip
taler-local: launch blog
-rwxr-xr-xbin/WIP/taler-local6
1 files changed, 5 insertions, 1 deletions
diff --git a/bin/WIP/taler-local b/bin/WIP/taler-local
index 1d52129..c30fbc4 100755
--- a/bin/WIP/taler-local
+++ b/bin/WIP/taler-local
@@ -783,7 +783,9 @@ def prepare():
# Instances
INSTANCES = {
- "GNUnet": IBAN_MERCHANT_DEMOSHOP
+ "GNUnet": IBAN_MERCHANT_DEMOSHOP,
+ "FSF": IBAN_MERCHANT_DEMOSHOP,
+ "blog": IBAN_MERCHANT_DEMOSHOP
}
# Credentials / API keys
@@ -1762,6 +1764,7 @@ def launch():
subprocess.run(["systemctl", "--user", "start", "libeufin-nexus-local.service"], check=True)
subprocess.run(["systemctl", "--user", "start", "libeufin-sandbox-local.service"], check=True)
subprocess.run(["systemctl", "--user", "start", "taler-donations-local.service"], check=True)
+ subprocess.run(["systemctl", "--user", "start", "taler-blog-local.service"], check=True)
rev_proxy = TalerReverseProxy(
LOG_DIR,
@@ -1777,6 +1780,7 @@ def launch():
)
# Stop with CTRL+C
print_nn("Stopping the services...")
+ subprocess.run(["systemctl", "--user", "stop", "taler-blog-local.service"], check=True)
subprocess.run(["systemctl", "--user", "stop", "taler-donations-local.service"], check=True)
subprocess.run(["systemctl", "--user", "stop", "libeufin-sandbox-local.service"], check=True)
subprocess.run(["systemctl", "--user", "stop", "libeufin-nexus-local.service"], check=True)