We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f1a07e commit 035c16eCopy full SHA for 035c16e
not-supported/remotedesktop.sh
@@ -19,19 +19,19 @@ debug_mode
19
# Check if root
20
root_check
21
22
+# Don't run this script as root user, because we will need the account
23
+if [ -z "$UNIXUSER" ]
24
+then
25
+ msg_box "Please don't run this script as pure root user!"
26
+ exit 1
27
+fi
28
+
29
# Check if xrdp is installed
30
if ! is_this_installed xrdp
31
then
32
# Ask for installing
33
install_popup "$SCRIPT_NAME"
34
XRDP_INSTALL=1
-
- # Don't run this script as root user, because we will need the account
- if [ -z "$UNIXUSER" ]
- then
- msg_box "Please don't run this script as pure root user!"
- exit 1
- fi
35
36
# Check if gnome-session is installed
37
if ! is_this_installed gnome-session
0 commit comments