Change Create Windows Task to main.py
parent
a0d2599961
commit
80045776ba
|
|
@ -8,13 +8,13 @@ apt update
|
||||||
apt install python3-pip git -y
|
apt install python3-pip git -y
|
||||||
|
|
||||||
## Add Crontab
|
## Add Crontab
|
||||||
if [ -e .crontab ]; then
|
if [ -f ".crontab" ]; then
|
||||||
echo "Gibt es"
|
echo "Gibt es"
|
||||||
next
|
next
|
||||||
else:
|
else:
|
||||||
crontab -l | { cat; echo "30 0 * * * /root/REPORTS/setup-info.sh"; } | crontab -
|
crontab -l | { cat; echo "30 0 * * * /root/REPORTS/setup-info.sh"; } | crontab -
|
||||||
echo "Gibt es nicht"
|
echo "Gibt es nicht"
|
||||||
touch .crontab
|
touch ".crontab"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
## Add GIT
|
## Add GIT
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue