[SCM] live-build branch, debian, updated. debian/3.0_a41-1
Daniel Baumann
daniel at debian.org
Sun Jan 8 01:25:27 UTC 2012
The following commit has been merged in the debian branch:
commit e3c9db7a2ba4f9a53f95dd5a2095d3085dfc055c
Author: Daniel Baumann <daniel at debian.org>
Date: Sat Jan 7 19:48:32 2012 +0100
Fix unconditional overwriting of /etc/apt/preferences.d/progress.pref in progress mode.
diff --git a/scripts/build/lb_chroot_apt b/scripts/build/lb_chroot_apt
index 81990b1..565cb0a 100755
--- a/scripts/build/lb_chroot_apt
+++ b/scripts/build/lb_chroot_apt
@@ -148,29 +148,31 @@ case "${1}" in
case "${LB_MODE}" in
progress)
- echo "# /etc/apt/preferences.d/progress.pref" > chroot/etc/apt/preferences.d/progress.pref
-
- case "${LB_DISTRIBUTION}" in
- *-backports)
- _DISTRIBUTIONS="$(echo ${LB_DISTRIBUTION} | sed -e 's|-backports||') ${LB_DISTRIBUTION}"
- ;;
-
- *)
- _DISTRIBUTIONS="${LB_DISTRIBUTION}"
- ;;
- esac
-
- if [ "${LB_SECURITY}" = "true" ]
+ if [ ! -e chroot/etc/apt/preferences.d/progress.pref ]
then
+ echo "# /etc/apt/preferences.d/progress.pref" > chroot/etc/apt/preferences.d/progress.pref
+
case "${LB_DISTRIBUTION}" in
- artax)
- _DISTRIBUTION="${_DISTRIBUTION} ${LB_DISTRIBUTION}-security"
+ *-backports)
+ _DISTRIBUTIONS="$(echo ${LB_DISTRIBUTION} | sed -e 's|-backports||') ${LB_DISTRIBUTION}"
+ ;;
+
+ *)
+ _DISTRIBUTIONS="${LB_DISTRIBUTION}"
;;
esac
- fi
- for _DISTRIBUTION in ${_DISTRIBUTIONS}
- do
+ if [ "${LB_SECURITY}" = "true" ]
+ then
+ case "${LB_DISTRIBUTION}" in
+ artax)
+ _DISTRIBUTION="${_DISTRIBUTION} ${LB_DISTRIBUTION}-security"
+ ;;
+ esac
+ fi
+
+ for _DISTRIBUTION in ${_DISTRIBUTIONS}
+ do
cat >> chroot/etc/apt/preferences.d/progress.pref << EOF
@@ -179,7 +181,8 @@ Pin: release n=${_DISTRIBUTION}
Pin-Priority: 999
EOF
- done
+ done
+ fi
;;
esac
--
live-build
More information about the debian-live-changes
mailing list