22 lines
422 B
Bash
22 lines
422 B
Bash
#!/bin/bash
|
|
## Ordner anlegen
|
|
mkdir /root/REPORTS
|
|
cd /root/REPORTS
|
|
|
|
## APT UPDATE
|
|
apt update
|
|
apt install python3-pip git -y
|
|
|
|
## Add GIT
|
|
git init
|
|
git remote add orgin https://gitlab.stines.de/sebastian.serfling/REPORTS.git
|
|
git fetch
|
|
git pull orgin main
|
|
|
|
## Install Python
|
|
python3 -m pip install virtualenv
|
|
python3 -m virtualenv venv
|
|
source venv/bin/activate
|
|
python3 -m pip install -r packages.txt
|
|
python3 main.py
|
|
deactivate |