From 94dc62ff5855da05024e9e68a7fdeadc71de7048 Mon Sep 17 00:00:00 2001 From: silversword411 Date: Sat, 13 Mar 2021 12:14:53 -0500 Subject: [PATCH] Avoid multiple update file versions Kept getting update.sh.1, update.sh.2 etc with each run and then the auto-pasted command wouldn't be running the latest version of the file. --- docs/docs/update_server.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/update_server.md b/docs/docs/update_server.md index 258cf998..fada5aa1 100644 --- a/docs/docs/update_server.md +++ b/docs/docs/update_server.md @@ -20,7 +20,7 @@ SSH into your server as the linux user you created during install.

__Never__ run any update scripts or commands as the `root` user.
This will mess up permissions and break your installation.

Download the update script and run it:
```bash -wget https://raw.githubusercontent.com/wh1te909/tacticalrmm/master/update.sh +wget -N https://raw.githubusercontent.com/wh1te909/tacticalrmm/master/update.sh chmod +x update.sh ./update.sh ```