Update install.sh
This commit is contained in:
parent
d9d87449c8
commit
c0a782d133
20
install.sh
20
install.sh
@ -107,26 +107,26 @@ echo "Creating /var/log/vigil directory..."
|
||||
mkdir -p /var/log/vigil
|
||||
|
||||
# Now curl -fsSL each file into the /opt/vigil directory
|
||||
curl -fsSL https://git.uthmn.com/ufatih/vigil/raw/branch/main/LICENSE -o /opt/vigil/LICENSE || { echo "Failed to download LICENSE file."; exit 1; }
|
||||
curl -fsSL https://git.uthmn.com/boiabba/vigil/raw/branch/main/LICENSE -o /opt/vigil/LICENSE || { echo "Failed to download LICENSE file."; exit 1; }
|
||||
echo " ✓ LICENSE"
|
||||
curl -fsSL https://git.uthmn.com/ufatih/vigil/raw/branch/main/README.md -o /opt/vigil/README.md || { echo "Failed to download README.md file."; exit 1; }
|
||||
curl -fsSL https://git.uthmn.com/boiabba/vigil/raw/branch/main/README.md -o /opt/vigil/README.md || { echo "Failed to download README.md file."; exit 1; }
|
||||
echo " ✓ README.md"
|
||||
curl -fsSL https://git.uthmn.com/ufatih/vigil/raw/branch/main/install.sh -o /opt/vigil/install.sh || { echo "Failed to download install.sh file."; exit 1; }
|
||||
curl -fsSL https://git.uthmn.com/boiabba/vigil/raw/branch/main/install.sh -o /opt/vigil/install.sh || { echo "Failed to download install.sh file."; exit 1; }
|
||||
echo " ✓ install.sh"
|
||||
curl -fsSL https://git.uthmn.com/ufatih/vigil/raw/branch/main/uninstall.sh -o /opt/vigil/uninstall.sh || { echo "Failed to download uninstall.sh file."; exit 1; }
|
||||
curl -fsSL https://git.uthmn.com/boiabba/vigil/raw/branch/main/uninstall.sh -o /opt/vigil/uninstall.sh || { echo "Failed to download uninstall.sh file."; exit 1; }
|
||||
echo " ✓ uninstall.sh"
|
||||
curl -fsSL https://git.uthmn.com/ufatih/vigil/raw/branch/main/requirements.txt -o /opt/vigil/requirements.txt || { echo "Failed to download requirements.txt file."; exit 1; }
|
||||
curl -fsSL https://git.uthmn.com/boiabba/vigil/raw/branch/main/requirements.txt -o /opt/vigil/requirements.txt || { echo "Failed to download requirements.txt file."; exit 1; }
|
||||
echo " ✓ requirements.txt"
|
||||
|
||||
curl -fsSL https://git.uthmn.com/ufatih/vigil/raw/branch/main/main.py -o /opt/vigil/main.py || { echo "Failed to download main.py file."; exit 1; }
|
||||
curl -fsSL https://git.uthmn.com/boiabba/vigil/raw/branch/main/main.py -o /opt/vigil/main.py || { echo "Failed to download main.py file."; exit 1; }
|
||||
echo " ✓ main.py"
|
||||
curl -fsSL https://git.uthmn.com/ufatih/vigil/raw/branch/main/services/apt.py -o /opt/vigil/services/apt.py || { echo "Failed to download services/apt.py file."; exit 1; }
|
||||
curl -fsSL https://git.uthmn.com/boiabba/vigil/raw/branch/main/services/apt.py -o /opt/vigil/services/apt.py || { echo "Failed to download services/apt.py file."; exit 1; }
|
||||
echo " ✓ services/apt.py"
|
||||
curl -fsSL https://git.uthmn.com/ufatih/vigil/raw/branch/main/services/mail.py -o /opt/vigil/services/mail.py || { echo "Failed to download services/mail.py file."; exit 1; }
|
||||
curl -fsSL https://git.uthmn.com/boiabba/vigil/raw/branch/main/services/mail.py -o /opt/vigil/services/mail.py || { echo "Failed to download services/mail.py file."; exit 1; }
|
||||
echo " ✓ services/mail.py"
|
||||
curl -fsSL https://git.uthmn.com/ufatih/vigil/raw/branch/main/services/logger.py -o /opt/vigil/services/logger.py || { echo "Failed to download services/logger.py file."; exit 1; }
|
||||
curl -fsSL https://git.uthmn.com/boiabba/vigil/raw/branch/main/services/logger.py -o /opt/vigil/services/logger.py || { echo "Failed to download services/logger.py file."; exit 1; }
|
||||
echo " ✓ services/logger.py"
|
||||
curl -fsSL https://git.uthmn.com/ufatih/vigil/raw/branch/main/services/__init__.py -o /opt/vigil/services/__init__.py || { echo "Failed to download services/__init__.py file."; exit 1; }
|
||||
curl -fsSL https://git.uthmn.com/boiabba/vigil/raw/branch/main/services/__init__.py -o /opt/vigil/services/__init__.py || { echo "Failed to download services/__init__.py file."; exit 1; }
|
||||
echo " ✓ services/__init__.py"
|
||||
|
||||
echo "✓ All files downloaded successfully"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user