1
0
Fork 0
Added new environment variable INSECURE to skip SSL verification
This commit is contained in:
Salvoxia 2024-07-30 20:40:20 +02:00
parent 8135b708f4
commit 7ea0ee8355

View file

@ -38,6 +38,10 @@ if [ ! -z "$LOG_LEVEL" ]; then
args="-l $LOG_LEVEL $args"
fi
if [ "$INSECURE" = "true" ]; then
args="-k $args"
fi
BASEDIR=$(dirname "$0")
echo $args | xargs python3 -u $BASEDIR/immich_auto_album.py