From: Marco Amadori Date: Mon, 13 Sep 2010 15:15:29 +0000 (+0200) Subject: Added support for empty (initial) snapshots. X-Git-Tag: debian/3.0_a15-1~47 X-Git-Url: http://git.grml.org/?a=commitdiff_plain;h=f4adc321a37ab2d885eca2355467215f9d43b96e;p=live-boot-grml.git Added support for empty (initial) snapshots. --- diff --git a/scripts/live b/scripts/live index 07deb55..18881af 100755 --- a/scripts/live +++ b/scripts/live @@ -1074,8 +1074,16 @@ try_snap () cpioargs='--unconditional --make-directories' fi - cd "${snap_mount}" && zcat "${snapback}/${snapfile}" | $cpiopath $cpioargs --extract --preserve-modification-time --no-absolute-filenames --sparse 2>/dev/null - RES="$?" + if [ -s "${snapback}/${snapfile}" ] + then + BEFOREDIR="$(pwd)" + cd "${snap_mount}" && zcat "${snapback}/${snapfile}" | $cpiopath $cpioargs --extract --preserve-modification-time --no-absolute-filenames --sparse 2>/dev/null + RES="$?" + cd "${BEFOREDIR}" + else + log_warning_msg "${snapback}/${snapfile} is empty, adding it for sync on reboot." + RES="0" + fi if [ "${RES}" != "0" ] then