Merge branch 'develop'

root 2021-09-28 16:20:44 +02:00
commit 72ec8f85f7
1 changed files with 7 additions and 6 deletions

13
dd-ctl
View File

@ -7,12 +7,13 @@ OPERATION="$1"
if [ -z "$OPERATION" ]; then if [ -z "$OPERATION" ]; then
set +x set +x
echo "Missing command." echo "Missing command."
echo " Example: ./dd.ctl [operation] [branch]" echo " Example: ./dd.ctl [operation]"
echo "./dd-ctl prepare" echo " Bring the project up: ./dd-ctl all"
echo "./dd-ctl build" echo "Bring the project up without changing submodules: ./dd-ctl all-develop"
echo "./dd-ctl up" echo " Start the project when stopped: ./dd-ctl up"
echo "./dd-ctl down" echo " Stop the project when started: ./dd-ctl down"
echo "./dd-ctl customize" echo " Apply customizations: ./dd-ctl customize"
echo " Update SAML certificates: ./dd-ctl saml"
exit 1 exit 1
fi fi