taler-deployment

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

commit 09a9f8a683b217c81831ff5cb20899b9c7ee26d4
parent da673e8bbba92651dd9d35c837833e1a3b5f37c0
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date:   Thu,  5 Sep 2019 20:14:22 +0200

UI

Diffstat:
Mbootstrap-taler | 18++++++++++++++----
1 file changed, 14 insertions(+), 4 deletions(-)

diff --git a/bootstrap-taler b/bootstrap-taler @@ -136,7 +136,17 @@ if test "test" = $ENVNAME; then fi fi -echo "Next steps are (1) config generation, (2) keys generation and (3) signing the /wire response." -echo "For (1), run 'taler-deployment-generate-config'" -echo "For (2), run 'taler-deployment-keyup'" -echo "For (3), run 'taler-deployment-sign'" +if ! test -f $HOME/activate; then + echo FATAL: activate file was not created. + exit 1 +fi + +source $HOME/activate + +echo "Possible steps now are (~/activate sourced already):" +echo +echo "(1) building all Taler: run 'taler-deployment-build'" +echo "(2) config generation: run 'taler-deployment-generate-config'" +echo "(3) keys generation: run 'taler-deployment-keyup'" +echo "(4) signing the /wire response: 'taler-deployment-sign'" +echo "(5) launch all the services: 'taler-deployment-start'"