Some scripts for RustDesk Server Pro are hosted here.
Find a file
2026-06-30 10:41:12 +08:00
.github/workflows remove non-existing branch 2023-10-02 17:12:10 +02:00
convertfromos.sh be extra careful 2023-10-06 08:18:28 +02:00
install.sh Update install.sh 2025-10-23 21:34:02 +08:00
lib.sh correct bug in lib.sh 2023-10-06 11:00:51 +02:00
README.md correct typo in README 2023-10-07 18:50:45 +02:00
SLA.md Update SLA.md 2025-02-12 18:58:35 +08:00
terms Update terms 2026-06-30 10:41:12 +08:00
uninstall.sh uninstall /etc/nginx/conf.d/rustdesk.conf 2023-11-28 09:08:55 +08:00
update.sh Update update.sh 2025-11-28 18:19:18 +08:00

RustDesk Server PRO

Here we have a small collection of some scripts for RustDesk Server Pro.

If you are looking for the open source version please go to 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