mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2024-11-11 06:46:55 +08:00
11 lines
267 B
Bash
11 lines
267 B
Bash
#!/bin/bash
|
|
|
|
if [[ -f ./.env ]]; then
|
|
if grep -q 'PANEL_DB_TYPE="mysql"' ./.env; then
|
|
echo "PANEL_DB_TYPE 为 Mysql 数据库, 不作修改"
|
|
else
|
|
sed -i 's/PANEL_DB_TYPE="postgres"/PANEL_DB_HOST="pgsql"/g' ./.env
|
|
fi
|
|
else
|
|
echo ".env 文件不存在"
|
|
fi |