1
0
Fork 0
1Panel-Appstore/jumpserver/4.10.2/scripts/init.sh

28 lines
767 B
Bash

#!/bin/bash
ENV_FILE=".env"
if [ -f "$ENV_FILE" ]; then
source "$ENV_FILE"
if [ "$PANEL_DB_TYPE" == "postgresql" ]; then
ENGINE="postgresql"
elif [ "$PANEL_DB_TYPE" == "mysql" ] || [ "$PANEL_DB_TYPE" == "mariadb" ]; then
ENGINE="mysql"
else
echo "Unsupported PANEL_DB_TYPE value: $PANEL_DB_TYPE"
exit 1
fi
if grep -q '^DB_ENGINE=' "$ENV_FILE"; then
sed -i.bak "s/^DB_ENGINE=.*/DB_ENGINE=$ENGINE/" "$ENV_FILE"
else
echo DB_ENGINE="$ENGINE" >> "$ENV_FILE"
fi
if [ "$(grep '^WITH_NGINX=' "$ENV_FILE" | cut -d '=' -f 2 | tr -d '"')" == "false" ]; then
sed -i.bak 's/${HOST_IP}:${PANEL_APP_PORT_HTTP}:80/127.0.0.1:${PANEL_APP_PORT_HTTP}:51980/g' "docker-compose.yml"
fi
else
echo ".env file not found!"
exit 1
fi