summaryrefslogtreecommitdiff
path: root/recipes-lxde/lxdm
diff options
context:
space:
mode:
authorMax Krummenacher <max.krummenacher@toradex.com>2012-10-05 17:18:49 +0200
committerMax Krummenacher <max.krummenacher@toradex.com>2012-10-18 20:32:58 +0200
commitb7991ad5c6a5479da39f5da84424fc588fe0fe7e (patch)
treedd2449aac82790f5a9ae7cfe4c4beb3bfc5b5c89 /recipes-lxde/lxdm
parentfd7e3ee9b0ead7d8743f3eee8ca5f31d25394d17 (diff)
initscript provided in oe-tworaz/meta-lxde
Diffstat (limited to 'recipes-lxde/lxdm')
-rw-r--r--recipes-lxde/lxdm/lxdm/lxdm.sh29
1 files changed, 0 insertions, 29 deletions
diff --git a/recipes-lxde/lxdm/lxdm/lxdm.sh b/recipes-lxde/lxdm/lxdm/lxdm.sh
deleted file mode 100644
index e6e8e23..0000000
--- a/recipes-lxde/lxdm/lxdm/lxdm.sh
+++ /dev/null
@@ -1,29 +0,0 @@
-#! /bin/sh
-### BEGIN INIT INFO
-# Provides: lxdm
-# Default-Start: 2 3 4 5
-# Default-Stop: 0 1 6
-# Short-Description: LXDM Display Manager (and wrapper script)
-# Description: init script for the LXDM Display Manager
-# Copied from SLIM openembedded recipe
-### END INIT INFO
-
-case $1 in
- start)
- /usr/sbin/lxdm -d &> /dev/null
- ;;
- stop)
- killall /usr/sbin/lxdm
- ;;
- restart)
- $0 stop
- sleep 2
- $0 start
- ;;
- *)
- echo "usage: $0 [start|stop|restart]"
- ;;
-esac
-
-# End of file
-