Merging casper 1.214.
authorDaniel Baumann <daniel@debian.org>
Sat, 1 May 2010 10:57:48 +0000 (12:57 +0200)
committerDaniel Baumann <daniel@debian.org>
Wed, 9 Mar 2011 16:48:09 +0000 (17:48 +0100)
docs/ChangeLog.casper
scripts/live-bottom/15autologin

index 8f23057..62fe922 100644 (file)
@@ -1,3 +1,10 @@
+casper (1.214) lucid; urgency=low
+
+  * 15autologin: simplify the code with escape character evaluation
+    (LP: #505140)
+
+ -- Didier Roche <didrocks@ubuntu.com>  Tue, 12 Jan 2010 08:57:05 +0100
+
 casper (1.213) lucid; urgency=low
 
   * printf does not evaluate escape characters in the argument string.
index 0b80f84..a4df2df 100755 (executable)
@@ -66,15 +66,12 @@ TimedLoginDelay=10"
 
        # Prevent from updating if parameters already present (persistent usb
        # key)
-       if ! $(grep -qs 'AutomaticLoginEnable' $GDMCustomFile)
+       if ! $(grep -qs '\[daemon\]' $GDMCustomFile)
        then
-               if $(grep -qs '\[daemon\]' $GDMCustomFile)
-               then
-                       sed -i "s/\[daemon\]/\[daemon\]\n$AutologinParameters/" $GDMCustomFile
-               else
-                       printf "[daemon]\n$AutologinParameters" >> $GDMCustomFile
-               fi
+               echo '[daemon]' >> $GDMCustomFile
        fi
+
+       sed -i "s/\[daemon\]/\[daemon\]\n$AutologinParameters/" $GDMCustomFile
 fi
 
 if [ -d /root/etc/default/kdm.d/ ]