-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstart.sh
More file actions
22 lines (20 loc) · 805 Bytes
/
start.sh
File metadata and controls
22 lines (20 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh
BOT_PATH=/root/Path
if [ ! -d $BOT_PATH/logs ]; then
mkdir $BOT_PATH/logs
fi
GREEN='\033[0;32m'
NORMAL='\033[0m'
echo "::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::"
echo "::: ${GREEN}PornBot by RaZoR ${NORMAL} :::"
echo "::: :::"
echo "::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::"
echo "::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::"
echo "::: Start Posting :::"
echo "::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::"
echo ""
echo "${GREEN}::: Ready :::${NORMAL}"
echo ""
echo "${GREEN}::: Log Service :::${NORMAL}"
cd $BOT_PATH; python runner.py > $BOT_PATH/logs/runner.log 2>&1
sleep 1