commit a1a01f9bbaac3171dbb7445e45af6218e1719231 parent 35ffbb42d25681d55ba5ab13d63b72c73a6dde6d Author: Florian Dold <florian.dold@gmail.com> Date: Wed, 23 Nov 2016 16:26:04 +0100 dbstart Diffstat:
| A | bin/taler-deployment-dbstart | | | 23 | +++++++++++++++++++++++ |
1 file changed, 23 insertions(+), 0 deletions(-)
diff --git a/bin/taler-deployment-dbstart b/bin/taler-deployment-dbstart @@ -0,0 +1,23 @@ +#!/usr/bin/env bash + +set -eu + +base=$HOME + +export PATH="$base/deployment":$PATH + +ulimit -c $((100 * 1024)) + +cd $HOME + +if [[ ! -e ~/.config/taler.conf ]]; then + taler-deployment-config-generate +fi + +taler-deployment-config-sign + +taler-deployment-arm -s + +if [ "${TALER_CONFIG_STANDALONE:-0}" = 1 ]; then + taler-deployment-arm -i taler-postgres-standalone +fi