mirror of
https://github.com/aljazceru/shurikenpi.io.git
synced 2025-12-17 06:04:23 +01:00
13 lines
319 B
Bash
Executable File
13 lines
319 B
Bash
Executable File
source ./global.sh
|
|
source ./utils.sh
|
|
|
|
if [ $SESSION_COUNT -eq 0 ]; then
|
|
p "Starting up shurikenpi.io..."
|
|
screen -d -m -c ../Configurations/screen.screenrc -S "shurikenpi.io" ../Worker/worker.sh
|
|
./status.sh
|
|
elif [ $SESSION_COUNT -eq 1 ]; then
|
|
p "shurikenpi.io is already running"
|
|
else
|
|
./status.sh
|
|
fi
|