summaryrefslogtreecommitdiff
path: root/bin/taler-deployment-start
diff options
context:
space:
mode:
Diffstat (limited to 'bin/taler-deployment-start')
-rwxr-xr-xbin/taler-deployment-start43
1 files changed, 0 insertions, 43 deletions
diff --git a/bin/taler-deployment-start b/bin/taler-deployment-start
deleted file mode 100755
index 271a7e9..0000000
--- a/bin/taler-deployment-start
+++ /dev/null
@@ -1,43 +0,0 @@
-#!/bin/bash
-
-set -eu
-
-export PATH="$HOME/deployment":$PATH
-
-# might fail if invoked from another script with ulimit
-ulimit -c $((100 * 1024)) &>/dev/null || true
-
-cd $HOME
-
-taler_config_file=$HOME/.config/taler.conf
-
-if [[ ! -e "$taler_config_file" ]]; then
- echo "taler config file ($taler_config_file) missing"
- exit 1
-fi
-
-taler-deployment-arm -s
-
-taler-deployment-arm -i taler-exchange
-taler-deployment-arm -i taler-exchange-secmod-eddsa
-taler-deployment-arm -i taler-exchange-secmod-rsa
-taler-deployment-arm -i taler-auditor
-taler-deployment-arm -i taler-merchant
-taler-deployment-arm -i taler-demobank
-taler-deployment-arm -i taler-donations
-taler-deployment-arm -i taler-blog
-taler-deployment-arm -i taler-landing
-taler-deployment-arm -i taler-survey
-taler-deployment-arm -i taler-aggregator
-taler-deployment-arm -i taler-exchange-wirewatch
-taler-deployment-arm -i taler-sync
-taler-deployment-arm -i taler-transfer
-taler-deployment-arm -i anastasis
-
-if $(taler-config -s twister -o taler_deploy >& /dev/null); then
- taler-deployment-arm -i taler-twister
- taler-deployment-arm -i taler-twister-exchange
- taler-deployment-arm -i taler-twister-bank
-fi
-
-exit 0