[Debian-live-changes] r2509 - dists/trunk/live-helper/helpers
daniel at alioth.debian.org
daniel at alioth.debian.org
Mon Jul 16 17:37:37 UTC 2007
Author: daniel
Date: 2007-07-16 17:37:37 +0000 (Mon, 16 Jul 2007)
New Revision: 2509
Modified:
dists/trunk/live-helper/helpers/lh_binary_chroot
dists/trunk/live-helper/helpers/lh_binary_debian-installer
dists/trunk/live-helper/helpers/lh_binary_rootfs
dists/trunk/live-helper/helpers/lh_bootstrap_cache
dists/trunk/live-helper/helpers/lh_chroot_cache
dists/trunk/live-helper/helpers/lh_clean
dists/trunk/live-helper/helpers/lh_source_debian-live
Log:
Modified: dists/trunk/live-helper/helpers/lh_binary_chroot
===================================================================
--- dists/trunk/live-helper/helpers/lh_binary_chroot 2007-07-16 08:32:02 UTC (rev 2508)
+++ dists/trunk/live-helper/helpers/lh_binary_chroot 2007-07-16 17:37:37 UTC (rev 2509)
@@ -63,12 +63,7 @@
${LH_ROOT_COMMAND} rm -rf chroot.tmp
# Copying new chroot
-#if [ "${LIVE_BINARY_INDICES}" = "enabled" ]
-#then
- ${LH_ROOT_COMMAND} cp -a chroot chroot.tmp
-#else
-# ${LH_ROOT_COMMAND} cp -al chroot chroot.tmp
-#fi
+${LH_ROOT_COMMAND} cp -a chroot chroot.tmp
${LH_ROOT_COMMAND} mv chroot.tmp chroot/chroot
if [ -n "${LH_ROOT_COMMAND}" ]
Modified: dists/trunk/live-helper/helpers/lh_binary_debian-installer
===================================================================
--- dists/trunk/live-helper/helpers/lh_binary_debian-installer 2007-07-16 08:32:02 UTC (rev 2508)
+++ dists/trunk/live-helper/helpers/lh_binary_debian-installer 2007-07-16 17:37:37 UTC (rev 2509)
@@ -317,7 +317,7 @@
if [ -f ../cache/packages_debian-installer.udeb/"`basename ${UDEB}`" ]
then
# Copying cached udebs
- cp -l ../cache/packages_debian-installer.udeb/"`basename ${UDEB}`" ./
+ cp ../cache/packages_debian-installer.udeb/"`basename ${UDEB}`" ./
else
# Downloading udebs
wget "${LIVE_MIRROR_BOOTSTRAP}"/${UDEB}
@@ -327,7 +327,7 @@
# Caching udebs
rm -rf ../cache/packages_debian-installer.udeb
mkdir -p ../cache/packages_debian-installer.udeb
-cp -l *.udeb ../cache/packages_debian-installer.udeb
+cp *.udeb ../cache/packages_debian-installer.udeb
# Including local udebs
if ls ../config/binary_local-udebs/* &> /dev/null
Modified: dists/trunk/live-helper/helpers/lh_binary_rootfs
===================================================================
--- dists/trunk/live-helper/helpers/lh_binary_rootfs 2007-07-16 08:32:02 UTC (rev 2508)
+++ dists/trunk/live-helper/helpers/lh_binary_rootfs 2007-07-16 17:37:37 UTC (rev 2509)
@@ -79,7 +79,7 @@
# Restoring old cache
mkdir -p binary/"${INITFS}"
- ${LH_ROOT_COMMAND} cp -al cache/stages_rootfs/filesystem.* binary/"${INITFS}"
+ ${LH_ROOT_COMMAND} cp -a cache/stages_rootfs/filesystem.* binary/"${INITFS}"
if [ -n "${LH_ROOT_COMMAND}" ]
then
@@ -187,7 +187,7 @@
mkdir -p cache/stages_rootfs
- ${LH_ROOT_COMMAND} cp -al binary/"${INITFS}"/filesystem.* cache/stages_rootfs
+ ${LH_ROOT_COMMAND} cp -a binary/"${INITFS}"/filesystem.* cache/stages_rootfs
if [ -n "${LH_ROOT_COMMAND}" ]
then
Modified: dists/trunk/live-helper/helpers/lh_bootstrap_cache
===================================================================
--- dists/trunk/live-helper/helpers/lh_bootstrap_cache 2007-07-16 08:32:02 UTC (rev 2508)
+++ dists/trunk/live-helper/helpers/lh_bootstrap_cache 2007-07-16 17:37:37 UTC (rev 2509)
@@ -53,7 +53,7 @@
rm -rf chroot
# Restoring old cache
- ${LH_ROOT_COMMAND} cp -al cache/stages_bootstrap chroot
+ ${LH_ROOT_COMMAND} cp -a cache/stages_bootstrap chroot
if [ -n "${LH_ROOT_COMMAND}" ]
then
@@ -83,7 +83,7 @@
mkdir -p cache
- ${LH_ROOT_COMMAND} cp -al chroot cache/stages_bootstrap
+ ${LH_ROOT_COMMAND} cp -a chroot cache/stages_bootstrap
if [ -n "${LH_ROOT_COMMAND}" ]
then
Modified: dists/trunk/live-helper/helpers/lh_chroot_cache
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot_cache 2007-07-16 08:32:02 UTC (rev 2508)
+++ dists/trunk/live-helper/helpers/lh_chroot_cache 2007-07-16 17:37:37 UTC (rev 2509)
@@ -53,7 +53,7 @@
rm -rf chroot
# Restoring old cache
- ${LH_ROOT_COMMAND} cp -al cache/stages_chroot chroot
+ ${LH_ROOT_COMMAND} cp -a cache/stages_chroot chroot
if [ -n "${LH_ROOT_COMMAND}" ]
then
@@ -83,7 +83,7 @@
mkdir -p cache
- ${LH_ROOT_COMMAND} cp -al chroot cache/stages_chroot
+ ${LH_ROOT_COMMAND} cp -a chroot cache/stages_chroot
if [ -n "${LH_ROOT_COMMAND}" ]
then
Modified: dists/trunk/live-helper/helpers/lh_clean
===================================================================
--- dists/trunk/live-helper/helpers/lh_clean 2007-07-16 08:32:02 UTC (rev 2508)
+++ dists/trunk/live-helper/helpers/lh_clean 2007-07-16 17:37:37 UTC (rev 2509)
@@ -65,7 +65,7 @@
if [ "${PURGE}" != "true" ] && [ -d cache/stages_bootstrap ]
then
- ${LH_ROOT_COMMAND} cp -al cache/stages_bootstrap chroot
+ ${LH_ROOT_COMMAND} cp -a cache/stages_bootstrap chroot
mkdir -p .stage
touch .stage/bootstrap
fi
Modified: dists/trunk/live-helper/helpers/lh_source_debian-live
===================================================================
--- dists/trunk/live-helper/helpers/lh_source_debian-live 2007-07-16 08:32:02 UTC (rev 2508)
+++ dists/trunk/live-helper/helpers/lh_source_debian-live 2007-07-16 17:37:37 UTC (rev 2509)
@@ -59,7 +59,7 @@
# Copy system configuration
mkdir -p source/debian-live
-cp -al config source/debian-live
+cp -a config source/debian-live
# Create tarball
cd source
More information about the Debian-live-changes
mailing list