From: Michael Prokop Date: Fri, 9 Mar 2007 14:08:41 +0000 (+0100) Subject: Execute config_homedir() only if home-bootoption is set X-Git-Tag: 0.6.16~1 X-Git-Url: http://git.grml.org/?p=grml-autoconfig.git;a=commitdiff_plain;h=8c0c2938f3f2fd50eae0bd14602036c3194a6e96;hp=7be505423c9afac71defd632a970340160c17959 Execute config_homedir() only if home-bootoption is set --- diff --git a/autoconfig.functions b/autoconfig.functions index f6d99b3..e0c6cc5 100755 --- a/autoconfig.functions +++ b/autoconfig.functions @@ -1287,6 +1287,7 @@ fi # {{{ Check for persistent homedir option and eventually mount /home from there, or use a loopback file. config_homedir(){ +if checkbootparam home ; then HOMEDIR="$(getbootparam home)" MYHOMEDEVICE="" MYHOMEMOUNTPOINT="" @@ -1360,6 +1361,7 @@ $(cat /proc/mounts) EOT fi fi +fi # checkbootparam home } # }}} diff --git a/debian/changelog b/debian/changelog index 0de4240..89eff8e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +grml-autoconfig (0.6.16) unstable; urgency=low + + * Execute config_homedir() only if home-bootoption is set. + + -- Michael Prokop Fri, 9 Mar 2007 15:08:25 +0100 + grml-autoconfig (0.6.15) unstable; urgency=low * Fix startx bootoption. (Thanks for reporting, wuehlmaus.)