switched to set -e in entrypoint scripts

This commit is contained in:
André Bauer 2017-11-21 00:30:58 +01:00
parent c672d1dc77
commit 4ec18cd437
2 changed files with 2 additions and 6 deletions

View File

@ -1,8 +1,6 @@
#!/bin/bash #!/bin/bash
set -o errexit set -e
set -o nounset
set -o pipefail
if [ "$1" = 'zammad-nfs' ]; then if [ "$1" = 'zammad-nfs' ]; then
echo "create & mount tmpfs" echo "create & mount tmpfs"

View File

@ -1,8 +1,6 @@
#!/bin/bash #!/bin/bash
set -o errexit set -e
set -o nounset
set -o pipefail
function check_railsserver_available { function check_railsserver_available {
# wait for zammad process coming up # wait for zammad process coming up