slackbuilds_ponce/network/x2goserver/rc.x2goserver
Elvio Basello 26cddc2497 network/x2goserver: Added (X2Go Remote Desktop solution).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2014-09-10 18:13:44 +07:00

26 lines
444 B
Bash

#!/bin/sh
#
# /etc/rc.d/rc.x2goserver
#
# Start/stop/restart the X2Go server.
#
# To make X2Go start automatically at boot, make this
# file executable: chmod 755 /etc/rc.d/rc.x2goserver
case "$1" in
'start')
/usr/sbin/x2gocleansessions
;;
'stop')
killall x2gocleansessions
# Forcibly remove .pid locations:
rm -f /var/run/x2goserver.pid
;;
'restart')
$0 stop
$0 start
;;
*)
echo "Usage: $0 {start|stop|restart}"
;;
esac