From 79ca08a0ac2217563692e9182d9e636998428ba0 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 1 May 2010 12:57:48 +0200 Subject: [PATCH] Merging casper 1.214. --- docs/ChangeLog.casper | 7 +++++++ scripts/live-bottom/15autologin | 11 ++++------- 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/docs/ChangeLog.casper b/docs/ChangeLog.casper index 8f23057..62fe922 100644 --- a/docs/ChangeLog.casper +++ b/docs/ChangeLog.casper @@ -1,3 +1,10 @@ +casper (1.214) lucid; urgency=low + + * 15autologin: simplify the code with escape character evaluation + (LP: #505140) + + -- Didier Roche Tue, 12 Jan 2010 08:57:05 +0100 + casper (1.213) lucid; urgency=low * printf does not evaluate escape characters in the argument string. diff --git a/scripts/live-bottom/15autologin b/scripts/live-bottom/15autologin index 0b80f84..a4df2df 100755 --- a/scripts/live-bottom/15autologin +++ b/scripts/live-bottom/15autologin @@ -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/ ] -- 2.1.4