commit 18d19b08d90e739376d42aa229ea8643e24b28c0
parent 614fd086cc21976731f6b71ba9cd5001882f3a4c
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date: Thu, 5 Sep 2019 19:53:51 +0200
internal -> int
Diffstat:
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/bootstrap-taler b/bootstrap-taler
@@ -35,14 +35,14 @@ case $ENVNAME in
test)
CURRENCY=TESTKUDOS
;;
- internal)
+ int)
CURRENCY=INTKUDOS
;;
demo)
CURRENCY=KUDOS
;;
*)
- echo Invalid Envname, please use test or internal or demo.
+ echo Invalid envname, please use 'test' or 'int' or 'demo'.
exit 1
;;
esac
@@ -135,3 +135,8 @@ if test "test" = $ENVNAME; then
echo auditor_worker already in place.
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'"