You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
446 B
19 lines
446 B
#!/bin/bash
|
|
|
|
X11DIR=/opt/X11rdp
|
|
|
|
# make the /usr/bin/X11rdp symbolic link if it doesn't exist...
|
|
if [ ! -e /usr/bin/X11rdp ]
|
|
then
|
|
if [ -e $X11DIR/bin/X11rdp ]
|
|
then
|
|
ln -s $X11DIR/bin/X11rdp /usr/bin/X11rdp
|
|
else
|
|
clear
|
|
echo "There was a problem... the $X11DIR/bin/X11rdp binary could not be found. Did the compilation complete?"
|
|
echo "Stopped. Please investigate what went wrong."
|
|
exit
|
|
fi
|
|
fi
|
|
|