Skip to content

Commit

Permalink
Name and challenge apt.install.sh changed to deb.install.sh (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
SeAnSolovev authored Nov 24, 2024
1 parent cfd81be commit 9d7ab3d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9d7ab3d

Please sign in to comment.