Dropping snapshot functionality, superseeded by awesome custom mount persistence.
authorDaniel Baumann <daniel@debian.org>
Wed, 6 Jun 2012 16:29:07 +0000 (18:29 +0200)
committerDaniel Baumann <daniel@debian.org>
Wed, 6 Jun 2012 16:43:56 +0000 (18:43 +0200)
See the following threads for more information:

  * http://lists.debian.org/debian-live/2012/04/msg00110.html
  * http://lists.debian.org/debian-live/2012/06/msg00039.html

32 files changed:
Makefile
backends/initramfs-tools/live.hook
bin/live-snapshot [deleted file]
examples/live-persistence.binds [deleted file]
examples/live-snapshot.exclude_list [deleted file]
examples/live-snapshot.list [deleted file]
manpages/de/live-boot.de.7
manpages/de/live-persistence.conf.de.5
manpages/de/live-snapshot.de.1 [deleted file]
manpages/en/live-boot.7
manpages/en/live-persistence.conf.5
manpages/en/live-snapshot.1 [deleted file]
manpages/es/live-boot.es.7
manpages/es/live-persistence.conf.es.5
manpages/es/live-snapshot.es.1 [deleted file]
manpages/po/de/live-boot.7.po
manpages/po/de/live-persistence.conf.5.po
manpages/po/de/live-snapshot.1.po [deleted file]
manpages/po/es/live-boot.7.po
manpages/po/es/live-persistence.conf.5.po
manpages/po/es/live-snapshot.1.po [deleted file]
manpages/po4a.cfg
manpages/pot/live-boot.7.pot
manpages/pot/live-persistence.conf.5.pot
manpages/pot/live-snapshot.1.pot [deleted file]
scripts/boot.sh
scripts/boot/cmdline.sh
scripts/boot/misc-helpers.sh
scripts/boot/mountroot.sh
scripts/boot/overlay.sh
scripts/boot/persistence-excludes.sh [deleted file]
scripts/boot/snapshot.sh [deleted file]

index 79a9388..b3c7ba2 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -47,7 +47,7 @@ install:
 
        # Installing executables
        mkdir -p $(DESTDIR)/sbin
-       cp bin/live-new-uuid bin/live-snapshot bin/live-swapfile $(DESTDIR)/sbin
+       cp bin/live-new-uuid bin/live-swapfile $(DESTDIR)/sbin
 
        mkdir -p $(DESTDIR)/usr/share/initramfs-tools/hooks
        cp backends/initramfs-tools/live.hook $(DESTDIR)/usr/share/initramfs-tools/hooks/live
@@ -58,10 +58,6 @@ install:
        mkdir -p $(DESTDIR)/usr/share/doc/live-boot
        cp -r COPYING $(DESTDIR)/usr/share/doc/live-boot
 
