1
0
mirror of https://github.com/pooneyy/1Panel-Appstore.git synced 2026-03-18 04:31:05 +08:00

20 lines
363 B
Bash

#!/bin/bash
if [ -f .env ]; then
source .env
mkdir -p "$PERCONA_ROOT_PATH"
mkdir -p "$PERCONA_ROOT_PATH/config"
mkdir -p "$PERCONA_ROOT_PATH/data"
mkdir -p "$PERCONA_ROOT_PATH/log"
cp ./config/my.cnf "$PERCONA_ROOT_PATH/config/my.cnf"
chown -R 1000:1000 "$PERCONA_ROOT_PATH"
echo "Check Finish."
else
echo "Error: .env file not found."
fi