buildrootschalter/package/x11r7/xapp_xdm/S99xdm
Yegor Yefremov 72a6bd4b5d xdm: install startup script
install S99xdm to /etc/init.d to start XDM automatically

[Peter: Small cleanups]
Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-12-07 21:31:22 +01:00

26 lines
338 B
Bash

#!/bin/sh
XDM_BIN=/usr/bin/xdm
case "$1" in
start)
echo -n "Starting XDM: "
$XDM_BIN
echo "done"
;;
stop)
echo "Stopping XDM"
killall -q xdm
;;
restart)
$0 stop
$0 start
;;
*)
echo "Usage: $0 {start|stop|restart}"
exit 1
;;
esac
exit 0