repo.or.cz
/
buildroot-gz.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
python-dataproperty: bump version to 0.17.0
[buildroot-gz.git]
/
package
/
x11r7
/
xapp_xdm
/
S99xdm
blob
a2c0a1de0646ba8d24bcd241d7cbd3a22d431d9c
1
#!/bin/sh
2
3
XDM_BIN
=/
usr
/
bin
/
xdm
4
5
case
"
$1
"
in
6
start
)
7
printf
"Starting XDM: "
8
$XDM_BIN
9
echo
"done"
10
;;
11
stop
)
12
echo
"Stopping XDM"
13
killall
-q
xdm
14
;;
15
restart
)
16
$0
stop
17
$0
start
18
;;
19
*)
20
echo
"Usage:
$0
{start|stop|restart}"
21
exit
1
22
;;
23
esac
24
25
exit
0