mirror of
https://github.com/pooneyy/1Panel-Appstore.git
synced 2026-04-03 16:56:39 +08:00
16 lines
224 B
Bash
16 lines
224 B
Bash
#!/bin/bash
|
|
|
|
if [ -f .env ]; then
|
|
source .env
|
|
|
|
mkdir -p $KIBANA_ROOT_PATH
|
|
mkdir -p "$KIBANA_ROOT_PATH/data"
|
|
|
|
chown -R 1000:1000 $KIBANA_ROOT_PATH
|
|
|
|
echo "Check Finish."
|
|
|
|
else
|
|
echo "Error: .env file not found."
|
|
fi
|