Fix comparison logic for bringing up a stack
This commit is contained in:
parent
4f87418d80
commit
9a439caf3f
@ -1,4 +1,5 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
set -x
|
||||||
|
|
||||||
# Check for network mounted devices
|
# Check for network mounted devices
|
||||||
# NAS SMB
|
# NAS SMB
|
||||||
@ -36,17 +37,17 @@ for stack in /home/admin/homelab/fighter/config/*; do
|
|||||||
# need the one that must be offline.
|
# need the one that must be offline.
|
||||||
# If all of those fail, we know the stack is dependent on an offline service
|
# If all of those fail, we know the stack is dependent on an offline service
|
||||||
# So we just skip the stack.
|
# So we just skip the stack.
|
||||||
if (SMB_ONLINE=true && ISCSI_ONLINE=true); then
|
if $SMB_ONLINE && $ISCSI_ONLINE; then
|
||||||
echo " ==== Bringing up $stack"
|
echo " ==== Bringing up $stack"
|
||||||
docker compose up -d
|
docker compose up -d
|
||||||
elif (! echo $COMPOSE_CONFIG_TEXT | grep -q /mnt/nas && ISCSI_ONLINE=true); then
|
elif $ISCSI_ONLINE && ! ( echo $COMPOSE_CONFIG_TEXT | grep -q /mnt/nas ); then
|
||||||
echo " ==== Bringing up $stack"
|
echo " ==== Bringing up $stack"
|
||||||
docker compose up -d
|
docker compose up -d
|
||||||
elif (! echo $COMPOSE_CONFIG_TEXT | grep -q /mnt/iscsi && SMB_ONLINE=true); then
|
elif $SMB_ONLINE && ! ( echo $COMPOSE_CONFIG_TEXT | grep -q /mnt/iscsi ); then
|
||||||
echo " ==== Bringing up $stack"
|
echo " ==== Bringing up $stack"
|
||||||
docker compose up -d
|
docker compose up -d
|
||||||
else
|
else
|
||||||
echo " ==== Skipping stack $stack"
|
echo " ==== Skipping stack $stack"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
cd /home/admin/homelab/fighter/config/
|
cd /home/admin/homelab/fighter/config/
|
||||||
|
Loading…
Reference in New Issue
Block a user