1
0
Fork 0
1Panel-Appstore/speedtest-tracker/0.19.0/scripts/init.sh

19 lines
285 B
Bash

#!/bin/bash
if [[ -f .env ]]; then
source .env
keys
mkdir -p "$SP_TRACKER_ROOT_PATH"
mkdir -p "$SP_TRACKER_ROOT_PATH/conf"
mkdir -p "$SP_TRACKER_ROOT_PATH/conf/keys"
chmod $PUID:$PGID -R "$SP_TRACKER_ROOT_PATH"
echo "Check Finish."
else
echo ".env not found."
fi