From 900c3008cb00c2cf39e6dfd72a61e5232dc226dc Mon Sep 17 00:00:00 2001 From: silversword411 Date: Mon, 1 Mar 2021 17:44:35 -0500 Subject: [PATCH] Fixing bash commands Removing ID/server so paste will work --- docs/docs/update_server.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/docs/update_server.md b/docs/docs/update_server.md index b8c33c6f..258cf998 100644 --- a/docs/docs/update_server.md +++ b/docs/docs/update_server.md @@ -20,9 +20,9 @@ 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 -tactical@tacrmm:~$ wget https://raw.githubusercontent.com/wh1te909/tacticalrmm/master/update.sh -tactical@tacrmm:~$ chmod +x update.sh -tactical@tacrmm:~$ ./update.sh +wget https://raw.githubusercontent.com/wh1te909/tacticalrmm/master/update.sh +chmod +x update.sh +./update.sh ```
@@ -30,7 +30,7 @@ tactical@tacrmm:~$ ./update.sh If you are already on the latest version, the update script will notify you of this and return immediately.

You can pass the optional `--force` flag to the update script to forcefully run through an update, which will bypass the check for latest version.
```bash -tactical@tacrmm:~$ ./update.sh --force +./update.sh --force ``` This is usefull for a botched update that might have not completed fully.

The update script will also fix any permissions that might have gotten messed up during a botched update, or if you accidentally ran the update script as the `root` user. @@ -62,4 +62,4 @@ After this you have renewed the cert, simply run the `update.sh` script, passing ```bash ./update.sh --force -``` \ No newline at end of file +```