[pkg-fso-commits] [SCM] Automatic Display Manager branch, master, updated. debian/0.1-64-g2406af8

Joachim Breitner mail at joachim-breitner.de
Fri Apr 10 18:40:03 UTC 2009


The following commit has been merged in the master branch:
commit 1623ee41a331a9b9157083215583297119660c55
Author: Joachim Breitner <mail at joachim-breitner.de>
Date:   Fri Apr 10 20:31:31 2009 +0200

    Fix "initscript ignores NODM_ENABLED=false" by removing bashism, thanks to Justin B Rye for the patch (Closes: #523004)

diff --git a/debian/changelog b/debian/changelog
index 219f6d0..9682cd7 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+nodm (0.3) UNRELEASED; urgency=low
+
+  * Fix "initscript ignores NODM_ENABLED=false" by removing bashism, thanks to
+    Justin B Rye for the patch (Closes: #523004)
+
+ -- Joachim Breitner <nomeata at debian.org>  Fri, 10 Apr 2009 20:30:59 +0200
+
 nodm (0.2) unstable; urgency=low
 
   * Reimplemented to be more of a display manager, with respawn if X dies,
diff --git a/debian/nodm.init b/debian/nodm.init
index d1f928c..edf5f34 100644
--- a/debian/nodm.init
+++ b/debian/nodm.init
@@ -49,7 +49,7 @@ export NODM_XINIT NODM_XSESSION NODM_X_OPTIONS NODM_USER NODM_MIN_SESSION_TIME
 case "$1" in
     start)
         [ "$VERBOSE" != no ] && log_daemon_msg "Starting $DESC" "$NAME"
-    	if [ "$NODM_ENABLED" == "no" ] || [ "$NODM_ENABLED" == "false" ]
+    	if [ "$NODM_ENABLED" = "no" ] || [ "$NODM_ENABLED" = "false" ]
 	then
 		log_warning_msg "Not starting $NAME because NODM_ENABLED is '$NODM_ENABLED' in /etc/default/$NAME"
 	else

-- 
Automatic Display Manager



More information about the pkg-fso-commits mailing list