Repository: rustdesk/rustdesk-server-pro Branch: main Commit: a25002a49cad Files: 9 Total size: 47.9 KB Directory structure: gitextract_33ajfi63/ ├── .github/ │ └── workflows/ │ └── reviewdog.yml ├── README.md ├── SLA.md ├── convertfromos.sh ├── install.sh ├── lib.sh ├── terms ├── uninstall.sh └── update.sh ================================================ FILE CONTENTS ================================================ ================================================ FILE: .github/workflows/reviewdog.yml ================================================ on: pull_request: push: name: 'reviewdog' jobs: shellcheck: name: Shellcheck testing runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: shellcheck uses: reviewdog/action-shellcheck@v1 with: github_token: ${{ secrets.github_token }} reporter: github-pr-review path: "." # Optional. pattern: "*.sh" # Optional. exclude: "./.git/*" # Optional. misspell: name: Check spelling runs-on: ubuntu-latest steps: - name: spelling or typos uses: actions/checkout@v4 - name: misspell uses: reviewdog/action-misspell@v1 with: github_token: ${{ secrets.github_token }} locale: "US" ================================================ FILE: README.md ================================================ # RustDesk Server PRO Here we have a small collection of [some scripts](https://rustdesk.com/docs/en/self-host/rustdesk-server-pro/installscript/) for RustDesk Server Pro. > If you are looking for the open source version please go to [RustDesk Server](https://github.com/rustdesk/rustdesk-server) # Contributing to this repo You are very welcome to add your PR to improve the current scripts. Some pointers: ### The lib file The lib.sh is used to avoid duplicate code. Here we collect everything that occurs more than once in the varoius scripts. That could be both `functions()` and `$variables`. ### Indentation We always use four (4) spaces, not one (1) tab. Please see below for examples. ### IF arguments and functions The current style is to use it like this: ``` if something then do something fi ``` Not like: ``` if something; then do something fi ``` Same applies for functions: ``` examplefuntion() { if something then do something fi } ``` ### Variables Variables are always written in CAPITAL LETTERS. ``` EXAMPLEVARIABLE=true ``` ================================================ FILE: SLA.md ================================================ This Service Level Agreement (SLA) outlines the terms and conditions under which RustDesk provides email support to its customers. This SLA is designed to ensure a high level of service quality and customer satisfaction. 1. Scope of Support RustDesk offers email support to assist customers with issues related to the installation, configuration, usage, and troubleshooting of RustDesk software. Support is available for the following: - Technical issues and bugs - Feature inquiries - General usage questions Exclusions: - Custom development or scripting - Third-party software or hardware issues - Training or consulting services 2. Support Availability Email support is available 24 hours a day, 7 days a week. However, responses will be provided during standard business hours (Monday to Friday, 9:00 AM to 6:00 PM GMT+7). 3. Response and Resolution Times RustDesk is committed to providing timely responses and resolutions to customer inquiries. The following table outlines our target response and resolution times based on the severity of the issue: | **Severity Level** | **Description** | **Initial Response Time** | **Target Resolution Time** | |---------------------|---------------------------------------------------------------------------------|---------------------------|-----------------------------| | **Critical** | System outage or major functionality failure impacting core operations. | 2 hours | 24 hours | | **High** | Significant performance degradation or partial loss of functionality. | 4 hours | 48 hours | | **Medium** | Minor issues or questions that do not significantly impact functionality. | 8 hours | 5 business days | | **Low** | General inquiries, feature requests, or non-urgent questions. | 24 hours | 10 business days | Note: Resolution times are estimates and may vary depending on the complexity of the issue. RustDesk will provide regular updates if additional time is required. 4. Customer Responsibilities To ensure efficient support, customers are expected to: Provide detailed descriptions of the issue, including error messages, screenshots, and steps to reproduce the problem. Specify the RustDesk version, operating system, and any relevant configuration details. Respond promptly to requests for additional information from the support team. 5. Escalation Process If an issue is not resolved within the target resolution time or requires further attention, customers may escalate the issue by contacting the RustDesk support manager at zhou@rustdesk.com. Escalated issues will be prioritized and addressed by senior support staff. 6. Limitations RustDesk does not guarantee resolution for all issues, particularly those caused by third-party software, hardware, or unsupported configurations. Support is limited to the current and immediately previous versions of RustDesk software. 7. Changes to the SLA RustDesk reserves the right to modify this SLA at any time. Customers will be notified of significant changes via email or through the RustDesk website. 8. Contact Information For email support, please contact: support@rustdesk.com By using RustDesk email support, customers agree to the terms outlined in this SLA. RustDesk Team rustdesk.com support@rustdesk.com ================================================ FILE: convertfromos.sh ================================================ #!/bin/bash # 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 # 3. Setup UFW firewall if available # 4. Create a folder /var/lib/rustdesk-server and copy the certs here # 5. Download and extract RustDesk Pro Services to the above folder # 6. Create systemd services for hbbs and hbbr # 7. If you choose Domain, it will install Nginx and Certbot, allowing the API to be available on port 443 (https) and get an SSL certificate over port 80, it is automatically renewed ################################################################################################################## # Install curl and whiptail if needed if [ ! -x "$(command -v curl)" ] || [ ! -x "$(command -v whiptail)" ] then # We need curl to fetch the lib # There are the package managers for different OS: # osInfo[/etc/redhat-release]=yum # osInfo[/etc/arch-release]=pacman # osInfo[/etc/gentoo-release]=emerge # osInfo[/etc/SuSE-release]=zypp # osInfo[/etc/debian_version]=apt-get # osInfo[/etc/alpine-release]=apk NEEDED_DEPS=(curl whiptail) echo "Installing these packages:" "${NEEDED_DEPS[@]}" if [ -x "$(command -v apt-get)" ] then sudo apt-get install "${NEEDED_DEPS[@]}" -y elif [ -x "$(command -v apk)" ] then sudo apk add --no-cache "${NEEDED_DEPS[@]}" elif [ -x "$(command -v dnf)" ] then sudo dnf install "${NEEDED_DEPS[@]}" elif [ -x "$(command -v zypper)" ] then sudo zypper install "${NEEDED_DEPS[@]}" elif [ -x "$(command -v pacman)" ] then sudo pacman -S install "${NEEDED_DEPS[@]}" elif [ -x "$(command -v yum)" ] then sudo yum install "${NEEDED_DEPS[@]}" elif [ -x "$(command -v emerge)" ] then sudo emerge -av "${NEEDED_DEPS[@]}" else echo "FAILED TO INSTALL! Package manager not found. You must manually install:" "${NEEDED_DEPS[@]}" exit 1 fi fi # We need to source directly from the Github repo to be able to use the functions here # shellcheck disable=2034,2059,2164 true SCRIPT_NAME="Install script" export SCRIPT_NAME # shellcheck source=lib.sh source <(curl -sL https://raw.githubusercontent.com/rustdesk/rustdesk-server-pro/main/lib.sh) # see https://github.com/koalaman/shellcheck/wiki/Directive unset SCRIPT_NAME ################################################################################################################## # Check if root root_check # Output debugging info if $DEBUG set if [ "$DEBUG" = "true" ] then identify_os print_text_in_color "$ICyan" "OS: $OS" print_text_in_color "$ICyan" "VER: $VER" print_text_in_color "$ICyan" "UPSTREAM_ID: $UPSTREAM_ID" exit 0 fi # Stop all old services sudo systemctl stop gohttpserver.service sudo systemctl stop rustdesksignal.service sudo systemctl stop rustdeskrelay.service sudo systemctl disable gohttpserver.service sudo systemctl disable rustdesksignal.service sudo systemctl disable rustdeskrelay.service sudo rm -f /etc/systemd/system/gohttpserver.service sudo rm -f /etc/systemd/system/rustdesksignal.service sudo rm -f /etc/systemd/system/rustdeskrelay.service # Install Rustdesk again # It won't install RustDesk again since there's a check in the install script which checks for the installation folder, but services and everything else will be created # Would it be possible to move L93-98 after the installation? if ! curl -fSLO --retry 3 https://raw.githubusercontent.com/rustdesk/rustdesk-server-pro/main/install.sh then msg_box "Sorry, we couldn't fetch the install script, please try again. Your old installation still lives in /opt/rustdesk" exit else if sudo bash -x install.sh then rm -f install.sh # Migration tasks if [ -d /opt/rustdesk ] then # First remove the keys generated by the installation script rm -f "$RUSTDESK_INSTALL_DIR"/id_* # Then copy over the old keys to the new install dir if cp -f /opt/rustdesk/id_* "$RUSTDESK_INSTALL_DIR/" then # Make sure to really protect the old keys by checking that the new service actually restarts with 0 status before removing the old keys. if systemctl restart rustdesk-hbbr.service && systemctl restart rustdesk-hbbs.service then rm -rf /opt/rustdesk else msg_box "Sorry, couldn't restart the new services. Please send your output to https://github.com/rustdesk/rustdesk-server-pro in a new issue." fi else msg_box "Sorry, but it seems that something went wrong with copying your old keys to the new install dir. Please try again" exit 1 fi fi msg_box "Conversion from OS seems to have been OK!" else msg_box "Sorry, but something seems to have gone wrong, please report this to: https://github.com/rustdesk/rustdesk-server-pro/" fi fi ================================================ FILE: install.sh ================================================ #!/bin/bash # This script will do the following to install RustDesk Server Pro # 1. Install some dependencies # 2. Setup UFW firewall if available # 3. Create 2 folders /var/lib/rustdesk-server and /var/log/rustdesk-server ("$RUSTDESK_INSTALL_DIR" and "$RUSTDESK_LOG_DIR") # 4. Download and extract RustDesk Pro Services to the above folder # 5. Create systemd services for hbbs and hbbr # 6. If you choose Domain, it will install Nginx and Certbot, allowing the API to be available on port 443 (https) and get an SSL certificate over port 80, it is automatically renewed # Please note; even if the script is run as root, you will still be able to choose a non-root user during setup. ################################################################################################################## TLS="" if command -v ldconfig &> /dev/null; then if ldconfig -p | grep -q "libssl.so.3"; then TLS="-nativetls" fi fi # Install curl and whiptail if needed if [ ! -x "$(command -v curl)" ] || [ ! -x "$(command -v whiptail)" ] then # We need curl to fetch the lib # There are the package managers for different OS: # osInfo[/etc/redhat-release]=yum # osInfo[/etc/arch-release]=pacman # osInfo[/etc/gentoo-release]=emerge # osInfo[/etc/SuSE-release]=zypp # osInfo[/etc/debian_version]=apt-get # osInfo[/etc/alpine-release]=apk NEEDED_DEPS=(curl whiptail) echo "Installing these packages:" "${NEEDED_DEPS[@]}" if [ -x "$(command -v apt-get)" ] then sudo apt-get install "${NEEDED_DEPS[@]}" -y elif [ -x "$(command -v apk)" ] then sudo apk add --no-cache "${NEEDED_DEPS[@]}" elif [ -x "$(command -v dnf)" ] then sudo dnf install "${NEEDED_DEPS[@]}" elif [ -x "$(command -v zypper)" ] then sudo zypper install "${NEEDED_DEPS[@]}" elif [ -x "$(command -v pacman)" ] then sudo pacman -S install "${NEEDED_DEPS[@]}" elif [ -x "$(command -v yum)" ] then sudo yum install "${NEEDED_DEPS[@]}" elif [ -x "$(command -v emerge)" ] then sudo emerge -av "${NEEDED_DEPS[@]}" else echo "FAILED TO INSTALL! Package manager not found. You must manually install:" "${NEEDED_DEPS[@]}" exit 1 fi fi # We need to source directly from the Github repo to be able to use the functions here # shellcheck disable=2034,2059,2164 true SCRIPT_NAME="Install script" export SCRIPT_NAME # shellcheck source=lib.sh source <(curl -sL https://raw.githubusercontent.com/rustdesk/rustdesk-server-pro/main/lib.sh) # see https://github.com/koalaman/shellcheck/wiki/Directive unset SCRIPT_NAME ################################################################################################################## # Check if root root_check # Output debugging info if $DEBUG set if [ "$DEBUG" = "true" ] then identify_os print_text_in_color "$ICyan" "OS: $OS" print_text_in_color "$ICyan" "VER: $VER" print_text_in_color "$ICyan" "UPSTREAM_ID: $UPSTREAM_ID" exit 0 fi # We need the WAN IP get_wanip4 # Automatic restart of services while installing # Restart mode: (l)ist only, (i)nteractive or (a)utomatically. if [ ! -f /etc/needrestart/needrestart.conf ] then install_linux_package needrestart if ! grep -rq "{restart} = 'a'" /etc/needrestart/needrestart.conf then # Restart mode: (l)ist only, (i)nteractive or (a)utomatically. sed -i "s|#\$nrconf{restart} =.*|\$nrconf{restart} = 'a'\;|g" /etc/needrestart/needrestart.conf fi fi # Select user for installation msg_box "Rustdesk can be installed as an unprivileged user, but we need root for everything else. Running with an unprivileged user enhances security, and is recommended." if yesno_box_yes "Do you want to use an unprivileged user for Rustdesk?" then while : do RUSTDESK_USER=$(input_box_flow "Please enter the name of your non-root user:") if ! id "$RUSTDESK_USER" then msg_box "We couldn't find $RUSTDESK_USER on the system, are you sure it's correct? Please try again." else break fi done run_as_non_root_user() { sudo -u "$RUSTDESK_USER" "$@"; } fi # Install needed dependencies install_linux_package unzip install_linux_package tar install_linux_package dnsutils install_linux_package ufw if ! install_linux_package bind9-utils then install_linux_package bind-utils fi if ! install_linux_package bind9 then install_linux_package bind fi # Setting up firewall ufw allow 21115:21119/tcp ufw allow 22/tcp ufw allow 21116/udp # Download latest version of RustDesk RDLATEST=$(curl https://api.github.com/repos/rustdesk/rustdesk-server-pro/releases/latest -s | grep "tag_name"| awk '{print substr($2, 2, length($2)-3) }') # Download, extract, and move Rustdesk in place if [ -n "${ARCH}" ] then # If not /var/lib/rustdesk-server/ ($RUSTDESK_INSTALL_DIR) exists we can assume this is a fresh install. If it exists though, we can't move it and it will produce an error if [ ! -d "$RUSTDESK_INSTALL_DIR" ] then print_text_in_color "$IGreen" "Installing RustDesk Server..." # Create dir mkdir -p "$RUSTDESK_INSTALL_DIR" if [ -d "$RUSTDESK_INSTALL_DIR" ] then cd "$RUSTDESK_INSTALL_DIR" else msg_box "It seems like the installation folder wasn't created, we can't continue. Please report this to: https://github.com/rustdesk/rustdesk-server-pro/issues" exit 1 fi # Since the name of the actual tar files differs from the output of uname -m we need to rename acutal download file. # Preferably we would instead rename the download tarballs to the output of uname -m. This would make it possible to run a single $VAR for ARCH. if [ "${ARCH}" = "x86_64" ] then ACTUAL_TAR_NAME=amd64 elif [ "${ARCH}" = "armv7l" ] then ACTUAL_TAR_NAME=armv7 elif [ "${ARCH}" = "aarch64" ] then ACTUAL_TAR_NAME=arm64v8 fi ACTUAL_TAR_NAME=${ACTUAL_TAR_NAME}${TLS} # Download if ! curl -fSLO --retry 3 https://github.com/rustdesk/rustdesk-server-pro/releases/download/"${RDLATEST}"/rustdesk-server-linux-"${ACTUAL_TAR_NAME}".tar.gz then msg_box "Sorry, the installation package failed to download. This might be temporary, so please try to run the installation script again." exit 1 fi # Extract, move in place, and make it executable tar -xf rustdesk-server-linux-"${ACTUAL_TAR_NAME}".tar.gz # Set permissions if [ -n "$RUSTDESK_USER" ] then chown "$RUSTDESK_USER":"$RUSTDESK_USER" -R "$RUSTDESK_INSTALL_DIR" fi # Move as root if RUSTDESK_USER is not set. if [ -n "$RUSTDESK_USER" ] then run_as_non_root_user mv "${ACTUAL_TAR_NAME}"/static "$RUSTDESK_INSTALL_DIR" else mv "${ACTUAL_TAR_NAME}"/static "$RUSTDESK_INSTALL_DIR" fi mv "${ACTUAL_TAR_NAME}"/hbbr /usr/bin/ mv "${ACTUAL_TAR_NAME}"/hbbs /usr/bin/ mv "${ACTUAL_TAR_NAME}"/rustdesk-utils /usr/bin/ rm -rf "$RUSTDESK_INSTALL_DIR"/"${ACTUAL_TAR_NAME:?}" rm -rf rustdesk-server-linux-"${ACTUAL_TAR_NAME}".tar.gz chmod +x /usr/bin/hbbs chmod +x /usr/bin/hbbr chmod +x /usr/bin/rustdesk-utils if [ -n "$RUSTDESK_USER" ] then chown "$RUSTDESK_USER":"$RUSTDESK_USER" -R /usr/bin/hbbr chown "$RUSTDESK_USER":"$RUSTDESK_USER" -R /usr/bin/hbbs chown "$RUSTDESK_USER":"$RUSTDESK_USER" -R /usr/bin/rustdesk-utils fi else print_text_in_color "$IGreen" "Rustdesk server already installed." fi else msg_box "Sorry, we can't figure out your distro, this script will now exit. Please report this to: https://github.com/rustdesk/rustdesk-server-pro/issues" exit 1 fi # Make folder /var/log/rustdesk-server/ if [ ! -d "$RUSTDESK_LOG_DIR" ] then print_text_in_color "$IGreen" "Creating $RUSTDESK_LOG_DIR" install -d -m 700 "$RUSTDESK_LOG_DIR" # Set permissions if [ -n "$RUSTDESK_USER" ] then chown -R "$RUSTDESK_USER":"$RUSTDESK_USER" "$RUSTDESK_LOG_DIR" fi fi # Setup systemd to launch hbbs if [ ! -f "/etc/systemd/system/rustdesk-hbbs.service" ] then touch "/etc/systemd/system/rustdesk-hbbs.service" if [ -n "$RUSTDESK_USER" ] then cat << HBBS_RUSTDESK_SERVICE > "/etc/systemd/system/rustdesk-hbbs.service" [Unit] Description=RustDesk Signal Server [Service] Type=simple LimitNOFILE=1000000 ExecStart=/usr/bin/hbbs WorkingDirectory=$RUSTDESK_INSTALL_DIR User=${RUSTDESK_USER} Group=${RUSTDESK_USER} Restart=always StandardOutput=append:$RUSTDESK_LOG_DIR/hbbs.log StandardError=append:$RUSTDESK_LOG_DIR/hbbs.error # Restart service after 10 seconds if node service crashes RestartSec=10 [Install] WantedBy=multi-user.target HBBS_RUSTDESK_SERVICE else cat << HBBS_RUSTDESK_SERVICE > "/etc/systemd/system/rustdesk-hbbs.service" [Unit] Description=RustDesk Signal Server [Service] Type=simple LimitNOFILE=1000000 ExecStart=/usr/bin/hbbs WorkingDirectory=$RUSTDESK_INSTALL_DIR User=root Group=root Restart=always StandardOutput=append:$RUSTDESK_LOG_DIR/hbbs.log StandardError=append:$RUSTDESK_LOG_DIR/hbbs.error # Restart service after 10 seconds if node service crashes RestartSec=10 [Install] WantedBy=multi-user.target HBBS_RUSTDESK_SERVICE fi fi # Setup systemd to launch hbbr if [ ! -f "/etc/systemd/system/rustdesk-hbbr.service" ] then touch "/etc/systemd/system/rustdesk-hbbr.service" if [ -n "$RUSTDESK_USER" ] then cat << HBBR_RUSTDESK_SERVICE > "/etc/systemd/system/rustdesk-hbbr.service" [Unit] Description=RustDesk Relay Server [Service] Type=simple LimitNOFILE=1000000 ExecStart=/usr/bin/hbbr WorkingDirectory=$RUSTDESK_INSTALL_DIR User=${RUSTDESK_USER} Group=${RUSTDESK_USER} Restart=always StandardOutput=append:$RUSTDESK_LOG_DIR/hbbr.log StandardError=append:$RUSTDESK_LOG_DIR/hbbr.error # Restart service after 10 seconds if node service crashes RestartSec=10 [Install] WantedBy=multi-user.target HBBR_RUSTDESK_SERVICE else cat << HBBR_RUSTDESK_SERVICE > "/etc/systemd/system/rustdesk-hbbr.service" [Unit] Description=RustDesk Relay Server [Service] Type=simple LimitNOFILE=1000000 ExecStart=/usr/bin/hbbr WorkingDirectory=$RUSTDESK_INSTALL_DIR User=root Group=root Restart=always StandardOutput=append:$RUSTDESK_LOG_DIR/hbbr.log StandardError=append:$RUSTDESK_LOG_DIR/hbbr.error # Restart service after 10 seconds if node service crashes RestartSec=10 [Install] WantedBy=multi-user.target HBBR_RUSTDESK_SERVICE fi fi # Enable services # HBBR systemctl enable rustdesk-hbbr.service systemctl start rustdesk-hbbr.service # HBBS systemctl enable rustdesk-hbbs.service systemctl start rustdesk-hbbs.service while : do if ! systemctl status rustdesk-hbbr.service | grep "Active: active (running)" then sleep 2 print_text_in_color "$ICyan" "Waiting for RustDesk Relay service to become active..." else break fi done while : do PUBKEYNAME=$(find "$RUSTDESK_INSTALL_DIR" -name "*.pub") if [ -z "$PUBKEYNAME" ] then print_text_in_color "$ICyan" "Checking if public key is generated..." sleep 5 else print_text_in_color "$IGreen" "Public key path: $PUBKEYNAME" PUBLICKEY=$(cat "$PUBKEYNAME") break fi done choice=$(whiptail --title "Rustdesk installation script" --menu \ "Choose your preferred option, IP or DNS/Domain: IP = You don't want to set up TLS DNS = Setup RustDesk with TLS based on NGINX and free TLS certificates of letsencrypt $MENU_GUIDE\n\n$RUN_LATER_GUIDE" "$WT_HEIGHT" "$WT_WIDTH" 4 \ "IP" "($WANIP4)" \ "DNS" "(e.g. rustdesk.example.com)" 3>&1 1>&2 2>&3) case "$choice" in "DNS") # Enter domain while : do RUSTDESK_DOMAIN=$(input_box_flow "Please enter your domain, e.g. rustdesk.example.com") DIG=$(dig +short "${RUSTDESK_DOMAIN}" @8.8.8.8) if ! [[ "$RUSTDESK_DOMAIN" =~ ^[a-zA-Z0-9]+([a-zA-Z0-9.-]*[a-zA-Z0-9]+)?$ ]] then msg_box "$RUSTDESK_DOMAIN is an invalid domain/DNS address! Please try again." else break fi done # Check if DNS are forwarded correctly if dig +short "$RUSTDESK_DOMAIN" @8.8.8.8 | grep -q "$WANIP4" then print_text_in_color "$IGreen" "DNS seems correct when checking with dig!" else msg_box "DNS lookup failed with dig. The external IP ($WANIP4) \ address of this server is not the same as the A-record ($DIG). Please check your DNS settings! Maybe the domain hasn't propagated? Please check https://www.whatsmydns.net/#A/${RUSTDESK_DOMAIN} if the IP seems correct." exit 1 fi # Install packages print_text_in_color "$IGreen" "Installing Nginx and Cerbot..." if yesno_box_yes "We use Certbot to generate the free TLS certificate from Let's Encrypt. The default behavior of installing Certbot is to use the snap package which auto updates, and provides the latest version of Certbot. If you don't like snap packages, you can opt out now and we'll use regular (old) deb packages instead. Do you want to install Certbot with snap? (recommended)" then install_linux_package nginx if ! install_linux_package snapd then print_text_in_color "$IRed" "Sorry, snapd wasn't found on your system, using 'python3-certbot-nginx' instead." install_linux_package python3-certbot-nginx else snap install certbot --classic fi else install_linux_package nginx install_linux_package python3-certbot-nginx fi # Add Nginx config if [ -d "/etc/nginx/sites-available" ] && [ -d "/etc/nginx/sites-enabled" ] then SITES_CONF_DIR="sites-available" elif [ -d "/etc/nginx/conf.d" ] then SITES_CONF_DIR="conf.d" else msg_box "Couldn't find the Nginx config directory. Please check your system!" exit 1 fi if [ ! -f "/etc/nginx/$SITES_CONF_DIR/rustdesk.conf" ] then touch "/etc/nginx/$SITES_CONF_DIR/rustdesk.conf" cat << NGINX_RUSTDESK_CONF > "/etc/nginx/$SITES_CONF_DIR/rustdesk.conf" server { server_name ${RUSTDESK_DOMAIN}; location / { proxy_set_header X-Real-IP \$remote_addr; proxy_set_header X-Forwarded-For \$proxy_add_x_forwarded_for; proxy_pass http://127.0.0.1:21114/; } } NGINX_RUSTDESK_CONF fi # Enable the Nginx config file if [ "$SITES_CONF_DIR" = "sites-available" ] && [ ! -f /etc/nginx/sites-enabled/rustdesk.conf ] then ln -s /etc/nginx/sites-available/rustdesk.conf /etc/nginx/sites-enabled/rustdesk.conf fi # Enable firewall rules for the domain ufw allow 80/tcp ufw allow 443/tcp ufw --force enable ufw --force reload # Generate the certifictae if ! certbot --nginx --cert-name "${RUSTDESK_DOMAIN}" --key-type ecdsa --renew-by-default --no-eff-email --agree-tos --server https://acme-v02.api.letsencrypt.org/directory -d "${RUSTDESK_DOMAIN}" then msg_box "Sorry, the TLS certificate for $RUSTDESK_DOMAIN failed to generate! Please check that port 80/443 are correctly port forwarded, and that the DNS record points to this servers IP. Please try again." exit fi ;; "IP") ufw allow 21114/tcp ufw --force enable ufw --force reload ;; *) ;; esac # Display final info! if [ -n "$RUSTDESK_DOMAIN" ] then msg_box " Your Public Key is: $PUBLICKEY Your DNS Address is: $RUSTDESK_DOMAIN Please login at https://$RUSTDESK_DOMAIN Default User/Pass: admin/test1234" else msg_box " Your Public Key is: $PUBLICKEY Your IP Address is: $WANIP4 Please login at http://$WANIP4:21114 Default User/Pass: admin/test1234" fi print_text_in_color "$IGreen" "Cleaning up..." rm -f rustdesk-server-linux-"${ACTUAL_TAR_NAME}".zip rm -rf "${ACTUAL_TAR_NAME}" ================================================ FILE: lib.sh ================================================ #!/bin/bash # shellcheck disable=SC2034 true # see https://github.com/koalaman/shellcheck/wiki/Directive ############ Variables # PATH & DIR RUSTDESK_INSTALL_DIR=/var/lib/rustdesk-server RUSTDESK_LOG_DIR=/var/log/rustdesk-server # OS ARCH=$(uname -m) get_wanip4() { WANIP4=$(curl -s -k -m 5 -4 https://api64.ipify.org) } # Whiptail menus TITLE="RustDesk - $(date +%Y)" [ -n "$SCRIPT_NAME" ] && TITLE+=" - $SCRIPT_NAME" CHECKLIST_GUIDE="Navigate with the [ARROW] keys and (de)select with the [SPACE] key. \ Confirm by pressing [ENTER]. Cancel by pressing [ESC]." MENU_GUIDE="Navigate with the [ARROW] keys and confirm by pressing [ENTER]. Cancel by pressing [ESC]." ############ Functions is_root() { if [[ "$EUID" -ne 0 ]] then return 1 else return 0 fi } root_check() { if ! is_root then msg_box "Sorry, you are not root. You now have two options: 1. Use SUDO directly: a) :~$ sudo bash name-of-script.sh 2. Become ROOT and then type your command: a) :~$ sudo -i b) :~# bash name-of-script.sh More information can be found here: https://unix.stackexchange.com/a/3064" exit 1 fi } print_text_in_color() { printf "%b%s%b\n" "$1" "$2" "$Color_Off" } msg_box() { [ -n "$2" ] && local SUBTITLE=" - $2" whiptail --title "$TITLE$SUBTITLE" --msgbox "$1" "$WT_HEIGHT" "$WT_WIDTH" 3>&1 1>&2 2>&3 } yesno_box_yes() { [ -n "$2" ] && local SUBTITLE=" - $2" if (whiptail --title "$TITLE$SUBTITLE" --yesno "$1" "$WT_HEIGHT" "$WT_WIDTH" 3>&1 1>&2 2>&3) then return 0 else return 1 fi } yesno_box_no() { [ -n "$2" ] && local SUBTITLE=" - $2" if (whiptail --title "$TITLE$SUBTITLE" --defaultno --yesno "$1" "$WT_HEIGHT" "$WT_WIDTH" 3>&1 1>&2 2>&3) then return 0 else return 1 fi } input_box() { [ -n "$2" ] && local SUBTITLE=" - $2" local RESULT && RESULT=$(whiptail --title "$TITLE$SUBTITLE" --nocancel --inputbox "$1" "$WT_HEIGHT" "$WT_WIDTH" 3>&1 1>&2 2>&3) echo "$RESULT" } input_box_flow() { local RESULT while : do RESULT=$(input_box "$1" "$2") if [ -z "$RESULT" ] then msg_box "Input is empty, please try again." "$2" elif ! yesno_box_yes "Is this correct? $RESULT" "$2" then msg_box "OK, please try again." "$2" else break fi done echo "$RESULT" } identify_os() { if [ -f /etc/os-release ] then # freedesktop.org and systemd # shellcheck source=/dev/null source /etc/os-release OS=$NAME VER=$VERSION_ID UPSTREAM_ID=${ID_LIKE,,} # Fallback to ID_LIKE if ID was not 'ubuntu' or 'debian' if [ "${UPSTREAM_ID}" != "debian" ] && [ "${UPSTREAM_ID}" != "ubuntu" ] then UPSTREAM_ID="$(echo "${ID_LIKE,,}" | sed s/\"//g | cut -d' ' -f1)" fi elif type lsb_release >/dev/null 2>&1 then # linuxbase.org OS=$(lsb_release -si) VER=$(lsb_release -sr) elif [ -f /etc/lsb-release ] then # For some versions of Debian/Ubuntu without lsb_release command # shellcheck source=/dev/null source /etc/os-release OS=$DISTRIB_ID VER=$DISTRIB_RELEASE elif [ -f /etc/debian_version ] then # Older Debian, Ubuntu, etc. OS=Debian VER=$(cat /etc/debian_version) elif [ -f /etc/SuSE-release ] then # Older SuSE, etc. OS=SuSE VER=$(cat /etc/SuSE-release) elif [ -f /etc/redhat-release ] then # Older Red Hat, CentOS, etc. OS=RedHat VER=$(cat /etc/redhat-release) else # Fall back to uname, e.g. "Linux ", also works for BSD, etc. OS=$(uname -s) VER=$(uname -r) fi } install_linux_package() { # Install based on OS # osInfo[/etc/redhat-release]=yum # osInfo[/etc/arch-release]=pacman # osInfo[/etc/gentoo-release]=emerge # osInfo[/etc/SuSE-release]=zypp # osInfo[/etc/debian_version]=apt-get # osInfo[/etc/alpine-release]=apk print_text_in_color "$IGreen" "Installing ${1}..." if [ -x "$(command -v apt-get)" ] then sudo apt-get install "${1}" -y elif [ -x "$(command -v apk)" ] then sudo apk add --no-cache "${1}" elif [ -x "$(command -v dnf)" ] then sudo dnf install "${1}" elif [ -x "$(command -v zypper)" ] then sudo zypper install "${1}" elif [ -x "$(command -v pacman)" ] then sudo pacman -S install "${1}" elif [ -x "$(command -v yum)" ] then sudo yum install "${1}" elif [ -x "$(command -v emerge)" ] then sudo emerge -av "${1}" else print_text_in_color "$IRed" "FAILED TO INSTALL ${1}! Package manager not found: Your OS is currently unsupported." fi } purge_linux_package() { if [ -x "$(command -v apt-get)" ] then sudo apt-get purge --autoremove -y "${1}" elif [ -x "$(command -v apk)" ] then sudo apk del "${1}" elif [ -x "$(command -v dnf)" ] then sudo dnf purge "${1}" elif [ -x "$(command -v zypper)" ] then sudo zypper remove "${1}" elif [ -x "$(command -v pacman)" ] then sudo pacman -Rs "${1}" elif [ -x "$(command -v yum)" ] then sudo yum remove "${1}" elif [ -x "$(command -v emerge)" ] then sudo emerge -Cv "${1}" else print_text_in_color "$IRed" "FAILED TO REMOVE ${1}! Package manager not found: Your OS is currently unsupported." fi } ## bash colors # Reset Color_Off='\e[0m' # Text Reset # Regular Colors Black='\e[0;30m' # Black Red='\e[0;31m' # Red Green='\e[0;32m' # Green Yellow='\e[0;33m' # Yellow Blue='\e[0;34m' # Blue Purple='\e[0;35m' # Purple Cyan='\e[0;36m' # Cyan White='\e[0;37m' # White # Bold BBlack='\e[1;30m' # Black BRed='\e[1;31m' # Red BGreen='\e[1;32m' # Green BYellow='\e[1;33m' # Yellow BBlue='\e[1;34m' # Blue BPurple='\e[1;35m' # Purple BCyan='\e[1;36m' # Cyan BWhite='\e[1;37m' # White # Underline UBlack='\e[4;30m' # Black URed='\e[4;31m' # Red UGreen='\e[4;32m' # Green UYellow='\e[4;33m' # Yellow UBlue='\e[4;34m' # Blue UPurple='\e[4;35m' # Purple UCyan='\e[4;36m' # Cyan UWhite='\e[4;37m' # White # Background On_Black='\e[40m' # Black On_Red='\e[41m' # Red On_Green='\e[42m' # Green On_Yellow='\e[43m' # Yellow On_Blue='\e[44m' # Blue On_Purple='\e[45m' # Purple On_Cyan='\e[46m' # Cyan On_White='\e[47m' # White # High Intensity IBlack='\e[0;90m' # Black IRed='\e[0;91m' # Red IGreen='\e[0;92m' # Green IYellow='\e[0;93m' # Yellow IBlue='\e[0;94m' # Blue IPurple='\e[0;95m' # Purple ICyan='\e[0;96m' # Cyan IWhite='\e[0;97m' # White # Bold High Intensity BIBlack='\e[1;90m' # Black BIRed='\e[1;91m' # Red BIGreen='\e[1;92m' # Green BIYellow='\e[1;93m' # Yellow BIBlue='\e[1;94m' # Blue BIPurple='\e[1;95m' # Purple BICyan='\e[1;96m' # Cyan BIWhite='\e[1;97m' # White # High Intensity backgrounds On_IBlack='\e[0;100m' # Black On_IRed='\e[0;101m' # Red On_IGreen='\e[0;102m' # Green On_IYellow='\e[0;103m' # Yellow On_IBlue='\e[0;104m' # Blue On_IPurple='\e[0;105m' # Purple On_ICyan='\e[0;106m' # Cyan On_IWhite='\e[0;107m' # White ================================================ FILE: terms ================================================ Purslane Limited Software License Agreement IMPORTANT: PLEASE READ THIS SOFTWARE LICENSE AGREEMENT ("LICENSE AGREEMENT") CAREFULLY BEFORE USING THE RustDesk Server Pro SOFTWARE. BY USING THE SOFTWARE, YOU (EITHER AN INDIVIDUAL OR A SINGLE ENTITY) AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE AGREEMENT. IF YOU DO NOT AGREE TO THE TERMS OF THIS LICENSE AGREEMENT, DO NOT USE THE SOFTWARE. 1. License Grant: Subject to the terms and conditions of this License Agreement, Purslane Limited ("Licensor") grants you a non-exclusive, non-transferable license to use the RustDesk Server Pro software ("Software") for your internal business purposes. This license is granted on a per-server (per-machine) basis. 2 License Restrictions: a) You shall not copy, modify, distribute, sell, lease, sublicense, or transfer the Software or any portion thereof. b) You shall not reverse engineer, decompile, or disassemble the Software, except to the extent expressly permitted by applicable law. c) You shall not remove or alter any proprietary notices or labels on the Software. 3. License Key: a) Purslane Limited will provide you with a unique license key ("License Key") to activate the Software on a specific server (machine). b) You agree that the License Key provided to you by Purslane Limited will be used exclusively on the designated server (machine) and will not be shared, transferred, or used on any other server (machine) without explicit written permission from Purslane Limited. c) Reselling license and custom client are not allowed. 4. Term and Billing: a) The license term for the Software shall be one (1) year, starting from the date of purchase. b) You agree to pay the annual license fee as specified by Licensor. Failure to make timely payments may result in suspension or termination of the license. 5. Maintenance and Support: a) Support is offered via email. b) During the license term, Licensor may provide maintenance and support services for the Software as separately agreed upon or specified in a separate support agreement. c) Licensor reserves the right to modify or enhance the support services at its sole discretion. 6. Intellectual Property: a) You acknowledge that the Software and any accompanying documentation are protected by intellectual property laws and treaties. b) You agree not to remove or alter any copyright, trademark, or other proprietary rights notices contained in or on the Software. 7. Disclaimer of Warranty: THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. LICENSOR DISCLAIMS ALL WARRANTIES, WHETHER EXPRESS, IMPLIED, OR STATUTORY, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. 8. Limitation of Liability: IN NO EVENT SHALL LICENSOR BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, CONSEQUENTIAL, OR PUNITIVE DAMAGES ARISING OUT OF OR RELATED TO THIS LICENSE AGREEMENT OR THE USE OF THE SOFTWARE, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 9. Termination: This License Agreement is effective until terminated. Licensor may terminate this License Agreement immediately upon notice to you if you breach any of the terms and conditions. Upon termination, you must cease all use of the Software and destroy all copies in your possession. 10. Governing Law: This License Agreement shall be governed by and construed in accordance with the laws of The Cayman Islands. Any legal action or proceeding arising under this License Agreement shall be brought exclusively in the courts of The Cayman Islands. 11. Entire Agreement: This License Agreement shall be governed by and construed in accordance with the laws of the Cayman Islands. Any legal action or proceeding arising under this License Agreement shall be brought exclusively in the courts of the Cayman Islands. By using the RustDesk Server Pro software, you acknowledge that you have read and understood this License Agreement and agree to be bound by its terms and conditions. ================================================ FILE: uninstall.sh ================================================ #!/bin/bash ################################################################################################################## # Install curl and whiptail if needed if [ ! -x "$(command -v curl)" ] || [ ! -x "$(command -v whiptail)" ] then # We need curl to fetch the lib # There are the package managers for different OS: # osInfo[/etc/redhat-release]=yum # osInfo[/etc/arch-release]=pacman # osInfo[/etc/gentoo-release]=emerge # osInfo[/etc/SuSE-release]=zypp # osInfo[/etc/debian_version]=apt-get # osInfo[/etc/alpine-release]=apk NEEDED_DEPS=(curl whiptail) echo "Installing" "${NEEDED_DEPS[@]}" if [ -x "$(command -v apt-get)" ] then sudo apt-get install "${NEEDED_DEPS[@]}" -y elif [ -x "$(command -v apk)" ] then sudo apk add --no-cache "${NEEDED_DEPS[@]}" elif [ -x "$(command -v dnf)" ] then sudo dnf install "${NEEDED_DEPS[@]}" elif [ -x "$(command -v zypper)" ] then sudo zypper install "${NEEDED_DEPS[@]}" elif [ -x "$(command -v pacman)" ] then sudo pacman -S install "${NEEDED_DEPS[@]}" elif [ -x "$(command -v yum)" ] then sudo yum install "${NEEDED_DEPS[@]}" elif [ -x "$(command -v emerge)" ] then sudo emerge -av "${NEEDED_DEPS[@]}" else echo "FAILED TO INSTALL! Package manager not found. You must manually install:" "${NEEDED_DEPS[@]}" exit 1 fi fi # We need to source directly from the Github repo to be able to use the functions here # shellcheck disable=2034,2059,2164 true SCRIPT_NAME="Uninstall script" export SCRIPT_NAME # shellcheck source=lib.sh source <(curl -sL https://raw.githubusercontent.com/rustdesk/rustdesk-server-pro/main/lib.sh) # see https://github.com/koalaman/shellcheck/wiki/Directive unset SCRIPT_NAME ################################################################################################################## # Check if root root_check # Output debugging info if $DEBUG set if [ "$DEBUG" = "true" ] then identify_os print_text_in_color "$ICyan" "OS: $OS" print_text_in_color "$ICyan" "VER: $VER" print_text_in_color "$ICyan" "UPSTREAM_ID: $UPSTREAM_ID" exit 0 fi # Switch for Certbot if [ -d /etc/letsencrypt ] then CERTBOT_SWITCH=ON else CERTBOT_SWITCH=OFF fi # Uninstall Rustdesk Menu choice=$(whiptail --title "$TITLE" --checklist \ "Please choose what to uninstall:\n\n $CHECKLIST_GUIDE\n\n$RUN_LATER_GUIDE" "$WT_HEIGHT" "$WT_WIDTH" 4 \ "certbot" "(Everything related to Let's Encrypt)" "$CERTBOT_SWITCH" \ "rustdesk-logs" "(RustDesk LOG dir)" ON \ "rustdesk-server" "(RustDesk SERVER + RustDesk services)" ON \ "nginx-rustdesk" "(RustDesk Nginx config)" OFF \ "nginx" "(Linux webserver package + ALL configs)" ON \ "ufw" "(Linux firewall package + RustDesk rules)" ON \ "whiptail" "(Linux menu package)" ON \ "curl" "(Linux package)" OFF \ "wget" "(Linux package)" OFF \ "unzip" "(Linux package)" OFF \ "dnsutils" "(Linux package)" ON \ "bind-utils" "(Linux package)" ON \ "bind" "(Linux package)" ON 3>&1 1>&2 2>&3) case "$choice" in *"nginx-rustdesk"*) REMOVE_NGINX_CONF="yes" ;;& *"nginx"*) REMOVE_NGINX_ALL="yes" ;;& *"wget"*) REMOVE_WGET="yes" ;;& *"whiptail"*) REMOVE_WHIPTAIL="yes" ;;& *"unzip"*) REMOVE_UNZIP="yes" ;;& *"dnsutils"*) REMOVE_DNSUTILS="yes" ;;& *"bind-utils"*) REMOVE_BIND_UTILS="yes" ;;& *"bind"*) REMOVE_BIND="yes" ;;& *"ufw"*) REMOVE_UFW="yes" ;;& *"rustdesk-logs"*) REMOVE_RUSTDESK_LOG="yes" ;;& *"rustdesk-server"*) REMOVE_RUSTDESK_SERVER="yes" ;;& *"curl"*) REMOVE_CURL="yes" ;;& *"certbot"*) REMOVE_CERTBOT="yes" ;;& *) ;; esac msg_box "WARNING WARNING WARNING This script will remove EVERYTHING that was chosen in the previous selection. You can choose to opt out after you hit OK." if ! yesno_box_no "Are you REALLY sure you want to continue with the uninstallation?" then exit 0 fi if [ -n "$UFW" ] then # Deleting UFW rules ufw delete allow 21115:21119/tcp # ufw delete 22/tcp # If connected to a remote VPS, this deletion will make the connection go down ufw delete allow 21116/udp if [ -f "/etc/nginx/sites-available/rustdesk.conf" ] || [ -f "/etc/nginx/conf.d/rustdesk.conf" ] then ufw delete allow 80/tcp ufw delete allow 443/tcp else ufw delete allow 21114/tcp fi ufw --force disable ufw --force reload fi # Rustdesk Server if [ -n "$REMOVE_RUSTDESK_SERVER" ] then # Rustdesk installation dir print_text_in_color "$IGreen" "Removing RustDesk Server..." rm -rf "$RUSTDESK_INSTALL_DIR" rm -rf /usr/bin/hbbs rm -rf /usr/bin/hbbr # systemctl services # HBBS systemctl disable rustdesk-hbbs.service systemctl stop rustdesk-hbbs.service rm -f "/etc/systemd/system/rustdesk-hbbs.service" # HBBR systemctl disable rustdesk-hbbr.service systemctl stop rustdesk-hbbr.service rm -f "/etc/systemd/system/rustdesk-hbbr.service" # daemon-reload systemctl daemon-reload fi # Rustdesk LOG if [ -n "$REMOVE_RUSTDESK_LOG" ] then # Rustdesk LOG dir rm -rf "$RUSTDESK_LOG_DIR" fi # Certbot if [ -n "$REMOVE_CERTBOT" ] then if snap list | grep -q certbot > /dev/null then purge_linux_package snap snap remove certbot else purge_linux_package python3-certbot-nginx -y fi # Also remove the actual certs rm -rf /etc/letsencrypt fi # Nginx if [ -n "$REMOVE_NGINX_CONF" ] then rm -f "/etc/nginx/sites-available/rustdesk.conf" rm -f "/etc/nginx/sites-enabled/rustdesk.conf" rm -f "/etc/nginx/conf.d/rustdesk.conf" service nginx restart elif [ -n "$REMOVE_NGINX_ALL" ] then purge_linux_package nginx rm -rf "/etc/nginx" fi # The rest if [ -n "$REMOVE_CURL" ] then purge_linux_package curl fi if [ -n "$REMOVE_WGET" ] then purge_linux_package wget fi if [ -n "$REMOVE_UNZIP" ] then purge_linux_package unzip fi if [ -n "$REMOVE_DNSUTILS" ] then purge_linux_package dnsutils fi if [ -n "$REMOVE_BIND_UTILS" ] then purge_linux_package bind-utils fi if [ -n "$REMOVE_BIND" ] then purge_linux_package bind fi if [ -n "$REMOVE_UFW" ] then purge_linux_package ufw fi msg_box "Uninstallation complete! Please hit OK to remove the last package." if [ -n "$REMOVE_WHIPTAIL" ] then purge_linux_package whiptail fi ================================================ FILE: update.sh ================================================ #!/bin/bash # shellcheck disable=2034,2059,2164 true TLS="" if command -v ldconfig &> /dev/null; then if ldconfig -p | grep -q "libssl.so.3"; then TLS="-nativetls" fi fi # Get username usern=$(whoami) # not used btw ... yet # Get current release version RDLATEST=$(curl https://api.github.com/repos/rustdesk/rustdesk-server-pro/releases/latest -s | grep "tag_name"| awk '{print substr($2, 2, length($2)-3) }') # Below current version caused different strange problem, e.g. https://github.com/rustdesk/rustdesk-server-pro/discussions/687 # RDCURRENT=$(/usr/bin/hbbr --version | sed -r 's/hbbr (.*)/\1/') #if [ $RDLATEST == $RDCURRENT ]; then # echo "Same version, no need to update." # exit 0 #fi sudo systemctl stop rustdesk-hbbs.service sudo systemctl stop rustdesk-hbbr.service sleep 20 ARCH=$(uname -m) # Identify OS if [ -f /etc/os-release ]; then # freedesktop.org and systemd . /etc/os-release OS=$NAME VER=$VERSION_ID UPSTREAM_ID=${ID_LIKE,,} # Fallback to ID_LIKE if ID was not 'ubuntu' or 'debian' if [ "${UPSTREAM_ID}" != "debian" ] && [ "${UPSTREAM_ID}" != "ubuntu" ]; then UPSTREAM_ID="$(echo ${ID_LIKE,,} | sed s/\"//g | cut -d' ' -f1)" fi elif type lsb_release >/dev/null 2>&1; then # linuxbase.org OS=$(lsb_release -si) VER=$(lsb_release -sr) elif [ -f /etc/lsb-release ]; then # For some versions of Debian/Ubuntu without lsb_release command . /etc/lsb-release OS=$DISTRIB_ID VER=$DISTRIB_RELEASE elif [ -f /etc/debian_version ]; then # Older Debian, Ubuntu, etc. OS=Debian VER=$(cat /etc/debian_version) elif [ -f /etc/SuSE-release ]; then # Older SuSE, etc. OS=SuSE VER=$(cat /etc/SuSE-release) elif [ -f /etc/redhat-release ]; then # Older Red Hat, CentOS, etc. OS=RedHat VER=$(cat /etc/redhat-release) else # Fall back to uname, e.g. "Linux ", also works for BSD, etc. OS=$(uname -s) VER=$(uname -r) fi # Output debugging info if $DEBUG set if [ "$DEBUG" = "true" ]; then echo "OS: $OS" echo "VER: $VER" echo "UPSTREAM_ID: $UPSTREAM_ID" exit 0 fi if ! [ -e /var/lib/rustdesk-server/ ]; then echo "No directory /var/lib/rustdesk-server/ found. No update of RustDesk possible (use install.sh script?)" exit 4 else : fi sudo rm -rf /var/lib/rustdesk-server/static/ echo "Upgrading RustDesk Server" if [ "${ARCH}" = "x86_64" ] ; then wget https://github.com/rustdesk/rustdesk-server-pro/releases/download/${RDLATEST}/rustdesk-server-linux-amd64${TLS}.tar.gz tar -xf rustdesk-server-linux-amd64${TLS}.tar.gz sudo mv amd64${TLS}/static /var/lib/rustdesk-server/ sudo mv amd64${TLS}/hbbr /usr/bin/ sudo mv amd64${TLS}/hbbs /usr/bin/ sudo mv amd64${TLS}/rustdesk-utils /usr/bin/ rm -rf amd64${TLS}/ rm -rf rustdesk-server-linux-amd64${TLS}.tar.gz elif [ "${ARCH}" = "armv7l" ] ; then wget "https://github.com/rustdesk/rustdesk-server-pro/releases/download/${RDLATEST}/rustdesk-server-linux-armv7.tar.gz" tar -xf rustdesk-server-linux-armv7.tar.gz sudo mv armv7/static /var/lib/rustdesk-server/ sudo mv armv7/hbbr /usr/bin/ sudo mv armv7/hbbs /usr/bin/ sudo mv armv7/rustdesk-utils /usr/bin/ rm -rf armv7/ rm -rf rustdesk-server-linux-armv7.tar.gz elif [ "${ARCH}" = "aarch64" ] ; then wget "https://github.com/rustdesk/rustdesk-server-pro/releases/download/${RDLATEST}/rustdesk-server-linux-arm64v8${TLS}.tar.gz" tar -xf rustdesk-server-linux-arm64v8${TLS}.tar.gz sudo mv arm64v8${TLS}/static /var/lib/rustdesk-server/ sudo mv arm64v8${TLS}/hbbr /usr/bin/ sudo mv arm64v8${TLS}/hbbs /usr/bin/ sudo mv arm64v8${TLS}/rustdesk-utils /usr/bin/ rm -rf arm64v8${TLS}/ rm -rf rustdesk-server-linux-arm64v8${TLS}.tar.gz fi sudo chmod +x /usr/bin/hbbs sudo chmod +x /usr/bin/hbbr sudo chmod +x /usr/bin/rustdesk-utils sudo systemctl start rustdesk-hbbs.service sudo systemctl start rustdesk-hbbr.service while ! [[ $CHECK_RUSTDESK_READY ]]; do CHECK_RUSTDESK_READY=$(sudo systemctl status rustdesk-hbbr.service | grep "Active: active (running)") echo -ne "RustDesk Relay not ready yet...${NC}\n" sleep 3 done echo -e "Updates are complete"