Name and challenge apt.install.sh changed to deb.install.sh (#7)

This commit is contained in:
Sergei Solovev 2024-11-24 14:36:34 +03:00 committed by GitHub
parent cfd81be11b
commit 9d7ab3d073
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 4 deletions

View File

@ -29,11 +29,11 @@ chmod +x ./autoinstall/install.sh
```
> [!NOTE]
> install.sh always downloads the latest release.\
> If you want to run it directly, use apt.install.sh for Debian and Ubuntu.
> If you want to run it directly, use deb.install.sh for Debian and Ubuntu.
**Running the installation script directly for debian and ubuntu**
```bash
chmod +x ./autoinstall/install.sh && ./autoinstall/apt.install.sh
chmod +x ./autoinstall/deb.install.sh && ./autoinstall/deb.install.sh
```
## Additional information:
- **Web server:** NGINX + PHP-FPM

View File

@ -85,8 +85,8 @@ if $foundOs; then
echo "===================================" 2>&1 | sudo tee -a "$logsInst" > /dev/null
echo "Starting the automatic installation" | tee -a "$logsInst"
echo "===================================" 2>&1 | sudo tee -a "$logsInst" > /dev/null
sudo chmod +x /tmp/torrentpier/autoinstall/apt.install.sh 2>&1 | sudo tee -a "$logsInst" > /dev/null
sudo /tmp/torrentpier/autoinstall/apt.install.sh
sudo chmod +x /tmp/torrentpier/autoinstall/deb.install.sh 2>&1 | sudo tee -a "$logsInst" > /dev/null
sudo /tmp/torrentpier/autoinstall/deb.install.sh
fi
done
else