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.
93 lines
1.8 KiB
93 lines
1.8 KiB
19 years ago
|
#!/bin/sh
|
||
|
# xrdp control script
|
||
|
# same as xrdp_control.sh except the XRDP_DIR is /usr/lib/xrdp
|
||
|
# Written : 1-13-2006 - Mark Balliet - posicat@pobox.com
|
||
|
|
||
|
XRDP=xrdp
|
||
|
SESMAN=sesman
|
||
|
STARTWM=startwm.sh
|
||
|
XRDP_DIR=/usr/lib/xrdp/
|
||
|
LOG=/dev/null
|
||
|
|
||
|
cd $XRDP_DIR
|
||
|
|
||
|
test -x $XRDP || (echo "$XRDP is not executable" ; exit 0)
|
||
|
test -x $SESMAN || (echo "$SESMAN is not executable" ; exit 0)
|
||
|
test -x $STARTWM || (echo "$STARTWM is not executable" ; exit 0)
|
||
|
|
||
|
xrdp_start () {
|
||
|
echo -n "Starting : xrdp and sesman . . "
|
||
|
./$XRDP >> $LOG
|
||
|
./$SESMAN >> $LOG
|
||
|
echo "."
|
||
|
sleep 1
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
xrdp_stop () {
|
||
|
echo -n "Stopping : xrdp and sesman . . "
|
||
|
./$SESMAN --kill >> $LOG
|
||
|
./$XRDP --kill >> $LOG
|
||
|
echo "."
|
||
|
}
|
||
|
|
||
|
check_up () {
|
||
|
xrdpup=`ps u --noheading -C $XRDP`
|
||
|
sesup=`ps u --noheading -C $SESMAN`
|
||
|
|
||
|
# Cleanup : If sesman isn't running, but the pid exists, erase it.
|
||
|
if [ "$sesup" == "" ]
|
||
|
then
|
||
|
if [ -e /var/run/sesman.pid ] ; then rm /var/run/sesman.pid ; fi
|
||
|
fi
|
||
|
# Cleanup : If xrdp isn't running, but the pid exists, erase it.
|
||
|
if [ "$xrdpup" == "" ]
|
||
|
then
|
||
|
if [ -e /var/run/xrdp.pid ] ; then rm /var/run/xrdp.pid ; fi
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
case "$1" in
|
||
|
start)
|
||
|
check_up
|
||
|
if [ "$xrdpup" != "" ]
|
||
|
then
|
||
|
echo "Xrdp is already loaded"
|
||
|
exit 1
|
||
|
fi
|
||
|
if [ "$sesup" != "" ]
|
||
|
then
|
||
|
echo "sesman is already loaded"
|
||
|
exit 1
|
||
|
fi
|
||
|
xrdp_start
|
||
|
;;
|
||
|
stop)
|
||
|
check_up
|
||
|
if [ "$xrdpup" == "" ]
|
||
|
then
|
||
|
echo "xrdp is not loaded."
|
||
|
fi
|
||
|
if [ "$sesup" == "" ]
|
||
|
then
|
||
|
echo "sesman is not loaded."
|
||
|
fi
|
||
|
xrdp_stop
|
||
|
;;
|
||
|
force-reload|restart)
|
||
|
check_up
|
||
|
echo "Restarting Xrdp ..."
|
||
|
xrdp_stop
|
||
|
while [ "$xrdpup" != "" ]; do
|
||
|
check_up
|
||
|
sleep 1
|
||
|
done
|
||
|
xrdp_start
|
||
|
;;
|
||
|
*)
|
||
|
echo "Usage: xrdp_control.sh {start|stop|restart|force-reload}"
|
||
|
exit 1
|
||
|
esac
|
||
|
|
||
|
exit 0
|