From 508ebf1916c813cbc20fd8b76a917bbcdac01e5f Mon Sep 17 00:00:00 2001 From: dinger1986 Date: Thu, 20 Jul 2023 09:40:25 +0100 Subject: [PATCH 1/3] Update install.sh --- install.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/install.sh b/install.sh index 3db1e5c..97da53e 100644 --- a/install.sh +++ b/install.sh @@ -1,5 +1,8 @@ #!/bin/bash +# If any command fails, fail out +set -e + # This script will do the following to install RustDesk Server Pro # 1. Install some dependencies # 2. Setup UFW firewall if available From 58a030f9c288e4bde75676c7d4f0ff658882f8c8 Mon Sep 17 00:00:00 2001 From: dinger1986 Date: Thu, 20 Jul 2023 09:40:48 +0100 Subject: [PATCH 2/3] Update update.sh --- update.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/update.sh b/update.sh index 92859e0..1e1b4db 100644 --- a/update.sh +++ b/update.sh @@ -1,5 +1,8 @@ #!/bin/bash +# If any command fails, fail out +set -e + # Get username uname=$(whoami) # not used btw ... yet From 782a8082cddff00ddf12e9806cd27bc57184aa9d Mon Sep 17 00:00:00 2001 From: dinger1986 Date: Thu, 20 Jul 2023 09:41:04 +0100 Subject: [PATCH 3/3] Update convertfromos.sh --- convertfromos.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/convertfromos.sh b/convertfromos.sh index 689c171..9e64940 100644 --- a/convertfromos.sh +++ b/convertfromos.sh @@ -1,5 +1,8 @@ #!/bin/bash +# If any command fails, fail out +set -e + # This script will do the following to install RustDesk Server Pro replacing RustDesk Server Open Source # 1. Disable and removes the old services # 2. Install some dependencies