#!/bin/bash -e

This commit is contained in:
juarez 2023-09-04 16:43:40 +02:00
parent 720783249d
commit ccf0b91f17
8 changed files with 8 additions and 8 deletions

View File

@ -1,4 +1,4 @@
#!/bin/bash #!/bin/bash -e
if [ "$ENABLE_DATASHIELD" == true ]; then if [ "$ENABLE_DATASHIELD" == true ]; then
log INFO "DataSHIELD setup detected -- will start DataSHIELD services." log INFO "DataSHIELD setup detected -- will start DataSHIELD services."

View File

@ -1,4 +1,4 @@
#!/bin/bash #!/bin/bash -e
if [ -n "${ENABLE_DNPM}" ]; then if [ -n "${ENABLE_DNPM}" ]; then
log INFO "DNPM setup detected (Beam.Connect) -- will start Beam.Connect for DNPM." log INFO "DNPM setup detected (Beam.Connect) -- will start Beam.Connect for DNPM."

View File

@ -1,4 +1,4 @@
#!/bin/bash #!/bin/bash -e
if [ "$ENABLE_EXPORTER" == true ]; then if [ "$ENABLE_EXPORTER" == true ]; then
log INFO "Exporter setup detected -- will start Exporter service." log INFO "Exporter setup detected -- will start Exporter service."

View File

@ -1,4 +1,4 @@
#!/bin/bash #!/bin/bash -e
function idManagementSetup() { function idManagementSetup() {
if [ -n "$IDMANAGER_UPLOAD_APIKEY" ]; then if [ -n "$IDMANAGER_UPLOAD_APIKEY" ]; then

View File

@ -1,4 +1,4 @@
#!/bin/bash #!/bin/bash -e
if [ "$ENABLE_LOGIN" == true ]; then if [ "$ENABLE_LOGIN" == true ]; then
log INFO "Login setup detected -- will start Login services." log INFO "Login setup detected -- will start Login services."

View File

@ -1,4 +1,4 @@
#!/bin/bash #!/bin/bash -e
function mtbaSetup() { function mtbaSetup() {
if [ -n "$ENABLE_MTBA" ];then if [ -n "$ENABLE_MTBA" ];then

View File

@ -1,4 +1,4 @@
#!/bin/bash #!/bin/bash -e
if [ -n "$NNGM_CTS_APIKEY" ]; then if [ -n "$NNGM_CTS_APIKEY" ]; then
log INFO "nNGM setup detected -- will start nNGM Connector." log INFO "nNGM setup detected -- will start nNGM Connector."

View File

@ -1,4 +1,4 @@
#!/bin/bash #!/bin/bash -e
if [ "$ENABLE_TEILER" == true ];then if [ "$ENABLE_TEILER" == true ];then
log INFO "Teiler setup detected -- will start Teiler services." log INFO "Teiler setup detected -- will start Teiler services."