-       mkdir -p $(DESTDIR)/usr/share/doc/live-boot/examples
-       cp -r examples/* $(DESTDIR)/usr/share/doc/live-boot/examples
-       # (FIXME)
-
        # Installing manpages
        for MANPAGE in manpages/en/*; \
        do \
@@ -80,7 +76,7 @@ install:
 
 uninstall:
        # Uninstalling executables
-       rm -f $(DESTDIR)/sbin/live-snapshot $(DESTDIR)/sbin/live-swapfile
+       rm -f $(DESTDIR)/sbin/live-swapfile
        rmdir --ignore-fail-on-non-empty $(DESTDIR)/sbin > /dev/null 2>&1 || true
 
        rm -f $(DESTDIR)/usr/share/initramfs-tools/hooks/live
index 4d01777..d3dce71 100755 (executable)
@@ -185,15 +185,6 @@ then
        manual_add_modules mtdblock
 fi
 
-# Program: cpio
-# busybox and klibc lacks --no-absolute-filenames and --sparse, needed for snapshots
-if [ -e "${DESTDIR}/bin/cpio" ]
-then
-       # Override already present cpio's, mostly klibc's
-       rm "${DESTDIR}/bin/cpio"
-fi
-copy_exec /bin/cpio /bin
-
 # Program: udev
 if [ -x /sbin/udevadm ]
 then
diff --git a/bin/live-snapshot b/bin/live-snapshot
deleted file mode 100755 (executable)
index 46ae597..0000000
+++ /dev/null
@@ -1,570 +0,0 @@
-#!/bin/sh
-
-# live-snapshot - utility to manage Debian Live systems snapshots
-#
-#   This program mounts a device (fallback to /tmpfs under $MOUNTP
-#   and saves the /live/overlway (or a different directory) filesystem in it
-#   for reuse in another live-boot session.
-#   Look at the manpage for more informations.
-#
-# Copyright (C) 2006-2011 Marco Amadori <marco.amadori@gmail.com>
-# Copyright (C) 2008 Chris Lamb <chris@chris-lamb.co.uk>
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program. If not, see <http://www.gnu.org/licenses/>.
-#
-# The complete text of the GNU General Public License
-# can be found in /usr/share/common-licenses/GPL-3 file.
-
-# declare here two vars from /etc/live.conf because of "set -u"
-ROOTSNAP=""
-HOMESNAP=""
-
-if [ -n "${LIVE_SNAPSHOT_CHECK_UNBOUND}" ]
-then
-       set -eu
-else
-       set -e
-fi
-
-## Begin FIXME: this is an embedded copy of the old 'live-helpers' initramfs script
-if [ ! -x "/bin/fstype" ]
-then
-       # klibc not in path -> not in initramfs
-       export PATH="${PATH}:/usr/lib/klibc/bin"
-fi
-
-# handle upgrade path from old udev (using udevinfo) to
-# recent versions of udev (using udevadm info)
-if [ -x /sbin/udevadm ]
-then
-       udevinfo='/sbin/udevadm info'
-else
-       udevinfo='udevinfo'
-fi
-
-old_root_overlay_label="live-rw"
-old_home_overlay_label="home-rw"
-custom_overlay_label="custom-ov"
-root_snapshot_label="live-sn"
-old_root_snapshot_label="live-sn"
-home_snapshot_label="home-sn"
-persistence_list="live-persistence.conf"
-
-# include all scripts for the time being until snapshots are either dropped or cleaned up
-for _SCRIPT in /lib/live/boot/*
-do
-       if [ -e "${_SCRIPT}" ]
-       then
-               . ${_SCRIPT}
-       fi
-done
-## End FIXME: this is an embedded copy of the old 'live-helpers' initramfs script
-
-LIVE_CONF="/etc/live/boot.d/snapshot.conf"
-
-if [ -r "${LIVE_CONF}" ]
-then
-       . "${LIVE_CONF}"
-fi
-
-export USERNAME USERFULLNAME HOSTNAME
-
-EXECUTABLE="${0}"
-PROGRAM=$(basename "${EXECUTABLE}")
-
-# Needs to be available at run and reboot time
-SAFE_TMPDIR="/live"
-
-# Permits multiple runs
-MOUNTP="$(mktemp -d -p ${SAFE_TMPDIR} live-snapshot-mnt.XXXXXX)"
-DEST="${MOUNTP}/live-sn.cpio.gz"
-DEF_SNAP_COW="/live/overlay"
-TMP_FILELIST="${PROGRAM}.list"
-
-# Command line defaults and declarations
-SNAP_COW="${DEF_SNAP_COW}"
-SNAP_DEV=""
-SNAP_MNT=""
-SNAP_OUTPUT=""
-SNAP_RESYNC_STRING=""
-SNAP_TYPE="cpio"
-SNAP_LIST="/etc/live-snapshot.list"
-EXCLUDE_LIST="/etc/live-snapshot.exclude_list"
-
-Error ()
-{
-       echo "${PROGRAM}: error:" ${@}
-       exit 1
-}
-
-panic ()
-{
-       Error ${@}
-}
-
-Header ()
-{
-       echo "${PROGRAM} - utility to perform snapshots of Debian Live systems"
-       echo
-       echo "usage: ${PROGRAM} [-c|--cow DIRECTORY] [-d|--device DEVICE] [-o|--output FILE] [-t|--type TYPE]"
-       echo "       ${PROGRAM} [-r|--resync-string STRING]"
-       echo "       ${PROGRAM} [-f|--refresh]"
-       echo "       ${PROGRAM} [-h|--help]"
-       echo "       ${PROGRAM} [-u|--usage]"
-       echo "       ${PROGRAM} [-v|--version]"
-}
-
-Help ()
-{
-       Header
-
-       echo
-       echo "Options:"
-       echo "  -c, --cow: copy on write directory (default: ${SNAP_COW})."
-       echo "  -d, --device: output snapshot device (default: ${SNAP_DEV:-auto})."
-       echo "  -o, --output: output image file (default: ${DEST})."
-       echo "  -r, --resync-string: internally used to resync previous made snapshots."
-       echo "  -f, --refresh: try to sync a running snapshot."
-       echo "  -t, --type: snapshot filesystem type. Options: \"squashfs\", \"ext2\", \"ext3\", \"ext4\", \"jffs2\" or \"cpio\".gz archive (default: ${SNAP_TYPE})"
-       echo
-       echo "Look at live-snapshot(1) man page for more information."
-
-       exit 0
-}
-
-Usage ()
-{
-       Header
-
-       echo
-       echo "Try \"${PROGRAM} --help\" for more information."
-
-       exit 0
-}
-
-Version ()
-{
-       echo "${PROGRAM}"
-       echo
-       echo "Copyright (C) 2006-2011 Marco Amadori <marco.amadori@gmail.com>"
-       echo "Copyright (C) 2008 Chris Lamb <chris@chris-lamb.co.uk>"
-       echo
-       echo "This program is free software; you can redistribute it and/or modify"
-       echo "it under the terms of the GNU General Public License as published by"
-       echo "the Free Software Foundation; either version 3 of the License, or"
-       echo "(at your option) any later version."
-       echo
-       echo "This program is distributed in the hope that it will be useful,"
-       echo "but WITHOUT ANY WARRANTY; without even the implied warranty of"
-       echo "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the"
-       echo "GNU General Public License for more details."
-       echo
-       echo "You should have received a copy of the GNU General Public License"
-       echo "along with this program; if not, write to the Free Software"
-       echo "Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA"
-       echo
-       echo "The complete text of the GNU General Public License"
-       echo "can be found in /usr/share/common-licenses/GPL-3 file."
-       echo
-       echo "Homepage: <http://live.debian.net/>"
-
-       exit 0
-}
-
-Try_refresh ()
-{
-       FOUND=""
-       if [ -n "${ROOTSNAP}" ]; then
-               "${EXECUTABLE}" --resync-string="${ROOTSNAP}"
-               FOUND="true"
-       fi
-
-       if [ -n "${HOMESNAP}" ]; then
-               "${EXECUTABLE}" --resync-string="${HOMESNAP}"
-               FOUND="true"
-       fi
-
-       if [ -z "${FOUND}" ]
-       then
-               echo "No autoconfigured snapshots found at boot;" > /dev/null 1>&2
-               echo "(no resync string in ${LIVE_CONF})." > /dev/null 1>&2
-               exit 1
-       fi
-}
-
-Parse_args ()
-{
-       # Parse command line
-       ARGS="${*}"
-       ARGUMENTS="$(getopt --longoptions cow:,device:,output,resync-string:,refresh,type:,help,usage,version --name=${PROGRAM} --options c:d:o:t:r:fhuv --shell sh -- ${ARGS})"
-
-       eval set -- "${ARGUMENTS}"
-
-       while true
-       do
-               case "${1}" in
-                       -c|--cow)
-                               SNAP_COW="${2}"
-                               shift 2
-                               ;;
-
-                       -d|--device)
-                               SNAP_DEV="${2}"
-                               shift 2
-                               ;;
-
-                       -o|--output)
-                               SNAP_OUTPUT="${2}"
-                               shift 2
-                               ;;
-
-                       -t|--type)
-                               SNAP_TYPE="${2}"
-                               shift 2
-                               ;;
-
-                       -r|--resync-string)
-                               SNAP_RESYNC_STRING="${2}"
-                               break
-                               ;;
-
-                       -f|--refresh)
-                               Try_refresh
-                               exit 0
-                               ;;
-
-                       -h|--help)
-                               Help
-                               ;;
-
-                       -u|--usage)
-                               Usage
-                               ;;
-
-                       -v|--version)
-                               Version
-                               ;;
-
-                       --)
-                               shift
-                               break
-                               ;;
-
-                       *)
-                               Error "internal error."
-                               ;;
-
-               esac
-       done
-}
-
-Defaults ()
-{
-       # Parse resync string
-       if [ -n "${SNAP_RESYNC_STRING}" ]
-       then
-               SNAP_COW=$(echo "${SNAP_RESYNC_STRING}" | sed -r -e 's#^([^:]*).*$#'"${DEF_SNAP_COW}"'\1#')
-               SNAP_DEV=$(echo "${SNAP_RESYNC_STRING}" | cut -f2 -d ':')
-               SNAP_MNT=$(echo "${SNAP_RESYNC_STRING}" | cut -f3 -d ':')
-               DEST="${MOUNTP}/${SNAP_MNT}"
-
-               case "${SNAP_MNT}" in
-                       *.cpio.gz)
-                               SNAP_TYPE="cpio"
-                               ;;
-
-                       *.squashfs)
-                               SNAP_TYPE="squashfs"
-                               ;;
-
-                       *.jffs2)
-                               SNAP_TYPE="jffs2"
-                               ;;
-
-                       *.ext2|*.ext3)
-                               SNAP_TYPE="ext2"
-                               ;;
-
-                       "")
-                               SNAP_TYPE="whole_partition"
-                               ;;
-
-                       *.ext4)
-                               SNAP_TYPE="ext4"
-                               ;;
-
-                       *)
-                               Error "unrecognized resync string"
-                               ;;
-               esac
-       elif [ -z "${SNAP_OUTPUT}" ]
-       then
-               # Set target file based on image
-               case "${SNAP_TYPE}" in
-                       cpio)
-                               DEST="${MOUNTP}/live-sn.cpio.gz"
-                               ;;
-
-                       squashfs|jffs2|ext2)
-                               DEST="${MOUNTP}/live-sn.${SNAP_TYPE}"
-                               ;;
-
-                       ext3)
-                               DEST="${MOUNTP}/live-sn.ext2"
-                               ;;
-
-                       ext4)
-                               DEST="${MOUNTP}/live-sn.ext4"
-                               ;;
-               esac
-       else
-               DEST="${SNAP_OUTPUT}"
-       fi
-}
-
-Validate_input ()
-{
-       case "${SNAP_TYPE}" in
-               cpio|squashfs|jffs2|ext2|ext3|ext4|whole_partition)
-                       ;;
-
-               *)
-                       Error "invalid filesystem type \"${SNAP_TYPE}\""
-                       ;;
-       esac
-
-       if [ ! -d "${SNAP_COW}" ]
-       then
-               Error "${SNAP_COW} is not a directory"
-       fi
-
-       if [ "$(id -u)" -ne 0 ]
-       then
-               Error "you are not root"
-       fi
-}
-
-Mount_device ()
-{
-       case "${SNAP_DEV}" in
-               "")
-                       # create a temp
-                       mount -t tmpfs -o rw tmpfs "${MOUNTP}"
-                       ;;
-
-               *)
-                       if [ -b "${SNAP_DEV}" ]
-                       then
-                               try_mount "${SNAP_DEV}" "${MOUNTP}" rw
-                       fi
-                       ;;
-       esac
-}
-
-Entry_is_modified ()
-{
-       # Returns true if file exists and it is also present in "cow" directory
-       # This means it is modified in respect to read-only media, so it deserve
-       # to be saved
-
-       entry="${1}"
-
-       if [ -e "${entry}" ] || [ -L "${entry}" ]
-       then
-               if [ -e "${SNAP_COW}/${entry}" ] || [ -L "${SNAP_COW}/${entry}" ]
-               then
-                       return 0
-               fi
-       fi
-       return 1
-}
-
-Do_filelist ()
-{
-       # BUGS: does not handle deleted files yet
-       TMP_FILELIST=$1
-
-       if [ -f "${SNAP_LIST}" ]
-       then
-               # if SNAP_COW == /live/overlay/home, SNAP_RW = /home
-               SNAP_RW=$(echo "${SNAP_COW}" | sed -e "s|${DEF_SNAP_COW}||g")
-               if [ -z "${SNAP_RW}" ]
-               then
-                       SNAP_RW="/"
-               fi
-
-               cd "${SNAP_RW}"
-               # Generate include list removing empty and commented lines
-               # and transforming paths to relatives
-               for entry in $(sed -e '/^ *$/d' -e '/^#.*$/d' -e 's#^.*$#./&#' -e 's#/\+#/#g' "${SNAP_LIST}")
-               do
-                       if [ -d "${entry}" ]
-                       then
-                               find "${entry}" | while read line
-                               do
-                                       if Entry_is_modified "${line}"
-                                       then
-                                               printf "%s\000" "${line}" >> "${TMP_FILELIST}"
-                                       fi
-                               done
-                       elif Entry_is_modified "${entry}"
-                       then
-                               # if file exists and it is modified
-                               printf "%s\000" "${entry}" >> "${TMP_FILELIST}"
-                       fi
-               done
-               cd "${OLDPWD}"
-
-               # echo Working dir
-               echo "${SNAP_RW}"
-       else
-               cd "${SNAP_COW}"
-               # removing whiteouts from list
-               find . -path '*.wh.*' -prune -o -print0 >> "${TMP_FILELIST}"
-               cd "${OLDPWD}"
-               # echo Working dir
-               echo "${SNAP_COW}"
-       fi
-}
-
-Do_snapshot ()
-{
-       TMP_FILELIST=$(mktemp -p "${SAFE_TMPDIR}" "${TMP_FILELIST}.XXXXXX")
-       if [ -e "${EXCLUDE_LIST}" ]
-       then
-               # Create a TMP filelist removing empty lines (grep -f does not like them)
-               # and comments (for speedup and LST)
-               TMP_EXCLUDE_LIST=$(mktemp -p "${SAFE_TMPDIR}" "${PROGRAM}_excludelist.XXXXXX")
-               grep -v '^#.*$' "${EXCLUDE_LIST}" | grep -v '^ *$' > "${TMP_EXCLUDE_LIST}"
-       fi
-
-       case "${SNAP_TYPE}" in
-               squashfs)
-                       echo ".${TMP_FILELIST}" > "${TMP_FILELIST}"
-                       # Removing whiteheads of unionfs
-                       cd "${SNAP_COW}"
-                       find . -name '*.wh.*' >> "${TMP_FILELIST}"
-
-                       if [ -e "${EXCLUDE_LIST}" ]
-                       then
-                               # Add explicitly excluded files
-                               cat "${TMP_EXCLUDE_LIST}" >> "${TMP_FILELIST}"
-                       fi
-
-                       cd "${OLDPWD}"
-                       mksquashfs "${SNAP_COW}" "${DEST}" -ef "${TMP_FILELIST}"
-                       ;;
-
-               cpio|whole_partition)
-                       if [ "${SNAP_TYPE}" = "cpio" ]
-                       then
-                               COPY_CMD="cpio --quiet -o0 -H newc | gzip -9c > ${DEST}"
-                       else
-                               COPY_CMD="cpio --quiet -pumd0 ${DEST}/"
-                       fi
-
-                       WORKING_DIR=$(Do_filelist "${TMP_FILELIST}")
-                       cd "${WORKING_DIR}"
-                       if [ -e "${EXCLUDE_LIST}" ]
-                       then
-
-                               # Convert \0 to \n and tag existing (rare but possible) \n in filenames,
-                               # this to let grep -F -v do a proper work in filtering out
-                               cat "${TMP_FILELIST}" | \
-                                       tr '\n' '\1' | \
-                                       tr '\0' '\n' | \
-                                       grep -F -v -f "${TMP_EXCLUDE_LIST}" | \
-                                       tr '\n' '\0' | \
-                                       tr '\1' '\n' | \
-                                       eval $COPY_CMD || exit 1
-                       else
-                               cat "${TMP_FILELIST}" | \
-                                       eval $COPY_CMD || exit 1
-                       fi
-                       cd "${OLDPWD}"
-                       ;;
-
-               # ext2|ext3|ext4 and jffs2 does not easily support an exclude list; files
-               # should be copied to another directory in order to filter content
-               ext2|ext3|ext4)
-                       DU_DIM="$(du -ks ${SNAP_COW} | cut -f1)"
-                       REAL_DIM="$(expr ${DU_DIM} + ${DU_DIM} / 20)" # Just 5% more to be sure, need something more sophistcated here...
-                       genext2fs --size-in-blocks=${REAL_DIM} --reserved-percentage=0 --root="${SNAP_COW}" "${DEST}"
-                       ;;
-
-               jffs2)
-                       mkfs.jffs2 --root="${SNAP_COW}" --output="${DEST}"
-                       ;;
-       esac
-
-       # Remove temporary file lists
-       for filelist in "${TMP_FILELIST}" "${TMP_EXCLUDE_LIST}"
-       do
-               if [ -f "${filelist}" ]
-               then
-                       rm -f "${filelist}"
-               fi
-       done
-}
-
-Clean ()
-{
-       if [ -z "${SNAP_RESYNC_STRING}" ] && echo "${DEST}" | grep -q "${MOUNTP}"
-       then
-               echo "${DEST} is present on ${MOUNTP}, therefore no automatic unmounting the latter." > /dev/null 1>&2
-       else
-               umount "${MOUNTP}"
-               rmdir "${MOUNTP}"
-       fi
-}
-
-Warn_user ()
-{
-       if [ -z "${SNAP_RESYNC_STRING}" ]
-       then
-               case ${SNAP_TYPE} in
-                       cpio|ext2|ext3|ext4)
-                               echo "Please move ${DEST} (if is not already in it)" > /dev/null 1>&2
-                               echo "in a supported writable partition (e.g ext3, vfat)." > /dev/null 1>&2
-                               ;;
-
-                       squashfs)
-                               echo "To use ${DEST} you need to rebuild your media or add it" > /dev/null 1>&2
-                               echo "to your multisession disc under the \"/live\" directory." > /dev/null 1>&2
-                               ;;
-
-                       jffs2)
-                               echo "Please cat or flashcp ${DEST} to your partition in order to start using it." > /dev/null 1>&2
-                               ;;
-               esac
-
-               if grep -qv persistence /proc/cmdline
-               then
-                       echo "Remember to boot this live system with \"persistence\" specified at boot prompt." > /dev/null 1>&2
-               fi
-       fi
-}
-
-Main ()
-{
-       Parse_args "${@}"
-       Defaults
-       Validate_input
-       trap 'Clean' EXIT
-       Mount_device
-       Do_snapshot
-       Warn_user
-}
-
-Main "${@:-}"
diff --git a/examples/live-persistence.binds b/examples/live-persistence.binds
deleted file mode 100644 (file)
index b2c3833..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-# /etc/live-persistence.binds example
-#
-# If this file is present in the proper path, each uncommented not empty line
-# will be treated as a directory which should not be made persistent and
-# which it's content should be volatile.
-#
-# This is achieved by bind mounting on it a tmpfs clone of the directory specified
-
-# Exclude some standard temporary paths
-/tmp
-/var/log
-/var/cache
-
-# Firefox profiles are not always useful to remember
-/root/.mozilla
diff --git a/examples/live-snapshot.exclude_list b/examples/live-snapshot.exclude_list
deleted file mode 100644 (file)
index 82972e3..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-# /etc/live-snapshot.exclude_list example
-#
-# If this file is present in the proper path, each uncommented not empty line
-# will be excluded in the target snapshot when live-snapshot is run.
-#
-# The syntax for the line is just a full file or directory pathname.
-
-# Each line is treated like a plain match string for "grep -F -v",
-# so be careful: e.g. "/tmp" will exclude also "/var/tmp" !
-
-# Exclude some standard temporary paths
-/tmp
-/var/log
-/var/cache
-
-# Firefox profiles are not always useful to remember
-/root/.mozilla
diff --git a/examples/live-snapshot.list b/examples/live-snapshot.list
deleted file mode 100644 (file)
index db05733..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-# /etc/live-snapshot resync list example
-#
-# If this file is present, each uncommented not empty line will be parsed when
-# running live-snapshot and included in target snapshot.
-#
-# The syntax for the line is just a full file or directory pathname.
-# Those files and directories, and only those will be included on automatic persistence handling.
-#
-# Note that in home-sn snapshot all those paths are treated as relative to /home
-
-# Include itself for reuse
-/etc/live-snapshot.list
-
-# Include networking setups
-/etc/network/interfaces
-/etc/resolv.conf
-/etc/hosts
-
-# Include the whole Desktop directory of the default user
-/home/user/Desktop
index a70f125..520277a 100644 (file)
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BOOT 7 05.06.2012 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BOOT 7 06.06.2012 3.0~a31\-1 "Debian Live Project"
 
 .SH NAME
 \fBlive\-boot\fP \- System Boot Scripts
@@ -178,16 +178,12 @@ option has no currently no effect when booting with toram.
 This parameter enables usage of local swap partitions.
 .IP \fBpersistence\fP 4
 live\-boot will probe devices for persistence media. These can be partitions
-(with the correct GPT name), filesystems (with the correct label) or
-image/archive files (with the correct file name). Overlays are labeled/named
-either "full\-ov", which will be mounted on /, or "custom\-ov", which can be
-completely customized (see \fIlive\-persistence.conf\fP(5)); snapshots are
-labeled/named either "live\-sn" or "home\-sn" and will be extracted into / or
-/home, respectively (see \fIlive\-snapshot\fP(1) for more information). The
-order these are handled are: full\-ov, custom\-ov, live\-sn, home\-sn. Overlay
-image files and snapshot archive files have extensions which determines
-their filesystem or archive type, e.g. "custom\-ov.ext4" and
-"home\-sn.squashfs".
+(with the correct GPT name), filesystems (with the correct label) or image
+files (with the correct file name). Overlays are labeled/named either
+"full\-ov", which will be mounted on /, or "custom\-ov", which can be
+completely customized (see \fIlive\-persistence.conf\fP(5)). The order these are
+handled are: full\-ov, custom\-ov. Overlay image files have extensions which
+determines their filesystem, e.g. "custom\-ov.ext4".
 .IP "\fBpersistence\-encryption\fP=\fITYPE1\fP,\fITYPE2\fP ... \fITYPEn\fP" 4
 This option determines which types of encryption that we allow to be used
 when probing devices for persistence media. If "none" is in the list, we
@@ -196,22 +192,20 @@ media. Whenever a device containing encrypted media is probed the user will
 be prompted for the passphrase. The default value is "none".
 .IP \fBpersistence\-media\fP={\fIremovable\fP|\fIremovable\-usb\fP} 4
 If you specify the keyword 'removable', live\-boot will try to find
-persistence and snapshot partitions on removable media only. Note that if
-you want to further restrict the media to usb mass storage only, you can use
-the 'removable\-usb' keyword.
+persistence partitions on removable media only. Note that if you want to
+further restrict the media to usb mass storage only, you can use the
+\&'removable\-usb' keyword.
 .IP "\fBpersistence\-method\fP=\fITYPE1\fP,\fITYPE2\fP ... \fITYPEn\fP" 4
 This option determines which types of persistence media we allow. If
 "overlay" is in the list, we consider overlays (i.e. "live\-rw" and
-"home\-rw"); if "snapshot" is in the list, we consider snapshots
-(i.e. "live\-sn" and "home\-sn"). The default is "overlay,snapshot".
+"home\-rw"). The default is "overlay".
 .IP \fBpersistence\-path\fP=\fIPATH\fP 4
 live\-boot will look for persistency files in the root directory of a
 partition, with this parameter, the path can be configured so that you can
 have multiple directories on the same partition to store persistency files.
 .IP \fBpersistence\-read\-only\fP 4
 Filesystem changes are not saved back to persistence media. In particular,
-overlays and netboot NFS mounts are mounted read\-only, and snapshots are not
-resynced on shutdown.
+overlays and netboot NFS mounts are mounted read\-only.
 .IP "\fBpersistence\-storage\fP=\fITYPE1\fP,\fITYPE2\fP ... \fITYPEn\fP" 4
 This option determines which types of persistence storage to consider when
 probing for persistence media. If "filesystem" is in the list, filesystems
@@ -256,6 +250,7 @@ unionfs.
 Some variables can be configured via this config file (inside the live
 system).
 .IP \fBlive/filesystem.module\fP 4
+.\" FIXME
 This optional file (inside the live media) contains a list of white\-space or
 carriage\-return\-separated file names corresponding to disk images in the
 "/live" directory. If this file exists, only images listed here will be
@@ -264,17 +259,6 @@ here. The first entry in this file will be the "lowest" point in the aufs,
 and the last file in this list will be on the "top" of the aufs, directly
 below /overlay.  Without this file, any images in the "/live" directory are
 loaded in alphanumeric order.
-.IP \fB/etc/live\-persistence.binds\fP 4
-This optional file (which resides in the rootfs system, not in the live
-media) is used as a list of directories which not need be persistent:
-ie. their content does not need to survive reboots when using the
-persistence features.
-.br
-.\" FIXME
-This saves expensive writes and speeds up operations on volatile data such
-as web caches and temporary files (like e.g. /tmp and .mozilla) which are
-regenerated each time. This is achieved by bind mounting each listed
-directory with a tmpfs on the original path.
 
 .SH FILES
 .IP \fB/etc/live/boot.conf\fP 4
@@ -284,8 +268,6 @@ directory with a tmpfs on the original path.
 .IP \fBlive\-persistence.conf\fP 4
 
 .SH "SEE ALSO"
-\fIlive\-snapshot\fP(1)
-.PP
 \fIlive\-persistence.conf\fP(5)
 .PP
 \fIlive\-build\fP(7)
index ae5b183..298abef 100644 (file)
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BOOT conf 05.06.2012 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BOOT conf 06.06.2012 3.0~a31\-1 "Debian Live Project"
 
 .SH NAME
 \fBlive\-persistence.conf\fP \- Configuration file for persistence media in
diff --git a/manpages/de/live-snapshot.de.1 b/manpages/de/live-snapshot.de.1
deleted file mode 100644 (file)
index 3c13106..0000000
+++ /dev/null
@@ -1,114 +0,0 @@
-.\"*******************************************************************
-.\"
-.\" This file was generated with po4a. Translate the source file.
-.\"
-.\"*******************************************************************
-.TH LIVE\-BOOT 1 05.06.2012 3.0~a31\-1 "Debian Live Project"
-
-.SH NAME
-\fBlive\-snapshot\fP \- simple script to ease persistence usage
-
-.SH SYNOPSIS
-\fBlive\-snapshot\fP [\-c|\-\-cow \fIDIRECTORY] [\-d|\-\-device DEVICE\fP]
-[\-e|\-\-exclude\-list \fIFILE\fP] [\-o|\-\-output \fIFILE\fP] [\-t|\-\-type \fITYPE\fP]
-.br
-\fBlive\-snapshot\fP [\-r|\-\-resync\-string STRING]
-.br
-\fBlive\-snapshot\fP [\-h|\-\-help]
-.br
-\fBlive\-snapshot\fP [\-u|\-\-usage]
-.br
-\fBlive\-snapshot\fP [\-v|\-\-version]
-
-.SH DESCRIPTION
-live\-snapshot is a script which can be used to build the right types of
-persistence image files supported by \fIlive\-boot\fP(7). It is also used on
-exit by the live\-boot init script to resync the boot\-found snapshots
-devices.
-
-.SH OPTIONS
-.IP "\-c, \-\-cow \fIDIRECTORY\fP" 4
-specifies the input directory to be cloned in the image file. Its default
-value "/live/overlay" should be right for most uses. However it could be
-handy to specify "/home" and type ext4 for the type to prepare an image file
-suited to be directly mounted by live\-boot as home.
-.IP "\-d, \-\-device \fIDEVICE\fP" 4
-sets the device where the media with the snapshot/persistence file/partition
-will be put. If it is not specified, a tmpfs will be used and linked to the
-user's desktop to move it where it is needed. If the device has no
-filesystem, an ext4 fs will be automatically created and labelled according
-to the values specified after the "\-\-output" value or with a sane default.
-.IP "\-e, \-\-exclude\-list \fIFILE\fP" 4
-a file containing a list of filenames/paths that should not be saved. This
-exclude list will be remebered on the target snapshot media for reuse.
-.IP "\-o, \-\-output \fIFILE\fP" 4
-the filename/label used for the output file/partition. If left blank,
-live\-snapshot will search for a proper file on the device or use the whole
-partition.
-.IP "\-r, \-\-resync\-string \fISTRING\fP" 4
-internally used on resyncs.
-.IP "\-f, \-\-refresh" 4
-try to do the same operation that should be done at reboot or halt,
-resyncing boot\-time auto discovered snapshots. Useful to prevent a crash or
-surge power\-off.
-.IP "\-t, \-\-type \fITYPE\fP" 4
-Type could be one of "cpio", "squashfs", "ext2", "ext3", "ext4", or "jffs2".
-.IP "\-h, \-\-help" 4
-display help and exit.
-.IP "\-u, \-\-usage" 4
-show usage and exit.
-.IP "\-v, \-\-version" 4
-output version information and exit.
-
-.SH FILES
-.IP \fB/etc/live.conf\fP 4
-Some variables can be configured via this config file (inside the live
-system).
-.IP \fBlive/filesystem.module\fP 4
-This optional file (inside the live media) contains a list of white\-space or
-carriage\-return\-separated file names corresponding to disk images in the
-"/live" directory. If this file exists, only images listed here will be
-merged into the root aufs, and they will be loaded in the order listed
-here. The first entry in this file will be the "lowest" point in the aufs,
-and the last file in this list will be on the "top" of the aufs, directly
-below /overlay.  Without this file, any images in the "/live" directory are
-loaded in alphanumeric order.
-.IP \fB/etc/live\-persistence.binds\fP 4
-This optional file (which resides in the rootfs system, not in the live
-media) is used as a list of directories which not need be persistent:
-i.e. their content does not need to survive reboots when using the
-persistence features.
-.br
-This saves expensive writes and speeds up operations on volatile data such
-as web caches and temporary files (like e.g. /tmp and .mozilla) which are
-regenerated each time. This is achieved by bind mounting each listed
-directory with a tmpfs on the original path.
-.IP \fB/etc/live\-snapshot.list\fP 4
-This optional file, if present changes the behaviour of live\-snapshot: only
-files and directories listed there are included (integrally) in the
-snapshot. Beware, it is an experimental feature that only works for cpio
-targets now.
-
-.SH "SEE ALSO"
-\fIlive\-boot\fP(1)
-.PP
-\fIlive\-build\fP(7)
-.PP
-\fIlive\-config\fP(7)
-.PP
-\fIlive\-tools\fP(7)
-
-.SH HOMEPAGE
-More information about live\-boot and the Debian Live project can be found on
-the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
-<\fIhttp://live.debian.net/manual/\fP>.
-
-.SH BUGS
-Bugs can be reported by submitting a bugreport for the live\-boot package in
-the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or by
-writing a mail to the Debian Live mailing list at
-<\fIdebian\-live@lists.debian.org\fP>.
-
-.SH AUTHOR
-live\-boot was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
-the Debian project.
index 2606bbb..516b189 100644 (file)
@@ -1,4 +1,4 @@
-.TH LIVE\-BOOT 7 2012\-06\-05 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BOOT 7 2012\-06\-06 3.0~a31-1 "Debian Live Project"
 
 .SH NAME
 \fBlive\-boot\fR \- System Boot Scripts
@@ -109,17 +109,17 @@ This parameters allows to set a custom ramdisk size (it's the '\-o size' option
 .IP "\fBswapon\fR" 4
 This parameter enables usage of local swap partitions.
 .IP "\fBpersistence\fR" 4
-live\-boot will probe devices for persistence media. These can be partitions (with the correct GPT name), filesystems (with the correct label) or image/archive files (with the correct file name). Overlays are labeled/named either "full\-ov", which will be mounted on /, or "custom\-ov", which can be completely customized (see \fIlive-persistence.conf\fR(5)); snapshots are labeled/named either "live\-sn" or "home\-sn" and will be extracted into / or /home, respectively (see \fIlive\-snapshot\fR(1) for more information). The order these are handled are: full\-ov, custom\-ov, live-sn, home-sn. Overlay image files and snapshot archive files have extensions which determines their filesystem or archive type, e.g. "custom\-ov.ext4" and "home\-sn.squashfs".
+live\-boot will probe devices for persistence media. These can be partitions (with the correct GPT name), filesystems (with the correct label) or image files (with the correct file name). Overlays are labeled/named either "full\-ov", which will be mounted on /, or "custom\-ov", which can be completely customized (see \fIlive-persistence.conf\fR(5)). The order these are handled are: full\-ov, custom\-ov. Overlay image files have extensions which determines their filesystem, e.g. "custom\-ov.ext4".
 .IP "\fBpersistence\-encryption\fR=\fITYPE1\fR,\fITYPE2\fR ... \fITYPEn\fR" 4
 This option determines which types of encryption that we allow to be used when probing devices for persistence media. If "none" is in the list, we allow unencrypted media; if "luks" is in the list, we allow LUKS\-encrypted media. Whenever a device containing encrypted media is probed the user will be prompted for the passphrase. The default value is "none".
 .IP "\fBpersistence\-media\fR={\fIremovable\fR|\fIremovable\-usb\fR}" 4
-If you specify the keyword 'removable', live\-boot will try to find persistence and snapshot partitions on removable media only. Note that if you want to further restrict the media to usb mass storage only, you can use the 'removable\-usb' keyword.
+If you specify the keyword 'removable', live\-boot will try to find persistence partitions on removable media only. Note that if you want to further restrict the media to usb mass storage only, you can use the 'removable\-usb' keyword.
 .IP "\fBpersistence\-method\fR=\fITYPE1\fR,\fITYPE2\fR ... \fITYPEn\fR" 4
-This option determines which types of persistence media we allow. If "overlay" is in the list, we consider overlays (i.e. "live\-rw" and "home\-rw"); if "snapshot" is in the list, we consider snapshots (i.e. "live\-sn" and "home\-sn"). The default is "overlay,snapshot".
+This option determines which types of persistence media we allow. If "overlay" is in the list, we consider overlays (i.e. "live\-rw" and "home\-rw"). The default is "overlay".
 .IP "\fBpersistence\-path\fR=\fIPATH\fR" 4
 live\-boot will look for persistency files in the root directory of a partition, with this parameter, the path can be configured so that you can have multiple directories on the same partition to store persistency files.
 .IP "\fBpersistence\-read\-only\fR" 4
-Filesystem changes are not saved back to persistence media. In particular, overlays and netboot NFS mounts are mounted read-only, and snapshots are not resynced on shutdown.
+Filesystem changes are not saved back to persistence media. In particular, overlays and netboot NFS mounts are mounted read-only.
 .IP "\fBpersistence\-storage\fR=\fITYPE1\fR,\fITYPE2\fR ... \fITYPEn\fR" 4
 This option determines which types of persistence storage to consider when probing for persistence media. If "filesystem" is in the list, filesystems with matching labels will be used; if "file" is in the list, all filesystems will be probed for archives and image files with matching filenames. The default is "file,filesystem".
 .IP "\fBpersistence\-subtext\fR=\fISUFFIX\fR" 4
@@ -144,10 +144,6 @@ By default, live\-boot uses aufs. With this parameter, you can switch to unionfs
 Some variables can be configured via this config file (inside the live system).
 .IP "\fBlive/filesystem.module\fR" 4
 This optional file (inside the live media) contains a list of white\-space or carriage\-return\-separated file names corresponding to disk images in the "/live" directory. If this file exists, only images listed here will be merged into the root aufs, and they will be loaded in the order listed here. The first entry in this file will be the "lowest" point in the aufs, and the last file in this list will be on the "top" of the aufs, directly below /overlay.  Without this file, any images in the "/live" directory are loaded in alphanumeric order.
-.IP "\fB/etc/live\-persistence.binds\fR" 4
-This optional file (which resides in the rootfs system, not in the live media) is used as a list of directories which not need be persistent: ie. their content does not need to survive reboots when using the persistence features.
-.br
-This saves expensive writes and speeds up operations on volatile data such as web caches and temporary files (like e.g. /tmp and .mozilla) which are regenerated each time. This is achieved by bind mounting each listed directory with a tmpfs on the original path.
 .\" FIXME
 
 .SH FILES
@@ -158,8 +154,6 @@ This saves expensive writes and speeds up operations on volatile data such as we
 .IP "\fBlive-persistence.conf\fR" 4
 
 .SH SEE ALSO
-\fIlive\-snapshot\fR(1)
-.PP
 \fIlive-persistence.conf\fR(5)
 .PP
 \fIlive\-build\fR(7)
index 1ea2a79..194826d 100644 (file)
@@ -1,4 +1,4 @@
-.TH LIVE\-BOOT conf 2012\-06\-05 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BOOT conf 2012\-06\-06 3.0~a31-1 "Debian Live Project"
 
 .SH NAME
 \fBlive-persistence.conf\fR \- Configuration file for persistence media in
diff --git a/manpages/en/live-snapshot.1 b/manpages/en/live-snapshot.1
deleted file mode 100644 (file)
index 81e4a86..0000000
+++ /dev/null
@@ -1,70 +0,0 @@
-.TH LIVE\-BOOT 1 2012\-06\-05 3.0~a31-1 "Debian Live Project"
-
-.SH NAME
-\fBlive\-snapshot\fR \- simple script to ease persistence usage
-
-.SH SYNOPSIS
-\fBlive\-snapshot\fR [\-c|\-\-cow \fIDIRECTORY\fI] [\-d|\-\-device \fIDEVICE\fR] [\-e|\-\-exclude\-list \fIFILE\fR] [\-o|\-\-output \fIFILE\fR] [\-t|\-\-type \fITYPE\fR]
-.br
-\fBlive\-snapshot\fR [\-r|\-\-resync\-string \fRSTRING\fR]
-.br
-\fBlive\-snapshot\fR [\-h|\-\-help]
-.br
-\fBlive\-snapshot\fR [\-u|\-\-usage]
-.br
-\fBlive\-snapshot\fR [\-v|\-\-version]
-
-.SH DESCRIPTION
-live\-snapshot is a script which can be used to build the right types of persistence image files supported by \fIlive\-boot\fR(7). It is also used on exit by the live\-boot init script to resync the boot\-found snapshots devices.
-
-.SH OPTIONS
-.IP "\-c, \-\-cow \fIDIRECTORY\fR" 4
-specifies the input directory to be cloned in the image file. Its default value "/live/overlay" should be right for most uses. However it could be handy to specify "/home" and type ext4 for the type to prepare an image file suited to be directly mounted by live\-boot as home.
-.IP "\-d, \-\-device \fIDEVICE\fR" 4
-sets the device where the media with the snapshot/persistence file/partition will be put. If it is not specified, a tmpfs will be used and linked to the user's desktop to move it where it is needed. If the device has no filesystem, an ext4 fs will be automatically created and labelled according to the values specified after the "\-\-output" value or with a sane default.
-.IP "\-e, \-\-exclude\-list \fIFILE\fR" 4
-a file containing a list of filenames/paths that should not be saved. This exclude list will be remebered on the target snapshot media for reuse.
-.IP "\-o, \-\-output \fIFILE\fR" 4
-the filename/label used for the output file/partition. If left blank, live\-snapshot will search for a proper file on the device or use the whole partition.
-.IP "\-r, \-\-resync\-string \fISTRING\fR" 4
-internally used on resyncs.
-.IP "\-f, \-\-refresh" 4
-try to do the same operation that should be done at reboot or halt, resyncing boot\-time auto discovered snapshots. Useful to prevent a crash or surge power\-off.
-.IP "\-t, \-\-type \fITYPE\fR" 4
-Type could be one of "cpio", "squashfs", "ext2", "ext3", "ext4", or "jffs2".
-.IP "\-h, \-\-help" 4
-display help and exit.
-.IP "\-u, \-\-usage" 4
-show usage and exit.
-.IP "\-v, \-\-version" 4
-output version information and exit.
-
-.SH FILES
-.IP "\fB/etc/live.conf\fR" 4
-Some variables can be configured via this config file (inside the live system).
-.IP "\fBlive/filesystem.module\fR" 4
-This optional file (inside the live media) contains a list of white\-space or carriage\-return\-separated file names corresponding to disk images in the "/live" directory. If this file exists, only images listed here will be merged into the root aufs, and they will be loaded in the order listed here. The first entry in this file will be the "lowest" point in the aufs, and the last file in this list will be on the "top" of the aufs, directly below /overlay.  Without this file, any images in the "/live" directory are loaded in alphanumeric order.
-.IP "\fB/etc/live\-persistence.binds\fR" 4
-This optional file (which resides in the rootfs system, not in the live media) is used as a list of directories which not need be persistent: i.e. their content does not need to survive reboots when using the persistence features.
-.br
-This saves expensive writes and speeds up operations on volatile data such as web caches and temporary files (like e.g. /tmp and .mozilla) which are regenerated each time. This is achieved by bind mounting each listed directory with a tmpfs on the original path.
-.IP "\fB/etc/live\-snapshot.list\fR" 4
-This optional file, if present changes the behaviour of live\-snapshot: only files and directories listed there are included (integrally) in the snapshot. Beware, it is an experimental feature that only works for cpio targets now.
-
-.SH SEE ALSO
-\fIlive\-boot\fR(1)
-.PP
-\fIlive\-build\fR(7)
-.PP
-\fIlive\-config\fR(7)
-.PP
-\fIlive\-tools\fR(7)
-
-.SH HOMEPAGE
-More information about live\-boot and the Debian Live project can be found on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>.
-
-.SH BUGS
-Bugs can be reported by submitting a bugreport for the live\-boot package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@lists.debian.org\fR>.
-
-.SH AUTHOR
-live\-boot was written by Daniel Baumann <\fIdaniel@debian.org\fR> for the Debian project.
index f18888f..20b7358 100644 (file)
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BOOT 7 05.06.2012 3.0~a31\-1 "Proyecto Debian Live"
+.TH LIVE\-BOOT 7 06.06.2012 3.0~a31\-1 "Proyecto Debian Live"
 
 .SH NOMBRE
 \fBlive\-boot\fP \- Scripts de Arranque del Sistema
@@ -187,18 +187,13 @@ actualmente ningún efecto cuando se arranca con toram
 .IP \fBswapon\fP 4
 Este parámetro permite el uso de particiones swap locales.
 .IP \fBpersistence\fP 4
-live\-boot buscará dispositivos con "persistence". Estos pueden ser
-particiones (con el nombre GPT correcto), sistemas de ficheros (con la
-etiqueta correcta) o ficheros imagen/archivo (con el nombre de fichero
-correcto). Overlays con la etiqueta/nombre "full\-ov", que se montará en / o
-"custom\-ov", que puede ser completamente personalizado (ver
-\fIlive\-persistence.conf\fP(5)); las instantáneas tienen la etiqueta/nombre
-"live\-sn" o "home\-sn" y se extraerán respectivamente en / o /home (ver
-\fIlive\-snapshot\fP(1) para más información). El orden en que se tratan son:
-full\-ov, custom\-ov, live\-sn, home\-sn. Los ficheros imagen overlay y los
-ficheros archivo instantáneas tienen extensiones que determinan el tipo de
-fichero o de sistema de ficheros, por ejemplo, "custom\-ov.ext4" y
-"home\-sn.squashfs".
+live\-boot will probe devices for persistence media. These can be partitions
+(with the correct GPT name), filesystems (with the correct label) or image
+files (with the correct file name). Overlays are labeled/named either
+"full\-ov", which will be mounted on /, or "custom\-ov", which can be
+completely customized (see \fIlive\-persistence.conf\fP(5)). The order these are
+handled are: full\-ov, custom\-ov. Overlay image files have extensions which
+determines their filesystem, e.g. "custom\-ov.ext4".
 .IP "\fBpersistence\-encryption\fP=\fITYPE1\fP,\fITYPE2\fP ... \fITYPEn\fP" 4
 Esta opción determina qué tipo de cifrado se usa cuando se prueban los
 dispositivos de los medios con persistencia. Si se especifica "none" en la
@@ -207,26 +202,22 @@ se puede usar cifrado LUKS en los medios. Cada vez que se encuentra un
 dispositivo que contiene medios cifrados se pregunta al usuario una frase de
 contraseña. Por defecto es "none".
 .IP \fBpersistence\-media\fP={\fIremovable\fP|\fIremovable\-usb\fP} 4
-Si se especifica la palabra clave 'removable', live\-boot intentará encontrar
-particiones con persistencia e instantáneas únicamente en los medios
-extraíbles. Tener en cuenta que si se desea restringir aún más los medios a
-sistemas de almacenamiento masivo USB se puede utilizar la palabra clave
-\&'removable\-usb'
+If you specify the keyword 'removable', live\-boot will try to find
+persistence partitions on removable media only. Note that if you want to
+further restrict the media to usb mass storage only, you can use the
+\&'removable\-usb' keyword.
 .IP "\fBpersistence\-method\fP=\fITYPE1\fP,\fITYPE2\fP ... \fITYPEn\fP" 4
-Esta opción determina qué tipos de medios se permiten para la
-persistencia. Si se especifica "overlay" en la lista, se considera overlays
-(es decir "live\-rw" y "home\-rw"); si se especifica "snapshot" en la lista,
-se consideran instantáneas (es decir "live\-sn" y "home\-sn"). Por defecto es
-"overlay,snapshot".
+This option determines which types of persistence media we allow. If
+"overlay" is in the list, we consider overlays (i.e. "live\-rw" and
+"home\-rw"). The default is "overlay".
 .IP \fBpersistence\-path\fP=\fIPATH\fP 4
 live\-boot buscará ficheros con persistencia en el directorio raíz de una
 partición, con este parámetro, la ruta se puede configurar de modo que se
 pueda tener varios directorios en la misma partición para almacenar ficheros
 con persistencia.
 .IP \fBpersistence\-read\-only\fP 4
-Los cambios en el sistema de ficheros no se guardan de nuevo en los medios
-con persistencia. En particular, los overlays y los montajes NFS de red son
-montados en sólo lectura, y las instantáneas no se resincronizan al apagar.
+Filesystem changes are not saved back to persistence media. In particular,
+overlays and netboot NFS mounts are mounted read\-only.
 .IP "\fBpersistence\-storage\fP=\fITYPE1\fP,\fITYPE2\fP ... \fITYPEn\fP" 4
 Esta opción determina qué tipos de almacenamiento persistente hay que tener
 en cuenta cuando se comprueban los medios con persistencia. Si "filesystem"
@@ -279,6 +270,7 @@ configuración (dentro del sistema en vivo).
 Algunas variables pueden ser configuradas a través de este fichero de
 configuración (dentro del sistema en vivo).
 .IP \fBlive/filesystem.module\fP 4
+.\" FIXME
 #\-#\-#\-#\-#  live\-snapshot.1.po (live\-snapshot)  #\-#\-#\-#\-#
 Este fichero opcional (dentro del medio en vivo) contiene una lista de
 nombres de ficheros separados por espacios en blanco o retornos de carro que
@@ -299,18 +291,6 @@ este fichero será el punto "más bajo" en el aufs y el último fichero de esta
 lista estará en el punto "más alto" del aufs, justo debajo de /overlay. Sin
 este fichero, las imágenes en el directorio  "/live" se cargan en orden
 alfanumérico.
-.IP \fB/etc/live\-persistence.binds\fP 4
-Este fichero opcional (que reside en el sistema rootfs, no en los medios en
-vivo) se utiliza como una lista de directorios que no necesitan ser
-persistentes: es decir, su contenido no necesita sobrevivir tras reiniciar
-cuando se utiliza la persistencia.
-.br
-.\" FIXME
-Esto ahorra costosas escrituras y acelera las operaciones sobre los datos
-volátiles, tales como las caches web y los archivos temporales (como por
-ejemplo, /tmp y .mozilla) que se regeneran cada vez. Esto se logra mediante
-un montaje enlazado de cada directorio de la lista con un tmpfs en la ruta
-original.
 
 .SH FICHEROS
 .IP \fB/etc/live/boot.conf\fP 4
@@ -320,8 +300,6 @@ original.
 .IP \fBlive\-persistence.conf\fP 4
 
 .SH "VER ADEMÁS"
-\fIlive\-snapshot\fP(1)
-.PP
 \fIlive\-persistence.conf\fP(5)
 .PP
 \fIlive\-build\fP(7)
index e7dc500..e5b583e 100644 (file)
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BOOT conf 05.06.2012 3.0~a31\-1 "Proyecto Debian Live"
+.TH LIVE\-BOOT conf 06.06.2012 3.0~a31\-1 "Proyecto Debian Live"
 
 .SH NOMBRE
 \fBlive\-persistence.conf\fP \- Fichero para configurar medios de almacenamiento
diff --git a/manpages/es/live-snapshot.es.1 b/manpages/es/live-snapshot.es.1
deleted file mode 100644 (file)
index 0fe250c..0000000
+++ /dev/null
@@ -1,146 +0,0 @@
-.\"*******************************************************************
-.\"
-.\" This file was generated with po4a. Translate the source file.
-.\"
-.\"*******************************************************************
-.TH LIVE\-BOOT 1 05.06.2012 3.0~a31\-1 "Proyecto Debian Live"
-
-.SH NOMBRE
-\fBlive\-snapshot\fP \- sencillo script para facilitar el uso de la persistencia
-
-.SH SINOPSIS
-\fBlive\-snapshot\fP [\-c|\-\-cow \fIDIRECTORY] [\-d|\-\-device DEVICE\fP]
-[\-e|\-\-exclude\-list \fIFILE\fP] [\-o|\-\-output \fIFILE\fP] [\-t|\-\-type \fITYPE\fP]
-.br
-\fBlive\-snapshot\fP [\-r|\-\-resync\-string STRING]
-.br
-\fBlive\-snapshot\fP [\-h|\-\-help]
-.br
-\fBlive\-snapshot\fP [\-u|\-\-usage]
-.br
-\fBlive\-snapshot\fP [\-v|\-\-version]
-
-.SH DESCRIPCIÓN
-live\-snapshot es un script que puede ser usado para crear ficheros imagen
-adecuados para la persistencia y con soporte en \fIlive\-boot\fP(7). También es
-usado por el script init de live\-boot al salir para resincronizar las
-instantáneas encontradas en los dispositivos durante el arranque.
-
-.SH OPCIONES
-.IP "\-c, \-\-cow \fIDIRECTORY\fP" 4
-especifica qué directorio debe ser clonado en el fichero imagen. Su valor
-por defecto "/live/overlay" debería ser adecuado para la mayoria de
-usos. Sin embargo puede ser práctico especificar "/home" y \-\-type ext4 para
-preparar un fichero imagen adecuado para ser directamente montado por
-live\-boot como home.
-.IP "\-d, \-\-device \fIDEVICE\fP" 4
-establece el dispositivo donde los medios con la instantánea/persistencia
-fichero/partición será puesto. Si no se especifica, se usará un tmpfs y se
-hará un enlace al escritorio del usuario para que pueda moverlo donde sea
-necesario. Si el dispositivo no tiene sistema de ficheros, se creará
-automáticamente un ext4 fs con una etiqueta de acuerdo a los valores
-especificados después del valor "\-\-output" o con un valor por defecto
-adecuado.
-.IP "\-e, \-\-exclude\-list \fIFILE\fP" 4
-un fichero que contiene una lista de nombres de ficheros/rutas que no deben
-guardarse. Esta lista de exclusión será recordada en el medio de la
-instantánea objetivo para ser reutilizada.
-.IP "\-o, \-\-output \fIFILE\fP" 4
-el nombre del fichero/etiqueta utilizado para el fichero/partición
-resultante. Si se deja en blanco, live\-snapshot buscará el fichero adecuado
-en el dispositivo o utilizará la partición entera.
-.IP "\-r, \-\-resync\-string \fISTRING\fP" 4
-se usa internamente en las resincronizaciones
-.IP "\-f, \-\-refresh" 4
-intenta hacer la misma operación que se debería hacer al reiniciar o parar,
-resincronizando las instantáneas encontradas automáticamente durante el
-arranque. Es práctico para prevenir una averia o una subida de tensión.
-.IP "\-t, \-\-type \fITYPE\fP" 4
-El tipo puede ser uno de los siguientes: "cpio", "squashfs", "ext2", "ext3",
-"ext4", or "jffs2".
-.IP "\-h, \-\-help" 4
-muestra el menú de ayuda y sale.
-.IP "\-u, \-\-usage" 4
-muestra el menú de uso y sale.
-.IP "\-v, \-\-version" 4
-muestra información de la versión y sale.
-
-.SH FICHEROS
-.IP \fB/etc/live.conf\fP 4
-#\-#\-#\-#\-#  live\-snapshot.1.po (live\-snapshot)  #\-#\-#\-#\-#
-Algunas variables pueden ser configuradas a través de este fichero de
-configuración (dentro del sistema en vivo).
-#\-#\-#\-#\-#  live\-boot.7.po (live\-boot)  #\-#\-#\-#\-#
-Algunas variables pueden ser configuradas a través de este fichero de
-configuración (dentro del sistema en vivo).
-.IP \fBlive/filesystem.module\fP 4
-#\-#\-#\-#\-#  live\-snapshot.1.po (live\-snapshot)  #\-#\-#\-#\-#
-Este fichero opcional (dentro del medio en vivo) contiene una lista de
-nombres de ficheros separados por espacios en blanco o retornos de carro que
-corresponden a imágenes de disco en el directorio "/live". Si este fichero
-existe, sólo las imágenes que figuran en esta lista se fusionarán en la raíz
-aufs y se cargarán en el orden en que aparecen aquí. La primera entrada en
-este fichero será el punto "más bajo" en el aufs y el último fichero de esta
-lista estará en el punto "más alto" del aufs, justo debajo de /overlay. Sin
-este fichero, las imágenes en el directorio "/live" se cargan en orden
-alfanumérico.
-#\-#\-#\-#\-#  live\-boot.7.po (live\-boot)  #\-#\-#\-#\-#
-Este fichero opcional (dentro del medio en vivo) contiene una lista de
-nombres de ficheros separados por espacios en blanco o retornos de carro que
-corresponden a imágenes de disco en el directorio "/live". Si este fichero
-existe, sólo las imágenes que figuran en esta lista se fusionarán en la raíz
-aufs, y se cargarán en el orden en que aparecen aquí. La primera entrada en
-este fichero será el punto "más bajo" en el aufs y el último fichero de esta
-lista estará en el punto "más alto" del aufs, justo debajo de /overlay. Sin
-este fichero, las imágenes en el directorio  "/live" se cargan en orden
-alfanumérico.
-.IP \fB/etc/live\-persistence.binds\fP 4
-Este fichero opcional (que reside en el sistema rootfs, no en los medios en
-vivo) se utiliza como una lista de directorios que no necesitan ser
-persistentes: es decir, su contenido no necesita sobrevivir tras reiniciar
-cuando se utiliza la persistencia.
-.br
-Esto ahorra costosas escrituras y acelera las operaciones sobre los datos
-volátiles, tales como las caches web y los archivos temporales (como por
-ejemplo, /tmp y .mozilla) que se regeneran cada vez. Esto se logra mediante
-un montaje enlazado de cada directorio de la lista con un tmpfs en la ruta
-original.
-.IP \fB/etc/live\-snapshot.list\fP 4
-Este fichero opcional, si existe, cambia el comportamiento de live\-snapshot:
-únicamente se incluyen (integramente) en la instantánea los ficheros y los
-directorios listados allí. Tener cuidado, ésta es una funcionalidad
-experimental que sólo funciona con objetivos cpio en este momento.
-
-.SH "VER ADEMÁS"
-\fIlive\-boot\fP(1)
-.PP
-\fIlive\-build\fP(7)
-.PP
-\fIlive\-config\fP(7)
-.PP
-\fIlive\-tools\fP(7)
-
-.SH "PÁGINA WEB"
-#\-#\-#\-#\-#  live\-snapshot.1.po (live\-snapshot)  #\-#\-#\-#\-#
-Se puede encontrar más información acerca de live\-boot y el proyecto Debian
-Live en la página web <\fIhttp://live.debian.net/\fP> y en el manual
-<\fIhttp://live.debian.net/manual/\fP>.
-#\-#\-#\-#\-#  live\-boot.7.po (live\-boot)  #\-#\-#\-#\-#
-Se puede encontrar más información acerca de live\-boot y el proyecto Debian
-Live en la página web <\fIhttp://live.debian.net/\fP> y en el manual en
-<\fIhttp://live.debian.net/manual/\fP>.
-#\-#\-#\-#\-#  live\-persistence.conf.5.po (live\-persistence.conf)  #\-#\-#\-#\-#
-Se puede encontrar más información acerca de live\-boot y el proyecto Debian
-Live en la página web <\fIhttp://live.debian.net/\fP> y en el manual en
-<\fIhttp://live.debian.net/manual/\fP>.
-
-.SH ERRORES
-Se puede notificar los fallos enviando un informe de errores sobre el
-paquete live\-boot en el Debian Bug Tracking System en
-<\fIhttp://bugs.debian.org/\fP> o escribiendo un mensaje a la lista de
-correo de Debian Live a la dirección
-<\fIdebian\-live@lists.debian.org\fP>.
-
-.SH AUTOR
-live\-boot fue escrito por Daniel Baumann <\fIdaniel@debian.org\fP> para
-el proyecto Debian.
index f6e46e5..0e0b6ad 100644 (file)
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-boot 3.0~a31-1\n"
-"POT-Creation-Date: 2012-06-05 21:45+0300\n"
+"POT-Creation-Date: 2012-06-06 18:40+0300\n"
 "PO-Revision-Date: 2012-04-08 22:48+0300\n"
 "Last-Translator: Daniel Baumann <daniel@debian.org>\n"
 "Language-Team: none\n"
@@ -16,31 +16,31 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. type: TH
-#: en/live-boot.7:1 en/live-persistence.conf.5:1 en/live-snapshot.1:1
+#: en/live-boot.7:1 en/live-persistence.conf.5:1
 #, no-wrap
 msgid "LIVE-BOOT"
 msgstr ""
 
 #. type: TH
-#: en/live-boot.7:1 en/live-persistence.conf.5:1 en/live-snapshot.1:1
+#: en/live-boot.7:1 en/live-persistence.conf.5:1
 #, no-wrap
-msgid "2012-06-05"
-msgstr "05.06.2012"
+msgid "2012-06-06"
+msgstr "06.06.2012"
 
 #. type: TH
-#: en/live-boot.7:1 en/live-persistence.conf.5:1 en/live-snapshot.1:1
+#: en/live-boot.7:1 en/live-persistence.conf.5:1
 #, no-wrap
 msgid "3.0~a31-1"
 msgstr ""
 
 #. type: TH
-#: en/live-boot.7:1 en/live-persistence.conf.5:1 en/live-snapshot.1:1
+#: en/live-boot.7:1 en/live-persistence.conf.5:1
 #, no-wrap
 msgid "Debian Live Project"
 msgstr ""
 
 #. type: SH
-#: en/live-boot.7:3 en/live-persistence.conf.5:3 en/live-snapshot.1:3
+#: en/live-boot.7:3 en/live-persistence.conf.5:3
 #, no-wrap
 msgid "NAME"
 msgstr ""
@@ -51,7 +51,7 @@ msgid "B<live-boot> - System Boot Scripts"
 msgstr ""
 
 #. type: SH
-#: en/live-boot.7:6 en/live-persistence.conf.5:7 en/live-snapshot.1:17
+#: en/live-boot.7:6 en/live-persistence.conf.5:7
 #, no-wrap
 msgid "DESCRIPTION"
 msgstr ""
@@ -137,7 +137,7 @@ msgid ""
 msgstr ""
 
 #. type: SH
-#: en/live-boot.7:28 en/live-persistence.conf.5:57 en/live-snapshot.1:20
+#: en/live-boot.7:28 en/live-persistence.conf.5:57
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -571,16 +571,12 @@ msgstr ""
 #: en/live-boot.7:113
 msgid ""
 "live-boot will probe devices for persistence media. These can be partitions "
-"(with the correct GPT name), filesystems (with the correct label) or image/"
-"archive files (with the correct file name). Overlays are labeled/named "
-"either \"full-ov\", which will be mounted on /, or \"custom-ov\", which can "
-"be completely customized (see I<live-persistence.conf>(5)); snapshots are "
-"labeled/named either \"live-sn\" or \"home-sn\" and will be extracted into / "
-"or /home, respectively (see I<live-snapshot>(1) for more information). The "
-"order these are handled are: full-ov, custom-ov, live-sn, home-sn. Overlay "
-"image files and snapshot archive files have extensions which determines "
-"their filesystem or archive type, e.g. \"custom-ov.ext4\" and \"home-sn."
-"squashfs\"."
+"(with the correct GPT name), filesystems (with the correct label) or image "
+"files (with the correct file name). Overlays are labeled/named either \"full-"
+"ov\", which will be mounted on /, or \"custom-ov\", which can be completely "
+"customized (see I<live-persistence.conf>(5)). The order these are handled "
+"are: full-ov, custom-ov. Overlay image files have extensions which "
+"determines their filesystem, e.g. \"custom-ov.ext4\"."
 msgstr ""
 
 #. type: IP
@@ -609,9 +605,9 @@ msgstr ""
 #: en/live-boot.7:117
 msgid ""
 "If you specify the keyword 'removable', live-boot will try to find "
-"persistence and snapshot partitions on removable media only. Note that if "
-"you want to further restrict the media to usb mass storage only, you can use "
-"the 'removable-usb' keyword."
+"persistence partitions on removable media only. Note that if you want to "
+"further restrict the media to usb mass storage only, you can use the "
+"'removable-usb' keyword."
 msgstr ""
 
 #. type: IP
@@ -625,8 +621,7 @@ msgstr ""
 msgid ""
 "This option determines which types of persistence media we allow. If "
 "\"overlay\" is in the list, we consider overlays (i.e. \"live-rw\" and "
-"\"home-rw\"); if \"snapshot\" is in the list, we consider snapshots (i.e. "
-"\"live-sn\" and \"home-sn\"). The default is \"overlay,snapshot\"."
+"\"home-rw\"). The default is \"overlay\"."
 msgstr ""
 
 #. type: IP
@@ -653,8 +648,7 @@ msgstr ""
 #: en/live-boot.7:123
 msgid ""
 "Filesystem changes are not saved back to persistence media. In particular, "
-"overlays and netboot NFS mounts are mounted read-only, and snapshots are not "
-"resynced on shutdown."
+"overlays and netboot NFS mounts are mounted read-only."
 msgstr ""
 
 #. type: IP
@@ -782,26 +776,27 @@ msgid "FILES (old)"
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:143 en/live-snapshot.1:43
+#: en/live-boot.7:143
 #, no-wrap
 msgid "B</etc/live.conf>"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:145 en/live-snapshot.1:45
+#: en/live-boot.7:145
 msgid ""
 "Some variables can be configured via this config file (inside the live "
 "system)."
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:145 en/live-snapshot.1:45
+#: en/live-boot.7:145
 #, no-wrap
 msgid "B<live/filesystem.module>"
 msgstr ""
 
+#.  FIXME
 #. type: Plain text
-#: en/live-boot.7:147 en/live-snapshot.1:47
+#: en/live-boot.7:148
 msgid ""
 "This optional file (inside the live media) contains a list of white-space or "
 "carriage-return-separated file names corresponding to disk images in the \"/"
@@ -813,105 +808,76 @@ msgid ""
 "are loaded in alphanumeric order."
 msgstr ""
 
-#. type: IP
-#: en/live-boot.7:147 en/live-snapshot.1:47
-#, no-wrap
-msgid "B</etc/live-persistence.binds>"
-msgstr ""
-
-#. type: Plain text
-#: en/live-boot.7:149
-msgid ""
-"This optional file (which resides in the rootfs system, not in the live "
-"media) is used as a list of directories which not need be persistent: ie. "
-"their content does not need to survive reboots when using the persistence "
-"features."
-msgstr ""
-
-#. type: Plain text
-#: en/live-boot.7:152 en/live-snapshot.1:51
-msgid ""
-"This saves expensive writes and speeds up operations on volatile data such "
-"as web caches and temporary files (like e.g. /tmp and .mozilla) which are "
-"regenerated each time. This is achieved by bind mounting each listed "
-"directory with a tmpfs on the original path."
-msgstr ""
-
 #. type: SH
-#: en/live-boot.7:153 en/live-snapshot.1:42
+#: en/live-boot.7:149
 #, no-wrap
 msgid "FILES"
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:154
+#: en/live-boot.7:150
 #, no-wrap
 msgid "B</etc/live/boot.conf>"
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:155
+#: en/live-boot.7:151
 #, no-wrap
 msgid "B</etc/live/boot.d/*.conf>"
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:156
+#: en/live-boot.7:152
 #, no-wrap
 msgid "B<live/boot.conf>"
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:157
+#: en/live-boot.7:153
 #, no-wrap
 msgid "B<live/boot.d/*.conf>"
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:158
+#: en/live-boot.7:154
 #, no-wrap
 msgid "B<live-persistence.conf>"
 msgstr ""
 
 #. type: SH
-#: en/live-boot.7:160 en/live-persistence.conf.5:191 en/live-snapshot.1:54
+#: en/live-boot.7:156 en/live-persistence.conf.5:191
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:162
-msgid "I<live-snapshot>(1)"
-msgstr ""
-
-#. type: Plain text
-#: en/live-boot.7:164
+#: en/live-boot.7:158
 msgid "I<live-persistence.conf>(5)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:166 en/live-persistence.conf.5:195 en/live-snapshot.1:58
+#: en/live-boot.7:160 en/live-persistence.conf.5:195
 msgid "I<live-build>(7)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:168 en/live-persistence.conf.5:197 en/live-snapshot.1:60
+#: en/live-boot.7:162 en/live-persistence.conf.5:197
 msgid "I<live-config>(7)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:170 en/live-persistence.conf.5:199 en/live-snapshot.1:62
+#: en/live-boot.7:164 en/live-persistence.conf.5:199
 msgid "I<live-tools>(7)"
 msgstr ""
 
 #. type: SH
-#: en/live-boot.7:171 en/live-persistence.conf.5:200 en/live-snapshot.1:63
+#: en/live-boot.7:165 en/live-persistence.conf.5:200
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:173 en/live-persistence.conf.5:204 en/live-snapshot.1:65
+#: en/live-boot.7:167 en/live-persistence.conf.5:204
 msgid ""
 "More information about live-boot and the Debian Live project can be found on "
 "the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -919,13 +885,13 @@ msgid ""
 msgstr ""
 
 #. type: SH
-#: en/live-boot.7:174 en/live-persistence.conf.5:205 en/live-snapshot.1:66
+#: en/live-boot.7:168 en/live-persistence.conf.5:205
 #, no-wrap
 msgid "BUGS"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:176 en/live-persistence.conf.5:210 en/live-snapshot.1:68
+#: en/live-boot.7:170 en/live-persistence.conf.5:210
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-boot package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -934,13 +900,13 @@ msgid ""
 msgstr ""
 
 #. type: SH
-#: en/live-boot.7:177 en/live-persistence.conf.5:211 en/live-snapshot.1:69
+#: en/live-boot.7:171 en/live-persistence.conf.5:211
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:178 en/live-snapshot.1:70
+#: en/live-boot.7:172
 msgid ""
 "live-boot was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for "
 "the Debian project."
index 0c2111b..790e326 100644 (file)
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-boot 3.0~a31-1\n"
-"POT-Creation-Date: 2012-06-05 21:45+0300\n"
+"POT-Creation-Date: 2012-06-06 18:26+0300\n"
 "PO-Revision-Date: 2012-04-08 22:48+0300\n"
 "Last-Translator: Daniel Baumann <daniel@debian.org>\n"
 "Language-Team: none\n"
@@ -16,76 +16,76 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. type: TH
-#: en/live-boot.7:1 en/live-persistence.conf.5:1 en/live-snapshot.1:1
+#: en/live-boot.7:1 en/live-persistence.conf.5:1
 #, no-wrap
 msgid "LIVE-BOOT"
 msgstr ""
 
 #. type: TH
-#: en/live-boot.7:1 en/live-persistence.conf.5:1 en/live-snapshot.1:1
+#: en/live-boot.7:1 en/live-persistence.conf.5:1
 #, no-wrap
-msgid "2012-06-05"
-msgstr "05.06.2012"
+msgid "2012-06-06"
+msgstr "06.06.2012"
 
 #. type: TH
-#: en/live-boot.7:1 en/live-persistence.conf.5:1 en/live-snapshot.1:1
+#: en/live-boot.7:1 en/live-persistence.conf.5:1
 #, no-wrap
 msgid "3.0~a31-1"
 msgstr ""
 
 #. type: TH
-#: en/live-boot.7:1 en/live-persistence.conf.5:1 en/live-snapshot.1:1
+#: en/live-boot.7:1 en/live-persistence.conf.5:1
 #, no-wrap
 msgid "Debian Live Project"
 msgstr ""
 
 #. type: SH
-#: en/live-boot.7:3 en/live-persistence.conf.5:3 en/live-snapshot.1:3
+#: en/live-boot.7:3 en/live-persistence.conf.5:3
 #, no-wrap
 msgid "NAME"
 msgstr ""
 
 #. type: SH
-#: en/live-boot.7:6 en/live-persistence.conf.5:7 en/live-snapshot.1:17
+#: en/live-boot.7:6 en/live-persistence.conf.5:7
 #, no-wrap
 msgid "DESCRIPTION"
 msgstr ""
 
 #. type: SH
-#: en/live-boot.7:28 en/live-persistence.conf.5:57 en/live-snapshot.1:20
+#: en/live-boot.7:28 en/live-persistence.conf.5:57
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
 
 #. type: SH
-#: en/live-boot.7:160 en/live-persistence.conf.5:191 en/live-snapshot.1:54
+#: en/live-boot.7:160 en/live-persistence.conf.5:191
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:166 en/live-persistence.conf.5:195 en/live-snapshot.1:58
+#: en/live-boot.7:164 en/live-persistence.conf.5:195
 msgid "I<live-build>(7)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:168 en/live-persistence.conf.5:197 en/live-snapshot.1:60
+#: en/live-boot.7:166 en/live-persistence.conf.5:197
 msgid "I<live-config>(7)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:170 en/live-persistence.conf.5:199 en/live-snapshot.1:62
+#: en/live-boot.7:168 en/live-persistence.conf.5:199
 msgid "I<live-tools>(7)"
 msgstr ""
 
 #. type: SH
-#: en/live-boot.7:171 en/live-persistence.conf.5:200 en/live-snapshot.1:63
+#: en/live-boot.7:169 en/live-persistence.conf.5:200
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:173 en/live-persistence.conf.5:204 en/live-snapshot.1:65
+#: en/live-boot.7:171 en/live-persistence.conf.5:204
 msgid ""
 "More information about live-boot and the Debian Live project can be found on "
 "the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -93,13 +93,13 @@ msgid ""
 msgstr ""
 
 #. type: SH
-#: en/live-boot.7:174 en/live-persistence.conf.5:205 en/live-snapshot.1:66
+#: en/live-boot.7:172 en/live-persistence.conf.5:205
 #, no-wrap
 msgid "BUGS"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:176 en/live-persistence.conf.5:210 en/live-snapshot.1:68
+#: en/live-boot.7:174 en/live-persistence.conf.5:210
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-boot package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -108,7 +108,7 @@ msgid ""
 msgstr ""
 
 #. type: SH
-#: en/live-boot.7:177 en/live-persistence.conf.5:211 en/live-snapshot.1:69
+#: en/live-boot.7:175 en/live-persistence.conf.5:211
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
diff --git a/manpages/po/de/live-snapshot.1.po b/manpages/po/de/live-snapshot.1.po
deleted file mode 100644 (file)
index a485c39..0000000
+++ /dev/null
@@ -1,378 +0,0 @@
-# German translations for live-boot package
-# (C) 2006-2012 Daniel Baumann <daniel@debian.org>
-# This file is distributed under the same license as the live-boot package.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: live-boot 3.0~a31-1\n"
-"POT-Creation-Date: 2012-06-05 21:45+0300\n"
-"PO-Revision-Date: 2012-04-08 22:48+0300\n"
-"Last-Translator: Daniel Baumann <daniel@debian.org>\n"
-"Language-Team: none\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=ASCII\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. type: TH
-#: en/live-boot.7:1 en/live-persistence.conf.5:1 en/live-snapshot.1:1
-#, no-wrap
-msgid "LIVE-BOOT"
-msgstr ""
-
-#. type: TH
-#: en/live-boot.7:1 en/live-persistence.conf.5:1 en/live-snapshot.1:1
-#, no-wrap
-msgid "2012-06-05"
-msgstr "05.06.2012"
-
-#. type: TH
-#: en/live-boot.7:1 en/live-persistence.conf.5:1 en/live-snapshot.1:1
-#, no-wrap
-msgid "3.0~a31-1"
-msgstr ""
-
-#. type: TH
-#: en/live-boot.7:1 en/live-persistence.conf.5:1 en/live-snapshot.1:1
-#, no-wrap
-msgid "Debian Live Project"
-msgstr ""
-
-#. type: SH
-#: en/live-boot.7:3 en/live-persistence.conf.5:3 en/live-snapshot.1:3
-#, no-wrap
-msgid "NAME"
-msgstr ""
-
-#. type: SH
-#: en/live-boot.7:6 en/live-persistence.conf.5:7 en/live-snapshot.1:17
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr ""
-
-#. type: SH
-#: en/live-boot.7:28 en/live-persistence.conf.5:57 en/live-snapshot.1:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-#. type: IP
-#: en/live-boot.7:143 en/live-snapshot.1:43
-#, no-wrap
-msgid "B</etc/live.conf>"
-msgstr ""
-
-#. type: Plain text
-#: en/live-boot.7:145 en/live-snapshot.1:45
-msgid ""
-"Some variables can be configured via this config file (inside the live "
-"system)."
-msgstr ""
-
-#. type: IP
-#: en/live-boot.7:145 en/live-snapshot.1:45
-#, no-wrap
-msgid "B<live/filesystem.module>"
-msgstr ""
-
-#. type: Plain text
-#: en/live-boot.7:147 en/live-snapshot.1:47
-msgid ""
-"This optional file (inside the live media) contains a list of white-space or "
-"carriage-return-separated file names corresponding to disk images in the \"/"
-"live\" directory. If this file exists, only images listed here will be "
-"merged into the root aufs, and they will be loaded in the order listed here. "
-"The first entry in this file will be the \"lowest\" point in the aufs, and "
-"the last file in this list will be on the \"top\" of the aufs, directly "
-"below /overlay.  Without this file, any images in the \"/live\" directory "
-"are loaded in alphanumeric order."
-msgstr ""
-
-#. type: IP
-#: en/live-boot.7:147 en/live-snapshot.1:47
-#, no-wrap
-msgid "B</etc/live-persistence.binds>"
-msgstr ""
-
-#. type: Plain text
-#: en/live-boot.7:152 en/live-snapshot.1:51
-msgid ""
-"This saves expensive writes and speeds up operations on volatile data such "
-"as web caches and temporary files (like e.g. /tmp and .mozilla) which are "
-"regenerated each time. This is achieved by bind mounting each listed "
-"directory with a tmpfs on the original path."
-msgstr ""
-
-#. type: SH
-#: en/live-boot.7:153 en/live-snapshot.1:42
-#, no-wrap
-msgid "FILES"
-msgstr ""
-
-#. type: SH
-#: en/live-boot.7:160 en/live-persistence.conf.5:191 en/live-snapshot.1:54
-#, no-wrap
-msgid "SEE ALSO"
-msgstr ""
-
-#. type: Plain text
-#: en/live-boot.7:166 en/live-persistence.conf.5:195 en/live-snapshot.1:58
-msgid "I<live-build>(7)"
-msgstr ""
-
-#. type: Plain text
-#: en/live-boot.7:168 en/live-persistence.conf.5:197 en/live-snapshot.1:60
-msgid "I<live-config>(7)"
-msgstr ""
-
-#. type: Plain text
-#: en/live-boot.7:170 en/live-persistence.conf.5:199 en/live-snapshot.1:62
-msgid "I<live-tools>(7)"
-msgstr ""
-
-#. type: SH
-#: en/live-boot.7:171 en/live-persistence.conf.5:200 en/live-snapshot.1:63
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr ""
-
-#. type: Plain text
-#: en/live-boot.7:173 en/live-persistence.conf.5:204 en/live-snapshot.1:65
-msgid ""
-"More information about live-boot and the Debian Live project can be found on "
-"the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
-"E<lt>I<http://live.debian.net/manual/>E<gt>."
-msgstr ""
-
-#. type: SH
-#: en/live-boot.7:174 en/live-persistence.conf.5:205 en/live-snapshot.1:66
-#, no-wrap
-msgid "BUGS"
-msgstr ""
-
-#. type: Plain text
-#: en/live-boot.7:176 en/live-persistence.conf.5:210 en/live-snapshot.1:68
-msgid ""
-"Bugs can be reported by submitting a bugreport for the live-boot package in "
-"the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
-"writing a mail to the Debian Live mailing list at E<lt>I<debian-live@lists."
-"debian.org>E<gt>."
-msgstr ""
-
-#. type: SH
-#: en/live-boot.7:177 en/live-persistence.conf.5:211 en/live-snapshot.1:69
-#, no-wrap
-msgid "AUTHOR"
-msgstr ""
-
-#. type: Plain text
-#: en/live-boot.7:178 en/live-snapshot.1:70
-msgid ""
-"live-boot was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-
-#. type: Plain text
-#: en/live-snapshot.1:5
-msgid "B<live-snapshot> - simple script to ease persistence usage"
-msgstr ""
-
-#. type: SH
-#: en/live-snapshot.1:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr ""
-
-#. type: Plain text
-#: en/live-snapshot.1:8
-msgid ""
-"B<live-snapshot> [-c|--cow I<DIRECTORY] [-d|--device DEVICE>] [-e|--exclude-"
-"list I<FILE>] [-o|--output I<FILE>] [-t|--type I<TYPE>]"
-msgstr ""
-
-#. type: Plain text
-#: en/live-snapshot.1:10
-msgid "B<live-snapshot> [-r|--resync-string STRING]"
-msgstr ""
-
-#. type: Plain text
-#: en/live-snapshot.1:12
-msgid "B<live-snapshot> [-h|--help]"
-msgstr ""
-
-#. type: Plain text
-#: en/live-snapshot.1:14
-msgid "B<live-snapshot> [-u|--usage]"
-msgstr ""
-
-#. type: Plain text
-#: en/live-snapshot.1:16
-msgid "B<live-snapshot> [-v|--version]"
-msgstr ""
-
-#. type: Plain text
-#: en/live-snapshot.1:19
-msgid ""
-"live-snapshot is a script which can be used to build the right types of "
-"persistence image files supported by I<live-boot>(7). It is also used on "
-"exit by the live-boot init script to resync the boot-found snapshots devices."
-msgstr ""
-
-#. type: IP
-#: en/live-snapshot.1:21
-#, no-wrap
-msgid "-c, --cow I<DIRECTORY>"
-msgstr ""
-
-#. type: Plain text
-#: en/live-snapshot.1:23
-msgid ""
-"specifies the input directory to be cloned in the image file. Its default "
-"value \"/live/overlay\" should be right for most uses. However it could be "
-"handy to specify \"/home\" and type ext4 for the type to prepare an image "
-"file suited to be directly mounted by live-boot as home."
-msgstr ""
-
-#. type: IP
-#: en/live-snapshot.1:23
-#, no-wrap
-msgid "-d, --device I<DEVICE>"
-msgstr ""
-
-#. type: Plain text
-#: en/live-snapshot.1:25
-msgid ""
-"sets the device where the media with the snapshot/persistence file/partition "
-"will be put. If it is not specified, a tmpfs will be used and linked to the "
-"user's desktop to move it where it is needed. If the device has no "
-"filesystem, an ext4 fs will be automatically created and labelled according "
-"to the values specified after the \"--output\" value or with a sane default."
-msgstr ""
-
-#. type: IP
-#: en/live-snapshot.1:25
-#, no-wrap
-msgid "-e, --exclude-list I<FILE>"
-msgstr ""
-
-#. type: Plain text
-#: en/live-snapshot.1:27
-msgid ""
-"a file containing a list of filenames/paths that should not be saved. This "
-"exclude list will be remebered on the target snapshot media for reuse."
-msgstr ""
-
-#. type: IP
-#: en/live-snapshot.1:27
-#, no-wrap
-msgid "-o, --output I<FILE>"
-msgstr ""
-
-#. type: Plain text
-#: en/live-snapshot.1:29
-msgid ""
-"the filename/label used for the output file/partition. If left blank, live-"
-"snapshot will search for a proper file on the device or use the whole "
-"partition."
-msgstr ""
-
-#. type: IP
-#: en/live-snapshot.1:29
-#, no-wrap
-msgid "-r, --resync-string I<STRING>"
-msgstr ""
-
-#. type: Plain text
-#: en/live-snapshot.1:31
-msgid "internally used on resyncs."
-msgstr ""
-
-#. type: IP
-#: en/live-snapshot.1:31
-#, no-wrap
-msgid "-f, --refresh"
-msgstr ""
-
-#. type: Plain text
-#: en/live-snapshot.1:33
-msgid ""
-"try to do the same operation that should be done at reboot or halt, "
-"resyncing boot-time auto discovered snapshots. Useful to prevent a crash or "
-"surge power-off."
-msgstr ""
-
-#. type: IP
-#: en/live-snapshot.1:33
-#, no-wrap
-msgid "-t, --type I<TYPE>"
-msgstr ""
-
-#. type: Plain text
-#: en/live-snapshot.1:35
-msgid ""
-"Type could be one of \"cpio\", \"squashfs\", \"ext2\", \"ext3\", \"ext4\", "
-"or \"jffs2\"."
-msgstr ""
-
-#. type: IP
-#: en/live-snapshot.1:35
-#, no-wrap
-msgid "-h, --help"
-msgstr ""
-
-#. type: Plain text
-#: en/live-snapshot.1:37
-msgid "display help and exit."
-msgstr ""
-
-#. type: IP
-#: en/live-snapshot.1:37
-#, no-wrap
-msgid "-u, --usage"
-msgstr ""
-
-#. type: Plain text
-#: en/live-snapshot.1:39
-msgid "show usage and exit."
-msgstr ""
-
-#. type: IP
-#: en/live-snapshot.1:39
-#, no-wrap
-msgid "-v, --version"
-msgstr ""
-
-#. type: Plain text
-#: en/live-snapshot.1:41
-msgid "output version information and exit."
-msgstr ""
-
-#. type: Plain text
-#: en/live-snapshot.1:49
-msgid ""
-"This optional file (which resides in the rootfs system, not in the live "
-"media) is used as a list of directories which not need be persistent: i.e. "
-"their content does not need to survive reboots when using the persistence "
-"features."
-msgstr ""
-
-#. type: IP
-#: en/live-snapshot.1:51
-#, no-wrap
-msgid "B</etc/live-snapshot.list>"
-msgstr ""
-
-#. type: Plain text
-#: en/live-snapshot.1:53
-msgid ""
-"This optional file, if present changes the behaviour of live-snapshot: only "
-"files and directories listed there are included (integrally) in the "
-"snapshot. Beware, it is an experimental feature that only works for cpio "
-"targets now."
-msgstr ""
-
-#. type: Plain text
-#: en/live-snapshot.1:56
-msgid "I<live-boot>(1)"
-msgstr ""
index 018f31f..739eb55 100644 (file)
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-boot 3.0~a31-1\n"
-"POT-Creation-Date: 2012-06-05 21:45+0300\n"
+"POT-Creation-Date: 2012-06-06 18:40+0300\n"
 "PO-Revision-Date: 2012-05-13 18:30+0100\n"
 "Last-Translator: Carlos Zuferri «chals» <chals@altorricon.com>\n"
 "Language-Team:  none\n"
@@ -16,31 +16,31 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. type: TH
-#: en/live-boot.7:1 en/live-persistence.conf.5:1 en/live-snapshot.1:1
+#: en/live-boot.7:1 en/live-persistence.conf.5:1
 #, no-wrap
 msgid "LIVE-BOOT"
 msgstr "LIVE-BOOT"
 
 #. type: TH
-#: en/live-boot.7:1 en/live-persistence.conf.5:1 en/live-snapshot.1:1
+#: en/live-boot.7:1 en/live-persistence.conf.5:1
 #, no-wrap
-msgid "2012-06-05"
-msgstr "05.06.2012"
+msgid "2012-06-06"
+msgstr "06.06.2012"
 
 #. type: TH
-#: en/live-boot.7:1 en/live-persistence.conf.5:1 en/live-snapshot.1:1
+#: en/live-boot.7:1 en/live-persistence.conf.5:1
 #, no-wrap
 msgid "3.0~a31-1"
 msgstr "3.0~a31-1"
 
 #. type: TH
-#: en/live-boot.7:1 en/live-persistence.conf.5:1 en/live-snapshot.1:1
+#: en/live-boot.7:1 en/live-persistence.conf.5:1
 #, no-wrap
 msgid "Debian Live Project"
 msgstr "Proyecto Debian Live"
 
 #. type: SH
-#: en/live-boot.7:3 en/live-persistence.conf.5:3 en/live-snapshot.1:3
+#: en/live-boot.7:3 en/live-persistence.conf.5:3
 #, no-wrap
 msgid "NAME"
 msgstr "NOMBRE"
@@ -51,7 +51,7 @@ msgid "B<live-boot> - System Boot Scripts"
 msgstr "B<live-boot> - Scripts de Arranque del Sistema"
 
 #. type: SH
-#: en/live-boot.7:6 en/live-persistence.conf.5:7 en/live-snapshot.1:17
+#: en/live-boot.7:6 en/live-persistence.conf.5:7
 #, no-wrap
 msgid "DESCRIPTION"
 msgstr "DESCRIPCIÓN"
@@ -161,7 +161,7 @@ msgstr ""
 "(live/boot.conf, live/boot.d/*.conf)."
 
 #. type: SH
-#: en/live-boot.7:28 en/live-persistence.conf.5:57 en/live-snapshot.1:20
+#: en/live-boot.7:28 en/live-persistence.conf.5:57
 #, no-wrap
 msgid "OPTIONS"
 msgstr "OPCIONES"
@@ -688,18 +688,27 @@ msgstr "B<persistence>"
 
 #. type: Plain text
 #: en/live-boot.7:113
+#, fuzzy
+#| msgid ""
+#| "live-boot will probe devices for persistence media. These can be "
+#| "partitions (with the correct GPT name), filesystems (with the correct "
+#| "label) or image/archive files (with the correct file name). Overlays are "
+#| "labeled/named either \"full-ov\", which will be mounted on /, or \"custom-"
+#| "ov\", which can be completely customized (see I<live-persistence.conf>"
+#| "(5)); snapshots are labeled/named either \"live-sn\" or \"home-sn\" and "
+#| "will be extracted into / or /home, respectively (see I<live-snapshot>(1) "
+#| "for more information). The order these are handled are: full-ov, custom-"
+#| "ov, live-sn, home-sn. Overlay image files and snapshot archive files have "
+#| "extensions which determines their filesystem or archive type, e.g. "
+#| "\"custom-ov.ext4\" and \"home-sn.squashfs\"."
 msgid ""
 "live-boot will probe devices for persistence media. These can be partitions "
-"(with the correct GPT name), filesystems (with the correct label) or image/"
-"archive files (with the correct file name). Overlays are labeled/named "
-"either \"full-ov\", which will be mounted on /, or \"custom-ov\", which can "
-"be completely customized (see I<live-persistence.conf>(5)); snapshots are "
-"labeled/named either \"live-sn\" or \"home-sn\" and will be extracted into / "
-"or /home, respectively (see I<live-snapshot>(1) for more information). The "
-"order these are handled are: full-ov, custom-ov, live-sn, home-sn. Overlay "
-"image files and snapshot archive files have extensions which determines "
-"their filesystem or archive type, e.g. \"custom-ov.ext4\" and \"home-sn."
-"squashfs\"."
+"(with the correct GPT name), filesystems (with the correct label) or image "
+"files (with the correct file name). Overlays are labeled/named either \"full-"
+"ov\", which will be mounted on /, or \"custom-ov\", which can be completely "
+"customized (see I<live-persistence.conf>(5)). The order these are handled "
+"are: full-ov, custom-ov. Overlay image files have extensions which "
+"determines their filesystem, e.g. \"custom-ov.ext4\"."
 msgstr ""
 "live-boot buscará dispositivos con \"persistence\". Estos pueden ser "
 "particiones (con el nombre GPT correcto), sistemas de ficheros (con la "
@@ -744,11 +753,17 @@ msgstr "B<persistence-media>={I<removable>|I<removable-usb>}"
 
 #. type: Plain text
 #: en/live-boot.7:117
+#, fuzzy
+#| msgid ""
+#| "If you specify the keyword 'removable', live-boot will try to find "
+#| "persistence and snapshot partitions on removable media only. Note that if "
+#| "you want to further restrict the media to usb mass storage only, you can "
+#| "use the 'removable-usb' keyword."
 msgid ""
 "If you specify the keyword 'removable', live-boot will try to find "
-"persistence and snapshot partitions on removable media only. Note that if "
-"you want to further restrict the media to usb mass storage only, you can use "
-"the 'removable-usb' keyword."
+"persistence partitions on removable media only. Note that if you want to "
+"further restrict the media to usb mass storage only, you can use the "
+"'removable-usb' keyword."
 msgstr ""
 "Si se especifica la palabra clave 'removable', live-boot intentará encontrar "
 "particiones con persistencia e instantáneas únicamente en los medios "
@@ -764,11 +779,16 @@ msgstr "B<persistence-method>=I<TYPE1>,I<TYPE2> ... I<TYPEn>"
 
 #. type: Plain text
 #: en/live-boot.7:119
+#, fuzzy
+#| msgid ""
+#| "This option determines which types of persistence media we allow. If "
+#| "\"overlay\" is in the list, we consider overlays (i.e. \"live-rw\" and "
+#| "\"home-rw\"); if \"snapshot\" is in the list, we consider snapshots (i.e. "
+#| "\"live-sn\" and \"home-sn\"). The default is \"overlay,snapshot\"."
 msgid ""
 "This option determines which types of persistence media we allow. If "
 "\"overlay\" is in the list, we consider overlays (i.e. \"live-rw\" and "
-"\"home-rw\"); if \"snapshot\" is in the list, we consider snapshots (i.e. "
-"\"live-sn\" and \"home-sn\"). The default is \"overlay,snapshot\"."
+"\"home-rw\"). The default is \"overlay\"."
 msgstr ""
 "Esta opción determina qué tipos de medios se permiten para la persistencia. "
 "Si se especifica \"overlay\" en la lista, se considera overlays (es decir "
@@ -802,10 +822,14 @@ msgstr "B<persistence-read-only>"
 
 #. type: Plain text
 #: en/live-boot.7:123
+#, fuzzy
+#| msgid ""
+#| "Filesystem changes are not saved back to persistence media. In "
+#| "particular, overlays and netboot NFS mounts are mounted read-only, and "
+#| "snapshots are not resynced on shutdown."
 msgid ""
 "Filesystem changes are not saved back to persistence media. In particular, "
-"overlays and netboot NFS mounts are mounted read-only, and snapshots are not "
-"resynced on shutdown."
+"overlays and netboot NFS mounts are mounted read-only."
 msgstr ""
 "Los cambios en el sistema de ficheros no se guardan de nuevo en los medios "
 "con persistencia. En particular, los overlays y los montajes NFS de red son "
@@ -968,13 +992,13 @@ msgid "FILES (old)"
 msgstr "FICHEROS (antiguos)"
 
 #. type: IP
-#: en/live-boot.7:143 en/live-snapshot.1:43
+#: en/live-boot.7:143
 #, no-wrap
 msgid "B</etc/live.conf>"
 msgstr "B</etc/live.conf>"
 
 #. type: Plain text
-#: en/live-boot.7:145 en/live-snapshot.1:45
+#: en/live-boot.7:145
 msgid ""
 "Some variables can be configured via this config file (inside the live "
 "system)."
@@ -987,13 +1011,14 @@ msgstr ""
 "configuración (dentro del sistema en vivo)."
 
 #. type: IP
-#: en/live-boot.7:145 en/live-snapshot.1:45
+#: en/live-boot.7:145
 #, no-wrap
 msgid "B<live/filesystem.module>"
 msgstr "B<live/filesystem.module>"
 
+#.  FIXME
 #. type: Plain text
-#: en/live-boot.7:147 en/live-snapshot.1:47
+#: en/live-boot.7:148
 msgid ""
 "This optional file (inside the live media) contains a list of white-space or "
 "carriage-return-separated file names corresponding to disk images in the \"/"
@@ -1025,114 +1050,76 @@ msgstr ""
 "overlay. Sin este fichero, las imágenes en el directorio  \"/live\" se "
 "cargan en orden alfanumérico."
 
-#. type: IP
-#: en/live-boot.7:147 en/live-snapshot.1:47
-#, no-wrap
-msgid "B</etc/live-persistence.binds>"
-msgstr "B</etc/live-persistence.binds>"
-
-#. type: Plain text
-#: en/live-boot.7:149
-msgid ""
-"This optional file (which resides in the rootfs system, not in the live "
-"media) is used as a list of directories which not need be persistent: ie. "
-"their content does not need to survive reboots when using the persistence "
-"features."
-msgstr ""
-"Este fichero opcional (que reside en el sistema rootfs, no en los medios en "
-"vivo) se utiliza como una lista de directorios que no necesitan ser "
-"persistentes: es decir, su contenido no necesita sobrevivir tras reiniciar "
-"cuando se utiliza la persistencia."
-
-#. type: Plain text
-#: en/live-boot.7:152 en/live-snapshot.1:51
-msgid ""
-"This saves expensive writes and speeds up operations on volatile data such "
-"as web caches and temporary files (like e.g. /tmp and .mozilla) which are "
-"regenerated each time. This is achieved by bind mounting each listed "
-"directory with a tmpfs on the original path."
-msgstr ""
-"Esto ahorra costosas escrituras y acelera las operaciones sobre los datos "
-"volátiles, tales como las caches web y los archivos temporales (como por "
-"ejemplo, /tmp y .mozilla) que se regeneran cada vez. Esto se logra mediante "
-"un montaje enlazado de cada directorio de la lista con un tmpfs en la ruta "
-"original."
-
 #. type: SH
-#: en/live-boot.7:153 en/live-snapshot.1:42
+#: en/live-boot.7:149
 #, no-wrap
 msgid "FILES"
 msgstr "FICHEROS"
 
 #. type: IP
-#: en/live-boot.7:154
+#: en/live-boot.7:150
 #, no-wrap
 msgid "B</etc/live/boot.conf>"
 msgstr "B</etc/live/boot.conf>"
 
 #. type: IP
-#: en/live-boot.7:155
+#: en/live-boot.7:151
 #, no-wrap
 msgid "B</etc/live/boot.d/*.conf>"
 msgstr "B</etc/live/boot.d/*.conf>"
 
 #. type: IP
-#: en/live-boot.7:156
+#: en/live-boot.7:152
 #, no-wrap
 msgid "B<live/boot.conf>"
 msgstr "B<live/boot.conf>"
 
 #. type: IP
-#: en/live-boot.7:157
+#: en/live-boot.7:153
 #, no-wrap
 msgid "B<live/boot.d/*.conf>"
 msgstr "B<live/boot.d/*.conf>"
 
 #. type: IP
-#: en/live-boot.7:158
+#: en/live-boot.7:154
 #, no-wrap
 msgid "B<live-persistence.conf>"
 msgstr "B<live-persistence.conf>"
 
 #. type: SH
-#: en/live-boot.7:160 en/live-persistence.conf.5:191 en/live-snapshot.1:54
+#: en/live-boot.7:156 en/live-persistence.conf.5:191
 #, no-wrap
 msgid "SEE ALSO"
 msgstr "VER ADEMÁS"
 
 #. type: Plain text
-#: en/live-boot.7:162
-msgid "I<live-snapshot>(1)"
-msgstr "I<live-snapshot>(1)"
-
-#. type: Plain text
-#: en/live-boot.7:164
+#: en/live-boot.7:158
 msgid "I<live-persistence.conf>(5)"
 msgstr "I<live-persistence.conf>(5)"
 
 #. type: Plain text
-#: en/live-boot.7:166 en/live-persistence.conf.5:195 en/live-snapshot.1:58
+#: en/live-boot.7:160 en/live-persistence.conf.5:195
 msgid "I<live-build>(7)"
 msgstr "I<live-build>(7)"
 
 #. type: Plain text
-#: en/live-boot.7:168 en/live-persistence.conf.5:197 en/live-snapshot.1:60
+#: en/live-boot.7:162 en/live-persistence.conf.5:197
 msgid "I<live-config>(7)"
 msgstr "I<live-config>(7)"
 
 #. type: Plain text
-#: en/live-boot.7:170 en/live-persistence.conf.5:199 en/live-snapshot.1:62
+#: en/live-boot.7:164 en/live-persistence.conf.5:199
 msgid "I<live-tools>(7)"
 msgstr "I<live-tools>(7)"
 
 #. type: SH
-#: en/live-boot.7:171 en/live-persistence.conf.5:200 en/live-snapshot.1:63
+#: en/live-boot.7:165 en/live-persistence.conf.5:200
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr "PÁGINA WEB"
 
 #. type: Plain text
-#: en/live-boot.7:173 en/live-persistence.conf.5:204 en/live-snapshot.1:65
+#: en/live-boot.7:167 en/live-persistence.conf.5:204
 msgid ""
 "More information about live-boot and the Debian Live project can be found on "
 "the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -1152,13 +1139,13 @@ msgstr ""
 "E<lt>I<http://live.debian.net/manual/>E<gt>."
 
 #. type: SH
-#: en/live-boot.7:174 en/live-persistence.conf.5:205 en/live-snapshot.1:66
+#: en/live-boot.7:168 en/live-persistence.conf.5:205
 #, no-wrap
 msgid "BUGS"
 msgstr "ERRORES"
 
 #. type: Plain text
-#: en/live-boot.7:176 en/live-persistence.conf.5:210 en/live-snapshot.1:68
+#: en/live-boot.7:170 en/live-persistence.conf.5:210
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-boot package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -1171,13 +1158,13 @@ msgstr ""
 "Live a la dirección E<lt>I<debian-live@lists.debian.org>E<gt>."
 
 #. type: SH
-#: en/live-boot.7:177 en/live-persistence.conf.5:211 en/live-snapshot.1:69
+#: en/live-boot.7:171 en/live-persistence.conf.5:211
 #, no-wrap
 msgid "AUTHOR"
 msgstr "AUTOR"
 
 #. type: Plain text
-#: en/live-boot.7:178 en/live-snapshot.1:70
+#: en/live-boot.7:172
 msgid ""
 "live-boot was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for "
 "the Debian project."
index e554e72..4bda4a3 100644 (file)
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-boot 3.0~a31-1\n"
-"POT-Creation-Date: 2012-06-05 21:45+0300\n"
+"POT-Creation-Date: 2012-06-06 18:26+0300\n"
 "PO-Revision-Date: \n"
 "Last-Translator: Carlos Zuferri «chals» <chals@altorricon.com>\n"
 "Language-Team:  none\n"
@@ -15,76 +15,76 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 
 #. type: TH
-#: en/live-boot.7:1 en/live-persistence.conf.5:1 en/live-snapshot.1:1
+#: en/live-boot.7:1 en/live-persistence.conf.5:1
 #, no-wrap
 msgid "LIVE-BOOT"
 msgstr "LIVE-BOOT"
 
 #. type: TH
-#: en/live-boot.7:1 en/live-persistence.conf.5:1 en/live-snapshot.1:1
+#: en/live-boot.7:1 en/live-persistence.conf.5:1
 #, no-wrap
-msgid "2012-06-05"
-msgstr "05.06.2012"
+msgid "2012-06-06"
+msgstr "06.06.2012"
 
 #. type: TH
-#: en/live-boot.7:1 en/live-persistence.conf.5:1 en/live-snapshot.1:1
+#: en/live-boot.7:1 en/live-persistence.conf.5:1
 #, no-wrap
 msgid "3.0~a31-1"
 msgstr "3.0~a31-1"
 
 #. type: TH
-#: en/live-boot.7:1 en/live-persistence.conf.5:1 en/live-snapshot.1:1
+#: en/live-boot.7:1 en/live-persistence.conf.5:1
 #, no-wrap
 msgid "Debian Live Project"
 msgstr "Proyecto Debian Live"
 
 #. type: SH
-#: en/live-boot.7:3 en/live-persistence.conf.5:3 en/live-snapshot.1:3
+#: en/live-boot.7:3 en/live-persistence.conf.5:3
 #, no-wrap
 msgid "NAME"
 msgstr "NOMBRE"
 
 #. type: SH
-#: en/live-boot.7:6 en/live-persistence.conf.5:7 en/live-snapshot.1:17
+#: en/live-boot.7:6 en/live-persistence.conf.5:7
 #, no-wrap
 msgid "DESCRIPTION"
 msgstr "DESCRIPCIÓN"
 
 #. type: SH
-#: en/live-boot.7:28 en/live-persistence.conf.5:57 en/live-snapshot.1:20
+#: en/live-boot.7:28 en/live-persistence.conf.5:57
 #, no-wrap
 msgid "OPTIONS"
 msgstr "OPCIONES"
 
 #. type: SH
-#: en/live-boot.7:160 en/live-persistence.conf.5:191 en/live-snapshot.1:54
+#: en/live-boot.7:160 en/live-persistence.conf.5:191
 #, no-wrap
 msgid "SEE ALSO"
 msgstr "VER ADEMÁS"
 
 #. type: Plain text
-#: en/live-boot.7:166 en/live-persistence.conf.5:195 en/live-snapshot.1:58
+#: en/live-boot.7:164 en/live-persistence.conf.5:195
 msgid "I<live-build>(7)"
 msgstr "I<live-build>(7)"
 
 #. type: Plain text
-#: en/live-boot.7:168 en/live-persistence.conf.5:197 en/live-snapshot.1:60
+#: en/live-boot.7:166 en/live-persistence.conf.5:197
 msgid "I<live-config>(7)"
 msgstr "I<live-config>(7)"
 
 #. type: Plain text
-#: en/live-boot.7:170 en/live-persistence.conf.5:199 en/live-snapshot.1:62
+#: en/live-boot.7:168 en/live-persistence.conf.5:199
 msgid "I<live-tools>(7)"
 msgstr "I<live-tools>(7)"
 
 #. type: SH
-#: en/live-boot.7:171 en/live-persistence.conf.5:200 en/live-snapshot.1:63
+#: en/live-boot.7:169 en/live-persistence.conf.5:200
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr "PÁGINA WEB"
 
 #. type: Plain text
-#: en/live-boot.7:173 en/live-persistence.conf.5:204 en/live-snapshot.1:65
+#: en/live-boot.7:171 en/live-persistence.conf.5:204
 msgid ""
 "More information about live-boot and the Debian Live project can be found on "
 "the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -104,13 +104,13 @@ msgstr ""
 "E<lt>I<http://live.debian.net/manual/>E<gt>."
 
 #. type: SH
-#: en/live-boot.7:174 en/live-persistence.conf.5:205 en/live-snapshot.1:66
+#: en/live-boot.7:172 en/live-persistence.conf.5:205
 #, no-wrap
 msgid "BUGS"
 msgstr "ERRORES"
 
 #. type: Plain text
-#: en/live-boot.7:176 en/live-persistence.conf.5:210 en/live-snapshot.1:68
+#: en/live-boot.7:174 en/live-persistence.conf.5:210
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-boot package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -123,7 +123,7 @@ msgstr ""
 "Live a la dirección E<lt>I<debian-live@lists.debian.org>E<gt>."
 
 #. type: SH
-#: en/live-boot.7:177 en/live-persistence.conf.5:211 en/live-snapshot.1:69
+#: en/live-boot.7:175 en/live-persistence.conf.5:211
 #, no-wrap
 msgid "AUTHOR"
 msgstr "AUTOR"
diff --git a/manpages/po/es/live-snapshot.1.po b/manpages/po/es/live-snapshot.1.po
deleted file mode 100644 (file)
index c35ada9..0000000
+++ /dev/null
@@ -1,464 +0,0 @@
-# Spanish translations for live-boot package
-# (C) 2012 Carlos Zuferri «chals» <chals@altorricon.com>
-# This file is distributed under the same license as the live-boot package.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: live-boot 3.0~a31-1\n"
-"POT-Creation-Date: 2012-06-05 21:45+0300\n"
-"PO-Revision-Date: 2012-05-13 18:37+0100\n"
-"Last-Translator: Carlos Zuferri «chals» <chals@altorricon.com>\n"
-"Language-Team:  none\n"
-"Language: es\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. type: TH
-#: en/live-boot.7:1 en/live-persistence.conf.5:1 en/live-snapshot.1:1
-#, no-wrap
-msgid "LIVE-BOOT"
-msgstr "LIVE-BOOT"
-
-#. type: TH
-#: en/live-boot.7:1 en/live-persistence.conf.5:1 en/live-snapshot.1:1
-#, no-wrap
-msgid "2012-06-05"
-msgstr "05.06.2012"
-
-#. type: TH
-#: en/live-boot.7:1 en/live-persistence.conf.5:1 en/live-snapshot.1:1
-#, no-wrap
-msgid "3.0~a31-1"
-msgstr "3.0~a31-1"
-
-#. type: TH
-#: en/live-boot.7:1 en/live-persistence.conf.5:1 en/live-snapshot.1:1
-#, no-wrap
-msgid "Debian Live Project"
-msgstr "Proyecto Debian Live"
-
-#. type: SH
-#: en/live-boot.7:3 en/live-persistence.conf.5:3 en/live-snapshot.1:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOMBRE"
-
-#. type: SH
-#: en/live-boot.7:6 en/live-persistence.conf.5:7 en/live-snapshot.1:17
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPCIÓN"
-
-#. type: SH
-#: en/live-boot.7:28 en/live-persistence.conf.5:57 en/live-snapshot.1:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr "OPCIONES"
-
-#. type: IP
-#: en/live-boot.7:143 en/live-snapshot.1:43
-#, no-wrap
-msgid "B</etc/live.conf>"
-msgstr "B</etc/live.conf>"
-
-#. type: Plain text
-#: en/live-boot.7:145 en/live-snapshot.1:45
-msgid ""
-"Some variables can be configured via this config file (inside the live "
-"system)."
-msgstr ""
-"#-#-#-#-#  live-snapshot.1.po (live-snapshot)  #-#-#-#-#\n"
-"Algunas variables pueden ser configuradas a través de este fichero de "
-"configuración (dentro del sistema en vivo).\n"
-"#-#-#-#-#  live-boot.7.po (live-boot)  #-#-#-#-#\n"
-"Algunas variables pueden ser configuradas a través de este fichero de "
-"configuración (dentro del sistema en vivo)."
-
-#. type: IP
-#: en/live-boot.7:145 en/live-snapshot.1:45
-#, no-wrap
-msgid "B<live/filesystem.module>"
-msgstr "B<live/filesystem.module>"
-
-#. type: Plain text
-#: en/live-boot.7:147 en/live-snapshot.1:47
-msgid ""
-"This optional file (inside the live media) contains a list of white-space or "
-"carriage-return-separated file names corresponding to disk images in the \"/"
-"live\" directory. If this file exists, only images listed here will be "
-"merged into the root aufs, and they will be loaded in the order listed here. "
-"The first entry in this file will be the \"lowest\" point in the aufs, and "
-"the last file in this list will be on the \"top\" of the aufs, directly "
-"below /overlay.  Without this file, any images in the \"/live\" directory "
-"are loaded in alphanumeric order."
-msgstr ""
-"#-#-#-#-#  live-snapshot.1.po (live-snapshot)  #-#-#-#-#\n"
-"Este fichero opcional (dentro del medio en vivo) contiene una lista de "
-"nombres de ficheros separados por espacios en blanco o retornos de carro que "
-"corresponden a imágenes de disco en el directorio \"/live\". Si este fichero "
-"existe, sólo las imágenes que figuran en esta lista se fusionarán en la raíz "
-"aufs y se cargarán en el orden en que aparecen aquí. La primera entrada en "
-"este fichero será el punto \"más bajo\" en el aufs y el último fichero de "
-"esta lista estará en el punto \"más alto\" del aufs, justo debajo de /"
-"overlay. Sin este fichero, las imágenes en el directorio \"/live\" se cargan "
-"en orden alfanumérico.\n"
-"#-#-#-#-#  live-boot.7.po (live-boot)  #-#-#-#-#\n"
-"Este fichero opcional (dentro del medio en vivo) contiene una lista de "
-"nombres de ficheros separados por espacios en blanco o retornos de carro que "
-"corresponden a imágenes de disco en el directorio \"/live\". Si este fichero "
-"existe, sólo las imágenes que figuran en esta lista se fusionarán en la raíz "
-"aufs, y se cargarán en el orden en que aparecen aquí. La primera entrada en "
-"este fichero será el punto \"más bajo\" en el aufs y el último fichero de "
-"esta lista estará en el punto \"más alto\" del aufs, justo debajo de /"
-"overlay. Sin este fichero, las imágenes en el directorio  \"/live\" se "
-"cargan en orden alfanumérico."
-
-#. type: IP
-#: en/live-boot.7:147 en/live-snapshot.1:47
-#, no-wrap
-msgid "B</etc/live-persistence.binds>"
-msgstr "B</etc/live-persistence.binds>"
-
-#. type: Plain text
-#: en/live-boot.7:152 en/live-snapshot.1:51
-msgid ""
-"This saves expensive writes and speeds up operations on volatile data such "
-"as web caches and temporary files (like e.g. /tmp and .mozilla) which are "
-"regenerated each time. This is achieved by bind mounting each listed "
-"directory with a tmpfs on the original path."
-msgstr ""
-"Esto ahorra costosas escrituras y acelera las operaciones sobre los datos "
-"volátiles, tales como las caches web y los archivos temporales (como por "
-"ejemplo, /tmp y .mozilla) que se regeneran cada vez. Esto se logra mediante "
-"un montaje enlazado de cada directorio de la lista con un tmpfs en la ruta "
-"original."
-
-#. type: SH
-#: en/live-boot.7:153 en/live-snapshot.1:42
-#, no-wrap
-msgid "FILES"
-msgstr "FICHEROS"
-
-#. type: SH
-#: en/live-boot.7:160 en/live-persistence.conf.5:191 en/live-snapshot.1:54
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VER ADEMÁS"
-
-#. type: Plain text
-#: en/live-boot.7:166 en/live-persistence.conf.5:195 en/live-snapshot.1:58
-msgid "I<live-build>(7)"
-msgstr "I<live-build>(7)"
-
-#. type: Plain text
-#: en/live-boot.7:168 en/live-persistence.conf.5:197 en/live-snapshot.1:60
-msgid "I<live-config>(7)"
-msgstr "I<live-config>(7)"
-
-#. type: Plain text
-#: en/live-boot.7:170 en/live-persistence.conf.5:199 en/live-snapshot.1:62
-msgid "I<live-tools>(7)"
-msgstr "I<live-tools>(7)"
-
-#. type: SH
-#: en/live-boot.7:171 en/live-persistence.conf.5:200 en/live-snapshot.1:63
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "PÁGINA WEB"
-
-#. type: Plain text
-#: en/live-boot.7:173 en/live-persistence.conf.5:204 en/live-snapshot.1:65
-msgid ""
-"More information about live-boot and the Debian Live project can be found on "
-"the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
-"E<lt>I<http://live.debian.net/manual/>E<gt>."
-msgstr ""
-"#-#-#-#-#  live-snapshot.1.po (live-snapshot)  #-#-#-#-#\n"
-"Se puede encontrar más información acerca de live-boot y el proyecto Debian "
-"Live en la página web E<lt>I<http://live.debian.net/>E<gt> y en el manual "
-"E<lt>I<http://live.debian.net/manual/>E<gt>.\n"
-"#-#-#-#-#  live-boot.7.po (live-boot)  #-#-#-#-#\n"
-"Se puede encontrar más información acerca de live-boot y el proyecto Debian "
-"Live en la página web E<lt>I<http://live.debian.net/>E<gt> y en el manual en "
-"E<lt>I<http://live.debian.net/manual/>E<gt>.\n"
-"#-#-#-#-#  live-persistence.conf.5.po (live-persistence.conf)  #-#-#-#-#\n"
-"Se puede encontrar más información acerca de live-boot y el proyecto Debian "
-"Live en la página web E<lt>I<http://live.debian.net/>E<gt> y en el manual en "
-"E<lt>I<http://live.debian.net/manual/>E<gt>."
-
-#. type: SH
-#: en/live-boot.7:174 en/live-persistence.conf.5:205 en/live-snapshot.1:66
-#, no-wrap
-msgid "BUGS"
-msgstr "ERRORES"
-
-#. type: Plain text
-#: en/live-boot.7:176 en/live-persistence.conf.5:210 en/live-snapshot.1:68
-msgid ""
-"Bugs can be reported by submitting a bugreport for the live-boot package in "
-"the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
-"writing a mail to the Debian Live mailing list at E<lt>I<debian-live@lists."
-"debian.org>E<gt>."
-msgstr ""
-"Se puede notificar los fallos enviando un informe de errores sobre el "
-"paquete live-boot en el Debian Bug Tracking System en E<lt>I<http://bugs."
-"debian.org/>E<gt> o escribiendo un mensaje a la lista de correo de Debian "
-"Live a la dirección E<lt>I<debian-live@lists.debian.org>E<gt>."
-
-#. type: SH
-#: en/live-boot.7:177 en/live-persistence.conf.5:211 en/live-snapshot.1:69
-#, no-wrap
-msgid "AUTHOR"
-msgstr "AUTOR"
-
-#. type: Plain text
-#: en/live-boot.7:178 en/live-snapshot.1:70
-msgid ""
-"live-boot was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-boot fue escrito por Daniel Baumann E<lt>I<daniel@debian.org>E<gt> para "
-"el proyecto Debian."
-
-#. type: Plain text
-#: en/live-snapshot.1:5
-msgid "B<live-snapshot> - simple script to ease persistence usage"
-msgstr ""
-"B<live-snapshot> - sencillo script para facilitar el uso de la persistencia"
-
-#. type: SH
-#: en/live-snapshot.1:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SINOPSIS"
-
-#. type: Plain text
-#: en/live-snapshot.1:8
-msgid ""
-"B<live-snapshot> [-c|--cow I<DIRECTORY] [-d|--device DEVICE>] [-e|--exclude-"
-"list I<FILE>] [-o|--output I<FILE>] [-t|--type I<TYPE>]"
-msgstr ""
-"B<live-snapshot> [-c|--cow I<DIRECTORY] [-d|--device DEVICE>] [-e|--exclude-"
-"list I<FILE>] [-o|--output I<FILE>] [-t|--type I<TYPE>]"
-
-#. type: Plain text
-#: en/live-snapshot.1:10
-msgid "B<live-snapshot> [-r|--resync-string STRING]"
-msgstr "B<live-snapshot> [-r|--resync-string STRING]"
-
-#. type: Plain text
-#: en/live-snapshot.1:12
-msgid "B<live-snapshot> [-h|--help]"
-msgstr "B<live-snapshot> [-h|--help]"
-
-#. type: Plain text
-#: en/live-snapshot.1:14
-msgid "B<live-snapshot> [-u|--usage]"
-msgstr "B<live-snapshot> [-u|--usage]"
-
-#. type: Plain text
-#: en/live-snapshot.1:16
-msgid "B<live-snapshot> [-v|--version]"
-msgstr "B<live-snapshot> [-v|--version]"
-
-#. type: Plain text
-#: en/live-snapshot.1:19
-msgid ""
-"live-snapshot is a script which can be used to build the right types of "
-"persistence image files supported by I<live-boot>(7). It is also used on "
-"exit by the live-boot init script to resync the boot-found snapshots devices."
-msgstr ""
-"live-snapshot es un script que puede ser usado para crear ficheros imagen "
-"adecuados para la persistencia y con soporte en I<live-boot>(7). También es "
-"usado por el script init de live-boot al salir para resincronizar las "
-"instantáneas encontradas en los dispositivos durante el arranque."
-
-#. type: IP
-#: en/live-snapshot.1:21
-#, no-wrap
-msgid "-c, --cow I<DIRECTORY>"
-msgstr "-c, --cow I<DIRECTORY>"
-
-#. type: Plain text
-#: en/live-snapshot.1:23
-msgid ""
-"specifies the input directory to be cloned in the image file. Its default "
-"value \"/live/overlay\" should be right for most uses. However it could be "
-"handy to specify \"/home\" and type ext4 for the type to prepare an image "
-"file suited to be directly mounted by live-boot as home."
-msgstr ""
-"especifica qué directorio debe ser clonado en el fichero imagen. Su valor "
-"por defecto \"/live/overlay\" debería ser adecuado para la mayoria de usos. "
-"Sin embargo puede ser práctico especificar \"/home\" y --type ext4 para "
-"preparar un fichero imagen adecuado para ser directamente montado por live-"
-"boot como home."
-
-#. type: IP
-#: en/live-snapshot.1:23
-#, no-wrap
-msgid "-d, --device I<DEVICE>"
-msgstr "-d, --device I<DEVICE>"
-
-#. type: Plain text
-#: en/live-snapshot.1:25
-msgid ""
-"sets the device where the media with the snapshot/persistence file/partition "
-"will be put. If it is not specified, a tmpfs will be used and linked to the "
-"user's desktop to move it where it is needed. If the device has no "
-"filesystem, an ext4 fs will be automatically created and labelled according "
-"to the values specified after the \"--output\" value or with a sane default."
-msgstr ""
-"establece el dispositivo donde los medios con la instantánea/persistencia "
-"fichero/partición será puesto. Si no se especifica, se usará un tmpfs y se "
-"hará un enlace al escritorio del usuario para que pueda moverlo donde sea "
-"necesario. Si el dispositivo no tiene sistema de ficheros, se creará "
-"automáticamente un ext4 fs con una etiqueta de acuerdo a los valores "
-"especificados después del valor \"--output\" o con un valor por defecto "
-"adecuado."
-
-#. type: IP
-#: en/live-snapshot.1:25
-#, no-wrap
-msgid "-e, --exclude-list I<FILE>"
-msgstr "-e, --exclude-list I<FILE>"
-
-#. type: Plain text
-#: en/live-snapshot.1:27
-msgid ""
-"a file containing a list of filenames/paths that should not be saved. This "
-"exclude list will be remebered on the target snapshot media for reuse."
-msgstr ""
-"un fichero que contiene una lista de nombres de ficheros/rutas que no deben "
-"guardarse. Esta lista de exclusión será recordada en el medio de la "
-"instantánea objetivo para ser reutilizada."
-
-#. type: IP
-#: en/live-snapshot.1:27
-#, no-wrap
-msgid "-o, --output I<FILE>"
-msgstr "-o, --output I<FILE>"
-
-#. type: Plain text
-#: en/live-snapshot.1:29
-msgid ""
-"the filename/label used for the output file/partition. If left blank, live-"
-"snapshot will search for a proper file on the device or use the whole "
-"partition."
-msgstr ""
-"el nombre del fichero/etiqueta utilizado para el fichero/partición "
-"resultante. Si se deja en blanco, live-snapshot buscará el fichero adecuado "
-"en el dispositivo o utilizará la partición entera."
-
-#. type: IP
-#: en/live-snapshot.1:29
-#, no-wrap
-msgid "-r, --resync-string I<STRING>"
-msgstr "-r, --resync-string I<STRING>"
-
-#. type: Plain text
-#: en/live-snapshot.1:31
-msgid "internally used on resyncs."
-msgstr "se usa internamente en las resincronizaciones"
-
-#. type: IP
-#: en/live-snapshot.1:31
-#, no-wrap
-msgid "-f, --refresh"
-msgstr "-f, --refresh"
-
-#. type: Plain text
-#: en/live-snapshot.1:33
-msgid ""
-"try to do the same operation that should be done at reboot or halt, "
-"resyncing boot-time auto discovered snapshots. Useful to prevent a crash or "
-"surge power-off."
-msgstr ""
-"intenta hacer la misma operación que se debería hacer al reiniciar o parar, "
-"resincronizando las instantáneas encontradas automáticamente durante el "
-"arranque. Es práctico para prevenir una averia o una subida de tensión."
-
-#. type: IP
-#: en/live-snapshot.1:33
-#, no-wrap
-msgid "-t, --type I<TYPE>"
-msgstr "-t, --type I<TYPE>"
-
-#. type: Plain text
-#: en/live-snapshot.1:35
-msgid ""
-"Type could be one of \"cpio\", \"squashfs\", \"ext2\", \"ext3\", \"ext4\", "
-"or \"jffs2\"."
-msgstr ""
-"El tipo puede ser uno de los siguientes: \"cpio\", \"squashfs\", \"ext2\", "
-"\"ext3\", \"ext4\", or \"jffs2\"."
-
-#. type: IP
-#: en/live-snapshot.1:35
-#, no-wrap
-msgid "-h, --help"
-msgstr "-h, --help"
-
-#. type: Plain text
-#: en/live-snapshot.1:37
-msgid "display help and exit."
-msgstr "muestra el menú de ayuda y sale."
-
-#. type: IP
-#: en/live-snapshot.1:37
-#, no-wrap
-msgid "-u, --usage"
-msgstr "-u, --usage"
-
-#. type: Plain text
-#: en/live-snapshot.1:39
-msgid "show usage and exit."
-msgstr "muestra el menú de uso y sale."
-
-#. type: IP
-#: en/live-snapshot.1:39
-#, no-wrap
-msgid "-v, --version"
-msgstr "-v, --version"
-
-#. type: Plain text
-#: en/live-snapshot.1:41
-msgid "output version information and exit."
-msgstr "muestra información de la versión y sale."
-
-#. type: Plain text
-#: en/live-snapshot.1:49
-msgid ""
-"This optional file (which resides in the rootfs system, not in the live "
-"media) is used as a list of directories which not need be persistent: i.e. "
-"their content does not need to survive reboots when using the persistence "
-"features."
-msgstr ""
-"Este fichero opcional (que reside en el sistema rootfs, no en los medios en "
-"vivo) se utiliza como una lista de directorios que no necesitan ser "
-"persistentes: es decir, su contenido no necesita sobrevivir tras reiniciar "
-"cuando se utiliza la persistencia."
-
-#. type: IP
-#: en/live-snapshot.1:51
-#, no-wrap
-msgid "B</etc/live-snapshot.list>"
-msgstr "B</etc/live-snapshot.list>"
-
-#. type: Plain text
-#: en/live-snapshot.1:53
-msgid ""
-"This optional file, if present changes the behaviour of live-snapshot: only "
-"files and directories listed there are included (integrally) in the "
-"snapshot. Beware, it is an experimental feature that only works for cpio "
-"targets now."
-msgstr ""
-"Este fichero opcional, si existe, cambia el comportamiento de live-snapshot: "
-"únicamente se incluyen (integramente) en la instantánea los ficheros y los "
-"directorios listados allí. Tener cuidado, ésta es una funcionalidad "
-"experimental que sólo funciona con objetivos cpio en este momento."
-
-#. type: Plain text
-#: en/live-snapshot.1:56
-msgid "I<live-boot>(1)"
-msgstr "I<live-boot>(1)"
index f15b292..943a035 100644 (file)
@@ -2,4 +2,3 @@
 [po4a_paths] pot/$master.pot $lang:po/$lang/$master.po
 [type: man] en/live-boot.7 $lang:$lang/live-boot.$lang.7
 [type: man] en/live-persistence.conf.5 $lang:$lang/live-persistence.conf.$lang.5
-[type: man] en/live-snapshot.1 $lang:$lang/live-snapshot.$lang.1
index 29be366..57d8a13 100644 (file)
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-boot VERSION\n"
-"POT-Creation-Date: 2012-06-05 21:45+0300\n"
+"POT-Creation-Date: 2012-06-06 18:40+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17,31 +17,31 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 
 #. type: TH
-#: en/live-boot.7:1 en/live-persistence.conf.5:1 en/live-snapshot.1:1
+#: en/live-boot.7:1 en/live-persistence.conf.5:1
 #, no-wrap
 msgid "LIVE-BOOT"
 msgstr ""
 
 #. type: TH
-#: en/live-boot.7:1 en/live-persistence.conf.5:1 en/live-snapshot.1:1
+#: en/live-boot.7:1 en/live-persistence.conf.5:1
 #, no-wrap
-msgid "2012-06-05"
+msgid "2012-06-06"
 msgstr ""
 
 #. type: TH
-#: en/live-boot.7:1 en/live-persistence.conf.5:1 en/live-snapshot.1:1
+#: en/live-boot.7:1 en/live-persistence.conf.5:1
 #, no-wrap
 msgid "3.0~a31-1"
 msgstr ""
 
 #. type: TH
-#: en/live-boot.7:1 en/live-persistence.conf.5:1 en/live-snapshot.1:1
+#: en/live-boot.7:1 en/live-persistence.conf.5:1
 #, no-wrap
 msgid "Debian Live Project"
 msgstr ""
 
 #. type: SH
-#: en/live-boot.7:3 en/live-persistence.conf.5:3 en/live-snapshot.1:3
+#: en/live-boot.7:3 en/live-persistence.conf.5:3
 #, no-wrap
 msgid "NAME"
 msgstr ""
@@ -52,7 +52,7 @@ msgid "B<live-boot> - System Boot Scripts"
 msgstr ""
 
 #. type: SH
-#: en/live-boot.7:6 en/live-persistence.conf.5:7 en/live-snapshot.1:17
+#: en/live-boot.7:6 en/live-persistence.conf.5:7
 #, no-wrap
 msgid "DESCRIPTION"
 msgstr ""
@@ -138,7 +138,7 @@ msgid ""
 msgstr ""
 
 #. type: SH
-#: en/live-boot.7:28 en/live-persistence.conf.5:57 en/live-snapshot.1:20
+#: en/live-boot.7:28 en/live-persistence.conf.5:57
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -572,16 +572,12 @@ msgstr ""
 #: en/live-boot.7:113
 msgid ""
 "live-boot will probe devices for persistence media. These can be partitions "
-"(with the correct GPT name), filesystems (with the correct label) or image/"
-"archive files (with the correct file name). Overlays are labeled/named "
-"either \"full-ov\", which will be mounted on /, or \"custom-ov\", which can "
-"be completely customized (see I<live-persistence.conf>(5)); snapshots are "
-"labeled/named either \"live-sn\" or \"home-sn\" and will be extracted into / "
-"or /home, respectively (see I<live-snapshot>(1) for more information). The "
-"order these are handled are: full-ov, custom-ov, live-sn, home-sn. Overlay "
-"image files and snapshot archive files have extensions which determines "
-"their filesystem or archive type, e.g. \"custom-ov.ext4\" and \"home-sn."
-"squashfs\"."
+"(with the correct GPT name), filesystems (with the correct label) or image "
+"files (with the correct file name). Overlays are labeled/named either \"full-"
+"ov\", which will be mounted on /, or \"custom-ov\", which can be completely "
+"customized (see I<live-persistence.conf>(5)). The order these are handled "
+"are: full-ov, custom-ov. Overlay image files have extensions which "
+"determines their filesystem, e.g. \"custom-ov.ext4\"."
 msgstr ""
 
 #. type: IP
@@ -610,9 +606,9 @@ msgstr ""
 #: en/live-boot.7:117
 msgid ""
 "If you specify the keyword 'removable', live-boot will try to find "
-"persistence and snapshot partitions on removable media only. Note that if "
-"you want to further restrict the media to usb mass storage only, you can use "
-"the 'removable-usb' keyword."
+"persistence partitions on removable media only. Note that if you want to "
+"further restrict the media to usb mass storage only, you can use the "
+"'removable-usb' keyword."
 msgstr ""
 
 #. type: IP
@@ -626,8 +622,7 @@ msgstr ""
 msgid ""
 "This option determines which types of persistence media we allow. If "
 "\"overlay\" is in the list, we consider overlays (i.e. \"live-rw\" and "
-"\"home-rw\"); if \"snapshot\" is in the list, we consider snapshots (i.e. "
-"\"live-sn\" and \"home-sn\"). The default is \"overlay,snapshot\"."
+"\"home-rw\"). The default is \"overlay\"."
 msgstr ""
 
 #. type: IP
@@ -654,8 +649,7 @@ msgstr ""
 #: en/live-boot.7:123
 msgid ""
 "Filesystem changes are not saved back to persistence media. In particular, "
-"overlays and netboot NFS mounts are mounted read-only, and snapshots are not "
-"resynced on shutdown."
+"overlays and netboot NFS mounts are mounted read-only."
 msgstr ""
 
 #. type: IP
@@ -783,26 +777,27 @@ msgid "FILES (old)"
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:143 en/live-snapshot.1:43
+#: en/live-boot.7:143
 #, no-wrap
 msgid "B</etc/live.conf>"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:145 en/live-snapshot.1:45
+#: en/live-boot.7:145
 msgid ""
 "Some variables can be configured via this config file (inside the live "
 "system)."
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:145 en/live-snapshot.1:45
+#: en/live-boot.7:145
 #, no-wrap
 msgid "B<live/filesystem.module>"
 msgstr ""
 
+#.  FIXME
 #. type: Plain text
-#: en/live-boot.7:147 en/live-snapshot.1:47
+#: en/live-boot.7:148
 msgid ""
 "This optional file (inside the live media) contains a list of white-space or "
 "carriage-return-separated file names corresponding to disk images in the \"/"
@@ -814,105 +809,76 @@ msgid ""
 "are loaded in alphanumeric order."
 msgstr ""
 
-#. type: IP
-#: en/live-boot.7:147 en/live-snapshot.1:47
-#, no-wrap
-msgid "B</etc/live-persistence.binds>"
-msgstr ""
-
-#. type: Plain text
-#: en/live-boot.7:149
-msgid ""
-"This optional file (which resides in the rootfs system, not in the live "
-"media) is used as a list of directories which not need be persistent: ie. "
-"their content does not need to survive reboots when using the persistence "
-"features."
-msgstr ""
-
-#. type: Plain text
-#: en/live-boot.7:152 en/live-snapshot.1:51
-msgid ""
-"This saves expensive writes and speeds up operations on volatile data such "
-"as web caches and temporary files (like e.g. /tmp and .mozilla) which are "
-"regenerated each time. This is achieved by bind mounting each listed "
-"directory with a tmpfs on the original path."
-msgstr ""
-
 #. type: SH
-#: en/live-boot.7:153 en/live-snapshot.1:42
+#: en/live-boot.7:149
 #, no-wrap
 msgid "FILES"
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:154
+#: en/live-boot.7:150
 #, no-wrap
 msgid "B</etc/live/boot.conf>"
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:155
+#: en/live-boot.7:151
 #, no-wrap
 msgid "B</etc/live/boot.d/*.conf>"
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:156
+#: en/live-boot.7:152
 #, no-wrap
 msgid "B<live/boot.conf>"
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:157
+#: en/live-boot.7:153
 #, no-wrap
 msgid "B<live/boot.d/*.conf>"
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:158
+#: en/live-boot.7:154
 #, no-wrap
 msgid "B<live-persistence.conf>"
 msgstr ""
 
 #. type: SH
-#: en/live-boot.7:160 en/live-persistence.conf.5:191 en/live-snapshot.1:54
+#: en/live-boot.7:156 en/live-persistence.conf.5:191
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:162
-msgid "I<live-snapshot>(1)"
-msgstr ""
-
-#. type: Plain text
-#: en/live-boot.7:164
+#: en/live-boot.7:158
 msgid "I<live-persistence.conf>(5)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:166 en/live-persistence.conf.5:195 en/live-snapshot.1:58
+#: en/live-boot.7:160 en/live-persistence.conf.5:195
 msgid "I<live-build>(7)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:168 en/live-persistence.conf.5:197 en/live-snapshot.1:60
+#: en/live-boot.7:162 en/live-persistence.conf.5:197
 msgid "I<live-config>(7)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:170 en/live-persistence.conf.5:199 en/live-snapshot.1:62
+#: en/live-boot.7:164 en/live-persistence.conf.5:199
 msgid "I<live-tools>(7)"
 msgstr ""
 
 #. type: SH
-#: en/live-boot.7:171 en/live-persistence.conf.5:200 en/live-snapshot.1:63
+#: en/live-boot.7:165 en/live-persistence.conf.5:200
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:173 en/live-persistence.conf.5:204 en/live-snapshot.1:65
+#: en/live-boot.7:167 en/live-persistence.conf.5:204
 msgid ""
 "More information about live-boot and the Debian Live project can be found on "
 "the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -920,13 +886,13 @@ msgid ""
 msgstr ""
 
 #. type: SH
-#: en/live-boot.7:174 en/live-persistence.conf.5:205 en/live-snapshot.1:66
+#: en/live-boot.7:168 en/live-persistence.conf.5:205
 #, no-wrap
 msgid "BUGS"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:176 en/live-persistence.conf.5:210 en/live-snapshot.1:68
+#: en/live-boot.7:170 en/live-persistence.conf.5:210
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-boot package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -935,13 +901,13 @@ msgid ""
 msgstr ""
 
 #. type: SH
-#: en/live-boot.7:177 en/live-persistence.conf.5:211 en/live-snapshot.1:69
+#: en/live-boot.7:171 en/live-persistence.conf.5:211
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:178 en/live-snapshot.1:70
+#: en/live-boot.7:172
 msgid ""
 "live-boot was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for "
 "the Debian project."
index a1a0291..45c1570 100644 (file)
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-boot VERSION\n"
-"POT-Creation-Date: 2012-06-05 21:45+0300\n"
+"POT-Creation-Date: 2012-06-06 18:26+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17,76 +17,76 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 
 #. type: TH
-#: en/live-boot.7:1 en/live-persistence.conf.5:1 en/live-snapshot.1:1
+#: en/live-boot.7:1 en/live-persistence.conf.5:1
 #, no-wrap
 msgid "LIVE-BOOT"
 msgstr ""
 
 #. type: TH
-#: en/live-boot.7:1 en/live-persistence.conf.5:1 en/live-snapshot.1:1
+#: en/live-boot.7:1 en/live-persistence.conf.5:1
 #, no-wrap
-msgid "2012-06-05"
+msgid "2012-06-06"
 msgstr ""
 
 #. type: TH
-#: en/live-boot.7:1 en/live-persistence.conf.5:1 en/live-snapshot.1:1
+#: en/live-boot.7:1 en/live-persistence.conf.5:1
 #, no-wrap
 msgid "3.0~a31-1"
 msgstr ""
 
 #. type: TH
-#: en/live-boot.7:1 en/live-persistence.conf.5:1 en/live-snapshot.1:1
+#: en/live-boot.7:1 en/live-persistence.conf.5:1
 #, no-wrap
 msgid "Debian Live Project"
 msgstr ""
 
 #. type: SH
-#: en/live-boot.7:3 en/live-persistence.conf.5:3 en/live-snapshot.1:3
+#: en/live-boot.7:3 en/live-persistence.conf.5:3
 #, no-wrap
 msgid "NAME"
 msgstr ""
 
 #. type: SH
-#: en/live-boot.7:6 en/live-persistence.conf.5:7 en/live-snapshot.1:17
+#: en/live-boot.7:6 en/live-persistence.conf.5:7
 #, no-wrap
 msgid "DESCRIPTION"
 msgstr ""
 
 #. type: SH
-#: en/live-boot.7:28 en/live-persistence.conf.5:57 en/live-snapshot.1:20
+#: en/live-boot.7:28 en/live-persistence.conf.5:57
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
 
 #. type: SH
-#: en/live-boot.7:160 en/live-persistence.conf.5:191 en/live-snapshot.1:54
+#: en/live-boot.7:160 en/live-persistence.conf.5:191
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:166 en/live-persistence.conf.5:195 en/live-snapshot.1:58
+#: en/live-boot.7:164 en/live-persistence.conf.5:195
 msgid "I<live-build>(7)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:168 en/live-persistence.conf.5:197 en/live-snapshot.1:60
+#: en/live-boot.7:166 en/live-persistence.conf.5:197
 msgid "I<live-config>(7)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:170 en/live-persistence.conf.5:199 en/live-snapshot.1:62
+#: en/live-boot.7:168 en/live-persistence.conf.5:199
 msgid "I<live-tools>(7)"
 msgstr ""
 
 #. type: SH
-#: en/live-boot.7:171 en/live-persistence.conf.5:200 en/live-snapshot.1:63
+#: en/live-boot.7:169 en/live-persistence.conf.5:200
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:173 en/live-persistence.conf.5:204 en/live-snapshot.1:65
+#: en/live-boot.7:171 en/live-persistence.conf.5:204
 msgid ""
 "More information about live-boot and the Debian Live project can be found on "
 "the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@@ -94,13 +94,13 @@ msgid ""
 msgstr ""
 
 #. type: SH
-#: en/live-boot.7:174 en/live-persistence.conf.5:205 en/live-snapshot.1:66
+#: en/live-boot.7:172 en/live-persistence.conf.5:205
 #, no-wrap
 msgid "BUGS"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:176 en/live-persistence.conf.5:210 en/live-snapshot.1:68
+#: en/live-boot.7:174 en/live-persistence.conf.5:210
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-boot package in "
 "the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -109,7 +109,7 @@ msgid ""
 msgstr ""
 
 #. type: SH
-#: en/live-boot.7:177 en/live-persistence.conf.5:211 en/live-snapshot.1:69
+#: en/live-boot.7:175 en/live-persistence.conf.5:211
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
diff --git a/manpages/pot/live-snapshot.1.pot b/manpages/pot/live-snapshot.1.pot
deleted file mode 100644 (file)
index 8e97c87..0000000
+++ /dev/null
@@ -1,379 +0,0 @@
-# SOME DESCRIPTIVE TITLE
-# Copyright (C) YEAR Free Software Foundation, Inc.
-# This file is distributed under the same license as the live-boot package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: live-boot VERSION\n"
-"POT-Creation-Date: 2012-06-05 21:45+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=CHARSET\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. type: TH
-#: en/live-boot.7:1 en/live-persistence.conf.5:1 en/live-snapshot.1:1
-#, no-wrap
-msgid "LIVE-BOOT"
-msgstr ""
-
-#. type: TH
-#: en/live-boot.7:1 en/live-persistence.conf.5:1 en/live-snapshot.1:1
-#, no-wrap
-msgid "2012-06-05"
-msgstr ""
-
-#. type: TH
-#: en/live-boot.7:1 en/live-persistence.conf.5:1 en/live-snapshot.1:1
-#, no-wrap
-msgid "3.0~a31-1"
-msgstr ""
-
-#. type: TH
-#: en/live-boot.7:1 en/live-persistence.conf.5:1 en/live-snapshot.1:1
-#, no-wrap
-msgid "Debian Live Project"
-msgstr ""
-
-#. type: SH
-#: en/live-boot.7:3 en/live-persistence.conf.5:3 en/live-snapshot.1:3
-#, no-wrap
-msgid "NAME"
-msgstr ""
-
-#. type: SH
-#: en/live-boot.7:6 en/live-persistence.conf.5:7 en/live-snapshot.1:17
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr ""
-
-#. type: SH
-#: en/live-boot.7:28 en/live-persistence.conf.5:57 en/live-snapshot.1:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-#. type: IP
-#: en/live-boot.7:143 en/live-snapshot.1:43
-#, no-wrap
-msgid "B</etc/live.conf>"
-msgstr ""
-
-#. type: Plain text
-#: en/live-boot.7:145 en/live-snapshot.1:45
-msgid ""
-"Some variables can be configured via this config file (inside the live "
-"system)."
-msgstr ""
-
-#. type: IP
-#: en/live-boot.7:145 en/live-snapshot.1:45
-#, no-wrap
-msgid "B<live/filesystem.module>"
-msgstr ""
-
-#. type: Plain text
-#: en/live-boot.7:147 en/live-snapshot.1:47
-msgid ""
-"This optional file (inside the live media) contains a list of white-space or "
-"carriage-return-separated file names corresponding to disk images in the \"/"
-"live\" directory. If this file exists, only images listed here will be "
-"merged into the root aufs, and they will be loaded in the order listed here. "
-"The first entry in this file will be the \"lowest\" point in the aufs, and "
-"the last file in this list will be on the \"top\" of the aufs, directly "
-"below /overlay.  Without this file, any images in the \"/live\" directory "
-"are loaded in alphanumeric order."
-msgstr ""
-
-#. type: IP
-#: en/live-boot.7:147 en/live-snapshot.1:47
-#, no-wrap
-msgid "B</etc/live-persistence.binds>"
-msgstr ""
-
-#. type: Plain text
-#: en/live-boot.7:152 en/live-snapshot.1:51
-msgid ""
-"This saves expensive writes and speeds up operations on volatile data such "
-"as web caches and temporary files (like e.g. /tmp and .mozilla) which are "
-"regenerated each time. This is achieved by bind mounting each listed "
-"directory with a tmpfs on the original path."
-msgstr ""
-
-#. type: SH
-#: en/live-boot.7:153 en/live-snapshot.1:42
-#, no-wrap
-msgid "FILES"
-msgstr ""
-
-#. type: SH
-#: en/live-boot.7:160 en/live-persistence.conf.5:191 en/live-snapshot.1:54
-#, no-wrap
-msgid "SEE ALSO"
-msgstr ""
-
-#. type: Plain text
-#: en/live-boot.7:166 en/live-persistence.conf.5:195 en/live-snapshot.1:58
-msgid "I<live-build>(7)"
-msgstr ""
-
-#. type: Plain text
-#: en/live-boot.7:168 en/live-persistence.conf.5:197 en/live-snapshot.1:60
-msgid "I<live-config>(7)"
-msgstr ""
-
-#. type: Plain text
-#: en/live-boot.7:170 en/live-persistence.conf.5:199 en/live-snapshot.1:62
-msgid "I<live-tools>(7)"
-msgstr ""
-
-#. type: SH
-#: en/live-boot.7:171 en/live-persistence.conf.5:200 en/live-snapshot.1:63
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr ""
-
-#. type: Plain text
-#: en/live-boot.7:173 en/live-persistence.conf.5:204 en/live-snapshot.1:65
-msgid ""
-"More information about live-boot and the Debian Live project can be found on "
-"the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
-"E<lt>I<http://live.debian.net/manual/>E<gt>."
-msgstr ""
-
-#. type: SH
-#: en/live-boot.7:174 en/live-persistence.conf.5:205 en/live-snapshot.1:66
-#, no-wrap
-msgid "BUGS"
-msgstr ""
-
-#. type: Plain text
-#: en/live-boot.7:176 en/live-persistence.conf.5:210 en/live-snapshot.1:68
-msgid ""
-"Bugs can be reported by submitting a bugreport for the live-boot package in "
-"the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
-"writing a mail to the Debian Live mailing list at E<lt>I<debian-live@lists."
-"debian.org>E<gt>."
-msgstr ""
-
-#. type: SH
-#: en/live-boot.7:177 en/live-persistence.conf.5:211 en/live-snapshot.1:69
-#, no-wrap
-msgid "AUTHOR"
-msgstr ""
-
-#. type: Plain text
-#: en/live-boot.7:178 en/live-snapshot.1:70
-msgid ""
-"live-boot was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-
-#. type: Plain text
-#: en/live-snapshot.1:5
-msgid "B<live-snapshot> - simple script to ease persistence usage"
-msgstr ""
-
-#. type: SH
-#: en/live-snapshot.1:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr ""
-
-#. type: Plain text
-#: en/live-snapshot.1:8
-msgid ""
-"B<live-snapshot> [-c|--cow I<DIRECTORY] [-d|--device DEVICE>] [-e|--exclude-"
-"list I<FILE>] [-o|--output I<FILE>] [-t|--type I<TYPE>]"
-msgstr ""
-
-#. type: Plain text
-#: en/live-snapshot.1:10
-msgid "B<live-snapshot> [-r|--resync-string STRING]"
-msgstr ""
-
-#. type: Plain text
-#: en/live-snapshot.1:12
-msgid "B<live-snapshot> [-h|--help]"
-msgstr ""
-
-#. type: Plain text
-#: en/live-snapshot.1:14
-msgid "B<live-snapshot> [-u|--usage]"
-msgstr ""
-
-#. type: Plain text
-#: en/live-snapshot.1:16
-msgid "B<live-snapshot> [-v|--version]"
-msgstr ""
-
-#. type: Plain text
-#: en/live-snapshot.1:19
-msgid ""
-"live-snapshot is a script which can be used to build the right types of "
-"persistence image files supported by I<live-boot>(7). It is also used on "
-"exit by the live-boot init script to resync the boot-found snapshots devices."
-msgstr ""
-
-#. type: IP
-#: en/live-snapshot.1:21
-#, no-wrap
-msgid "-c, --cow I<DIRECTORY>"
-msgstr ""
-
-#. type: Plain text
-#: en/live-snapshot.1:23
-msgid ""
-"specifies the input directory to be cloned in the image file. Its default "
-"value \"/live/overlay\" should be right for most uses. However it could be "
-"handy to specify \"/home\" and type ext4 for the type to prepare an image "
-"file suited to be directly mounted by live-boot as home."
-msgstr ""
-
-#. type: IP
-#: en/live-snapshot.1:23
-#, no-wrap
-msgid "-d, --device I<DEVICE>"
-msgstr ""
-
-#. type: Plain text
-#: en/live-snapshot.1:25
-msgid ""
-"sets the device where the media with the snapshot/persistence file/partition "
-"will be put. If it is not specified, a tmpfs will be used and linked to the "
-"user's desktop to move it where it is needed. If the device has no "
-"filesystem, an ext4 fs will be automatically created and labelled according "
-"to the values specified after the \"--output\" value or with a sane default."
-msgstr ""
-
-#. type: IP
-#: en/live-snapshot.1:25
-#, no-wrap
-msgid "-e, --exclude-list I<FILE>"
-msgstr ""
-
-#. type: Plain text
-#: en/live-snapshot.1:27
-msgid ""
-"a file containing a list of filenames/paths that should not be saved. This "
-"exclude list will be remebered on the target snapshot media for reuse."
-msgstr ""
-
-#. type: IP
-#: en/live-snapshot.1:27
-#, no-wrap
-msgid "-o, --output I<FILE>"
-msgstr ""
-
-#. type: Plain text
-#: en/live-snapshot.1:29
-msgid ""
-"the filename/label used for the output file/partition. If left blank, live-"
-"snapshot will search for a proper file on the device or use the whole "
-"partition."
-msgstr ""
-
-#. type: IP
-#: en/live-snapshot.1:29
-#, no-wrap
-msgid "-r, --resync-string I<STRING>"
-msgstr ""
-
-#. type: Plain text
-#: en/live-snapshot.1:31
-msgid "internally used on resyncs."
-msgstr ""
-
-#. type: IP
-#: en/live-snapshot.1:31
-#, no-wrap
-msgid "-f, --refresh"
-msgstr ""
-
-#. type: Plain text
-#: en/live-snapshot.1:33
-msgid ""
-"try to do the same operation that should be done at reboot or halt, "
-"resyncing boot-time auto discovered snapshots. Useful to prevent a crash or "
-"surge power-off."
-msgstr ""
-
-#. type: IP
-#: en/live-snapshot.1:33
-#, no-wrap
-msgid "-t, --type I<TYPE>"
-msgstr ""
-
-#. type: Plain text
-#: en/live-snapshot.1:35
-msgid ""
-"Type could be one of \"cpio\", \"squashfs\", \"ext2\", \"ext3\", \"ext4\", "
-"or \"jffs2\"."
-msgstr ""
-
-#. type: IP
-#: en/live-snapshot.1:35
-#, no-wrap
-msgid "-h, --help"
-msgstr ""
-
-#. type: Plain text
-#: en/live-snapshot.1:37
-msgid "display help and exit."
-msgstr ""
-
-#. type: IP
-#: en/live-snapshot.1:37
-#, no-wrap
-msgid "-u, --usage"
-msgstr ""
-
-#. type: Plain text
-#: en/live-snapshot.1:39
-msgid "show usage and exit."
-msgstr ""
-
-#. type: IP
-#: en/live-snapshot.1:39
-#, no-wrap
-msgid "-v, --version"
-msgstr ""
-
-#. type: Plain text
-#: en/live-snapshot.1:41
-msgid "output version information and exit."
-msgstr ""
-
-#. type: Plain text
-#: en/live-snapshot.1:49
-msgid ""
-"This optional file (which resides in the rootfs system, not in the live "
-"media) is used as a list of directories which not need be persistent: i.e. "
-"their content does not need to survive reboots when using the persistence "
-"features."
-msgstr ""
-
-#. type: IP
-#: en/live-snapshot.1:51
-#, no-wrap
-msgid "B</etc/live-snapshot.list>"
-msgstr ""
-
-#. type: Plain text
-#: en/live-snapshot.1:53
-msgid ""
-"This optional file, if present changes the behaviour of live-snapshot: only "
-"files and directories listed there are included (integrally) in the "
-"snapshot. Beware, it is an experimental feature that only works for cpio "
-"targets now."
-msgstr ""
-
-#. type: Plain text
-#: en/live-snapshot.1:56
-msgid "I<live-boot>(1)"
-msgstr ""
index 2809f42..e8b7626 100755 (executable)
@@ -59,9 +59,6 @@ fi
 old_root_overlay_label="live-rw"
 old_home_overlay_label="home-rw"
 custom_overlay_label="custom-ov"
-root_snapshot_label="live-sn"
-old_root_snapshot_label="live-sn"
-home_snapshot_label="home-sn"
 persistence_list="live-persistence.conf"
 
 if [ ! -f /live.vars ]
index 296d1f7..669f5bc 100755 (executable)
@@ -210,9 +210,6 @@ Cmdline ()
                                old_root_overlay_label="${old_root_overlay_label}-${_PARAMETER#persistence-subtext=}"
                                old_home_overlay_label="${old_home_overlay_label}-${_PARAMETER#persistence-subtext=}"
                                custom_overlay_label="${custom_overlay_label}-${_PARAMETER#persistence-subtext=}"
-                               root_snapshot_label="${root_snapshot_label}-${_PARAMETER#persistence-subtext=}"
-                               old_root_snapshot_label="${root_snapshot_label}-${_PARAMETER#persistence-subtext=}"
-                               home_snapshot_label="${home_snapshot_label}-${_PARAMETER#persistence-subtext=}"
                                ;;
 
                        nopersistence)
@@ -337,7 +334,7 @@ Cmdline ()
 
        if [ -z "${PERSISTENCE_METHOD}" ]
        then
-               PERSISTENCE_METHOD="snapshot,overlay"
+               PERSISTENCE_METHOD="overlay"
                export PERSISTENCE_METHOD
        fi
 
index 8970327..241bba1 100755 (executable)
@@ -842,8 +842,7 @@ is_gpt_device ()
 probe_for_gpt_name ()
 {
        local overlays="${1}"
-       local snapshots="${2}"
-       local dev="${3}"
+       local dev="${2}"
 
        local gpt_dev="${dev}"
        if is_active_luks_mapping ${dev}
@@ -859,7 +858,7 @@ probe_for_gpt_name ()
        fi
 
        local gpt_name=$(get_gpt_name ${gpt_dev})
-       for label in ${overlays} ${snapshots}
+       for label in ${overlays}
        do
                if [ "${gpt_name}" = "${label}" ]
                then
@@ -871,10 +870,9 @@ probe_for_gpt_name ()
 probe_for_fs_label ()
 {
        local overlays="${1}"
-       local snapshots="${2}"
-       local dev="${3}"
+       local dev="${2}"
 
-       for label in ${overlays} ${snapshots}
+       for label in ${overlays}
        do
                if [ "$(/sbin/blkid -s LABEL -o value $dev 2>/dev/null)" = "${label}" ]
                then
@@ -886,8 +884,7 @@ probe_for_fs_label ()
 probe_for_file_name ()
 {
        local overlays="${1}"
-       local snapshots="${2}"
-       local dev="${3}"
+       local dev="${2}"
 
        local ret=""
        local backing="$(mount_persistence_media ${dev} probe)"
@@ -905,17 +902,6 @@ probe_for_file_name ()
                        ret="${ret} ${label}=${loopdev}"
                fi
        done
-       for label in ${snapshots}
-       do
-               for ext in squashfs cpio.gz ext2 ext3 ext4 jffs2
-               do
-                       path="${PERSISTENCE_PATH}${label}.${ext}"
-                       if [ -f "${backing}/${path}" ]
-                       then
-                               ret="${ret} ${label}=${dev}:${backing}:${path}"
-                       fi
-               done
-       done
 
        if [ -n "${ret}" ]
        then
@@ -927,19 +913,15 @@ probe_for_file_name ()
 
 find_persistence_media ()
 {
-       # Scans devices for overlays and snapshots, and returns a whitespace
+       # Scans devices for overlays, and returns a whitespace
        # separated list of how to use them. Only overlays with a partition
-       # label or file name in ${overlays} are returned, and ditto for
-       # snapshots with labels in ${snapshots}.
+       # label or file name in ${overlays} are returned.
        #
        # When scanning a LUKS device, the user will be asked to enter the
        # passphrase; on failure to enter it, or if no persistence partitions
        # or files were found, the LUKS device is closed.
        #
-       # For a snapshot file the return value is ${label}=${snapdata}", where
-       # ${snapdata} is the parameter used for try_snap().
-       #
-       # For all other cases (overlay/snapshot partition and overlay file) the
+       # For all other cases (overlay partition and overlay file) the
        # return value is "${label}=${device}", where ${device} a device that
        # can mount the content. In the case of an overlay file, the device
        # containing the file will remain mounted as a side-effect.
@@ -949,8 +931,7 @@ find_persistence_media ()
        # scanned.
 
        local overlays="${1}"
-       local snapshots="${2}"
-       local white_listed_devices="${3}"
+       local white_listed_devices="${2}"
        local ret=""
 
        local black_listed_devices="$(what_is_mounted_on /live/image)"
@@ -983,14 +964,14 @@ find_persistence_media ()
                # Probe for matching GPT partition names or filesystem labels
                if is_in_comma_sep_list filesystem ${PERSISTENCE_STORAGE}
                then
-                       result=$(probe_for_gpt_name "${overlays}" "${snapshots}" ${dev})
+                       result=$(probe_for_gpt_name "${overlays}" ${dev})
                        if [ -n "${result}" ]
                        then
                                ret="${ret} ${result}"
                                continue
                        fi
 
-                       result=$(probe_for_fs_label "${overlays}" "${snapshots}" ${dev})
+                       result=$(probe_for_fs_label "${overlays}" ${dev})
                        if [ -n "${result}" ]
                        then
                                ret="${ret} ${result}"
@@ -1001,7 +982,7 @@ find_persistence_media ()
                # Probe for files with matching name on mounted partition
                if is_in_comma_sep_list file ${PERSISTENCE_STORAGE}
                then
-                       result=$(probe_for_file_name "${overlays}" "${snapshots}" ${dev})
+                       result=$(probe_for_file_name "${overlays}" ${dev})
                        if [ -n "${result}" ]
                        then
                                ret="${ret} ${result}"
index bad0a78..dbc66d4 100755 (executable)
@@ -184,18 +184,6 @@ mountroot ()
                fi
        fi
 
-       # copy snapshot configuration if exists
-       if [ -f snapshot.conf ]
-       then
-               log_begin_msg "Copying snapshot.conf to ${rootmnt}/etc/live/boot.d"
-               if [ ! -d "${rootmnt}/etc/live/boot.d" ]
-               then
-                       mkdir -p "${rootmnt}/etc/live/boot.d"
-               fi
-               cp snapshot.conf "${rootmnt}/etc/live/boot.d/"
-               log_end_msg
-       fi
-
        if [ -f /etc/resolv.conf ] && [ ! -s ${rootmnt}/etc/resolv.conf ]
        then
                log_begin_msg "Copying /etc/resolv.conf to ${rootmnt}/etc/resolv.conf"
@@ -208,7 +196,6 @@ mountroot ()
                panic "A wrong rootfs was mounted."
        fi
 
-       persistence_exclude
        fstab
        Netbase
 
index 17a47e1..7b79df6 100755 (executable)
@@ -202,33 +202,11 @@ setup_unionfs ()
                        overlays="${old_root_overlay_label} ${old_home_overlay_label} ${custom_overlay_label}"
                fi
 
-               if is_in_comma_sep_list snapshot ${PERSISTENCE_METHOD}
-               then
-                       snapshots="${root_snapshot_label} ${home_snapshot_label}"
-               fi
-
-               local root_snapdata=""
-               local home_snapdata=""
                local overlay_devices=""
-               for media in $(find_persistence_media "${overlays}" "${snapshots}" "${whitelistdev}")
+               for media in $(find_persistence_media "${overlays}" "${whitelistdev}")
                do
                        media="$(echo ${media} | tr ":" " ")"
                        case ${media} in
-                               ${root_snapshot_label}=*|${old_root_snapshot_label}=*)
-                                       if [ -z "${root_snapdata}" ]
-                                       then
-                                               root_snapdata="${media#*=}"
-                                       fi
-                                       ;;
-                               ${home_snapshot_label}=*)
-                                       # This second type should be removed when snapshot will get smarter,
-                                       # hence when "/etc/live-snapshot*list" will be supported also by
-                                       # ext2|ext3|ext4|jffs2 snapshot types.
-                                       if [ -z "${home_snapdata}" ]
-                                       then
-                                               home_snapdata="${media#*=}"
-                                       fi
-                                       ;;
                                ${old_root_overlay_label}=*)
                                        device="${media#*=}"
                                        fix_backwards_compatibility ${device} / union
@@ -409,17 +387,12 @@ setup_unionfs ()
                                close_persistence_media ${overlay}
                        fi
                done
-
-               # Look for other snapshots to copy in
-               [ -n "${root_snapdata}" ] && try_snap "${root_snapdata}" "${rootmnt}" "ROOT"
-               # This second type should be removed when snapshot grow smarter
-               [ -n "${home_snapdata}" ] && try_snap "${home_snapdata}" "${rootmnt}" "HOME" "/home"
        fi
 
        mkdir -p "${rootmnt}/live"
        mount -o move /live "${rootmnt}/live" >/dev/null 2>&1 || mount -o bind /live "${rootmnt}/live" || log_warning_msg "Unable to move or bind /live to ${rootmnt}/live"
 
-       # shows cow fs on /overlay for use by live-snapshot
+       # shows cow fs on /overlay (FIXME: do we still need/want this? probably yes)
        mkdir -p "${rootmnt}/live/overlay"
        mount -o move /live/overlay "${rootmnt}/live/overlay" >/dev/null 2>&1 || mount -o bind /overlay "${rootmnt}/live/overlay" || log_warning_msg "Unable to move or bind /overlay to ${rootmnt}/live/overlay"
 
diff --git a/scripts/boot/persistence-excludes.sh b/scripts/boot/persistence-excludes.sh
deleted file mode 100755 (executable)
index ee9521e..0000000
+++ /dev/null
@@ -1,62 +0,0 @@
-#!/bin/sh
-
-#set -e
-
-persistence_exclude ()
-{
-       # Persistence enhancer script
-       # This script saves precious time on slow persistence devices/image files
-       # and writes on flash based device.
-       # a tmpfs on $PERSTMP is mounted and directories listed in
-       # /etc/live-persistence.binds will be copied there and then bind mounted back.
-
-       if [ -z "${PERSISTENCE}" ] || [ -n "${NOPERSISTENCE}" ] || [ -z "${PERSISTENCE_IS_ON}" ] || [ ! -f /root/etc/live-persistence.binds ]
-       then
-               return
-       fi
-
-       # FIXME: stop hardcoding overloading of initramfs-tools functions
-       . /scripts/functions
-       . /lib/live/boot/initramfs-tools.sh
-
-       dirs="$(sed -e '/^ *$/d' -e '/^#.*$/d' /root/etc/live-persistence.binds | tr '\n' '\0')"
-       if [ -z "${dirs}" ]
-       then
-               return
-       fi
-
-       log_begin_msg "Moving persistence bind mounts"
-
-       PERSTMP="/root/live/persistence-binds"
-       CPIO="/bin/cpio"
-
-       if [ ! -d "${PERSTMP}" ]
-       then
-               mkdir -p "${PERSTMP}"
-       fi
-
-       mount -t tmpfs tmpfs "${PERSTMP}"
-
-       for dir in $(echo "${dirs}" | tr '\0' '\n')
-       do
-               if [ ! -e "/root/${dir}" ] && [ ! -L "/root/${dir}" ]
-               then
-                       # directory do not exists, create it
-                       mkdir -p "/root/${dir}"
-               elif [ ! -d "/root/${dir}" ]
-               then
-                       # it is not a directory, skip it
-                       break
-               fi
-
-               # Copy previous content if any
-               cd "/root/${dir}"
-               find . -print0 | ${CPIO} -pumd0 "${PERSTMP}/${dir}"
-               cd "${OLDPWD}"
-
-               # Bind mount it to origin
-               mount -o bind "${PERSTMP}/${dir}" "/root/${dir}"
-       done
-
-       log_end_msg
-}
diff --git a/scripts/boot/snapshot.sh b/scripts/boot/snapshot.sh
deleted file mode 100755 (executable)
index 568fda7..0000000
+++ /dev/null
@@ -1,173 +0,0 @@
-#!/bin/sh
-
-#set -e
-
-do_snap_copy ()
-{
-       fromdev="${1}"
-       todir="${2}"
-       snap_type="${3}"
-       size=$(fs_size "${fromdev}" "" "used")
-
-       if [ -b "${fromdev}" ]
-       then
-               log_success_msg "Copying snapshot ${fromdev} to ${todir}..."
-
-               # look for free mem
-               if [ -n "${HOMEMOUNTED}" -a "${snap_type}" = "HOME" ]
-               then
-                       todev=$(awk -v pat="$(base_path ${todir})" '$2 == pat { print $1 }' /proc/mounts)
-                       freespace=$(df -k | awk '/'${todev}'/{print $4}')
-               else
-                       freespace=$(awk '/^MemFree:/{f=$2} /^Cached:/{c=$2} END{print f+c}' /proc/meminfo)
-               fi
-
-               tomount="/mnt/tmpsnap"
-
-               if [ ! -d "${tomount}" ]
-               then
-                       mkdir -p "${tomount}"
-               fi
-
-               fstype=$(get_fstype "${fromdev}")
-
-               if [ -n "${fstype}" ]
-               then
-                       # Copying stuff...
-                       mount -o ro -t "${fstype}" "${fromdev}" "${tomount}" || log_warning_msg "Error in mount -t ${fstype} -o ro ${fromdev} ${tomount}"
-                       cp -a "${tomount}"/* ${todir}
-                       umount "${tomount}"
-               else
-                       log_warning_msg "Unrecognized fstype: ${fstype} on ${fromdev}:${snap_type}"
-               fi
-
-               rmdir "${tomount}"
-
-               if echo ${fromdev} | grep -qs loop
-               then
-                       losetup -d "${fromdev}"
-               fi
-
-               return 0
-       else
-               log_warning_msg "Unable to find the snapshot ${snap_type} medium"
-               return 1
-       fi
-}
-
-try_snap ()
-{
-       # copy the contents of previously found snapshot to ${snap_mount}
-       # and remember the device and filename for resync on exit in live-boot.init
-
-       snapdata="${1}"
-       snap_mount="${2}"
-       snap_type="${3}"
-       snap_relpath="${4}"
-
-       if [ -z "${snap_relpath}" ]
-       then
-               # root snapshot, default usage
-               snap_relpath="/"
-       else
-               # relative snapshot (actually used just for "/home" snapshots)
-               snap_mount="${2}${snap_relpath}"
-       fi
-
-       if [ -n "${snapdata}" ] && [ ! -b "${snapdata}" ]
-       then
-               log_success_msg "found snapshot: ${snapdata}"
-               snapdev="$(echo ${snapdata} | cut -f1 -d ' ')"
-               snapback="$(echo ${snapdata} | cut -f2 -d ' ')"
-               snapfile="$(echo ${snapdata} | cut -f3 -d ' ')"
-
-               if ! try_mount "${snapdev}" "${snapback}" "ro"
-               then
-                       break
-               fi
-
-               RES="0"
-
-               if echo "${snapfile}" | grep -qs '\(squashfs\|ext2\|ext3\|ext4\|jffs2\)'
-               then
-                       # squashfs, jffs2 or ext2/ext3/ext4 snapshot
-                       dev=$(get_backing_device "${snapback}/${snapfile}")
-
-                       do_snap_copy "${dev}" "${snap_mount}" "${snap_type}"
-                       RES="$?"
-               else
-                       # cpio.gz snapshot
-
-                       # Unfortunately klibc's cpio is incompatible with the
-                       # rest of the world; everything else requires -u -d,
-                       # while klibc doesn't implement them. Try to detect
-                       # whether it's in use.
-                       cpiopath="$(which cpio)" || true
-                       if [ "$cpiopath" ] && grep -aq /lib/klibc "$cpiopath"
-                       then
-                               cpioargs=
-                       else
-                               cpioargs='--unconditional --make-directories'
-                       fi
-
-                       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
-                               log_warning_msg "failure to \"zcat ${snapback}/${snapfile} | $cpiopath $cpioargs --extract --preserve-modification-time --no-absolute-filenames --sparse\""
-                       fi
-               fi
-
-               umount "${snapback}" ||  log_warning_msg "failure to \"umount ${snapback}\""
-
-               if [ "${RES}" != "0" ]
-               then
-                       log_warning_msg "Impossible to include the ${snapfile} Snapshot file"
-               fi
-
-       elif [ -b "${snapdata}" ]
-       then
-               # Try to find if it could be a snapshot partition
-               dev="${snapdata}"
-               log_success_msg "found snapshot ${snap_type} device on ${dev}"
-               if echo "${dev}" | grep -qs loop
-               then
-                       # strange things happens, user confused?
-                       snaploop=$( losetup ${dev} | awk '{print $3}' | tr -d '()' )
-                       snapfile=$(basename ${snaploop})
-                       snapdev=$(awk -v pat="$( dirname ${snaploop})" '$2 == pat { print $1 }' /proc/mounts)
-               else
-                       snapdev="${dev}"
-               fi
-
-               if ! do_snap_copy "${dev}" "${snap_mount}" "${snap_type}"
-               then
-                       log_warning_msg "Impossible to include the ${snap_type} Snapshot (i)"
-                       return 1
-               else
-                       if [ -n "${snapfile}" ]
-                       then
-                               # it was a loop device, user confused
-                               umount ${snapdev}
-                       fi
-               fi
-       else
-               log_warning_msg "Impossible to include the ${snap_type} Snapshot (o)"
-               return 1
-       fi
-
-       if [ -z ${PERSISTENCE_READONLY} ]
-       then
-               echo "export ${snap_type}SNAP=${snap_relpath}:${snapdev}:${snapfile}" >> snapshot.conf # for resync on reboot/halt
-       fi
-       return 0
-}