diff options
author | tnut <tnut at nutyx dot org> | 2012-04-03 18:01:11 +0200 |
---|---|---|
committer | tnut <tnut at nutyx dot org> | 2012-04-03 18:01:11 +0200 |
commit | 55ba00459776d78ef447c3c022fd2d5185b1c9ce (patch) | |
tree | 76d0c7299dffa0de9c8b726545b0a94673deb0d8 /xorg-xdm/xdm | |
parent | cd99c50dcdba009792602bada286d9422dbdcee7 (diff) | |
download | nutyx-pakxe-55ba00459776d78ef447c3c022fd2d5185b1c9ce.tar.gz nutyx-pakxe-55ba00459776d78ef447c3c022fd2d5185b1c9ce.tar.bz2 nutyx-pakxe-55ba00459776d78ef447c3c022fd2d5185b1c9ce.tar.xz nutyx-pakxe-55ba00459776d78ef447c3c022fd2d5185b1c9ce.zip |
ajout de xorg
Diffstat (limited to 'xorg-xdm/xdm')
-rwxr-xr-x | xorg-xdm/xdm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/xorg-xdm/xdm b/xorg-xdm/xdm new file mode 100755 index 000000000..60d591a20 --- /dev/null +++ b/xorg-xdm/xdm @@ -0,0 +1,23 @@ +#!/bin/sh +# +# /etc/rc.d/xdm: start/stop xdm +# + +case $1 in +start) + /usr/bin/xdm + ;; +stop) + killall -q /usr/bin/xdm + ;; +restart) + $0 stop + sleep 2 + $0 start + ;; +*) + echo "usage: $0 [start|stop|restart]" + ;; +esac + +# End of file |