Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ No need to be a Linux wizard! Follow these simple steps.
The easiest way to install Server Manager on a fresh VM (Google Cloud, AWS, etc.) is to use the bootstrap script. It handles everything: sudo access, dependencies, and compiling the tool.

```bash
curl -sL https://raw.githubusercontent.com/Cylae/server_script/main/install.sh | bash
curl -sL https://raw.githubusercontent.com/Cylae/server_script/server-setup-script/install.sh | bash
```

That's it! 🎉
Expand Down Expand Up @@ -166,7 +166,7 @@ Pas besoin de connaître Linux sur le bout des doigts ! Suivez ces étapes simpl
La méthode la plus simple pour installer Server Manager sur une VM vierge (Google Cloud, AWS, etc.) est d'utiliser le script de bootstrap. Il gère tout : accès sudo, dépendances et compilation.

```bash
curl -sL https://raw.githubusercontent.com/Cylae/server_script/main/install.sh | bash
curl -sL https://raw.githubusercontent.com/Cylae/server_script/server-setup-script/install.sh | bash
```

C'est tout ! 🎉
Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ if [ "$EUID" -ne 0 ]; then
# We will re-curl the script.

echo "Downloading installer to temporary file for elevation..."
curl -sL https://raw.githubusercontent.com/Cylae/server_script/main/install.sh -o "$TEMP_SCRIPT"
curl -sL https://raw.githubusercontent.com/Cylae/server_script/server-setup-script/install.sh -o "$TEMP_SCRIPT"
chmod +x "$TEMP_SCRIPT"
sudo "$TEMP_SCRIPT" "$@"
rm -f "$TEMP_SCRIPT"
Expand Down
Loading