summaryrefslogtreecommitdiffstats
path: root/ubuntu/raring/tdebase/debian/tdm-trinity.conf
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-03-28 14:13:18 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-03-28 14:13:18 -0500
commit4bc22e8b188aa26df8b1a23c39bb0f3c5b05b8b6 (patch)
treec6f53decaabed9678523a8bbd6a1000a9f3bf78f /ubuntu/raring/tdebase/debian/tdm-trinity.conf
parent211d261d7778de1d9a773e7ec43a4e97b4bd7e57 (diff)
downloadtde-packaging-4bc22e8b188aa26df8b1a23c39bb0f3c5b05b8b6.tar.gz
tde-packaging-4bc22e8b188aa26df8b1a23c39bb0f3c5b05b8b6.zip
Split raring packaging into new directory due to defoma changes
Diffstat (limited to 'ubuntu/raring/tdebase/debian/tdm-trinity.conf')
-rwxr-xr-xubuntu/raring/tdebase/debian/tdm-trinity.conf48
1 files changed, 48 insertions, 0 deletions
diff --git a/ubuntu/raring/tdebase/debian/tdm-trinity.conf b/ubuntu/raring/tdebase/debian/tdm-trinity.conf
new file mode 100755
index 000000000..f63b85e3d
--- /dev/null
+++ b/ubuntu/raring/tdebase/debian/tdm-trinity.conf
@@ -0,0 +1,48 @@
+# tdm-trinity - TDE Display Manager
+#
+# The display manager service manages the X servers running on the
+# system, providing login and auto-login services
+
+description "TDE Display Manager"
+author "Richard Johnson and Timothy Pearson"
+
+start on (filesystem
+ and (started hal or started hal-trinity)
+ and (graphics-device-added fb0 PRIMARY_DEVICE_FOR_DISPLAY=1
+ or drm-device-added card0 PRIMARY_DEVICE_FOR_DISPLAY=1
+ or stopped udevtrigger))
+stop on runlevel [016]
+
+emits starting-dm
+
+respawn
+
+script
+ [ ! -f /etc/X11/default-display-manager -o "$(cat /etc/X11/default-display-manager 2>/dev/null)" = "/opt/trinity/bin/tdm" ]
+
+ # Check kernel command-line for inhibitors
+ for ARG in $(cat /proc/cmdline)
+ do
+ case "${ARG}" in
+ text|-s|s|S|single)
+ exit 0
+ ;;
+ esac
+ done
+
+ if [ -r /etc/default/locale ]; then
+ . /etc/default/locale
+ export LANG LANGUAGE
+ elif [ -r /etc/environment ]; then
+ . /etc/environment
+ export LANG LANGUAGE
+ fi
+
+ TDEDIRS=/opt/trinity/
+ PATH=/opt/trinity/bin:/bin:/usr/bin:/sbin:/usr/sbin
+
+ initctl emit starting-dm DM=tdm-trinity
+
+ exec /opt/trinity/bin/tdm
+
+end script