summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-05-06Fixing a bug with multiple files in is_live_path after the last commit.Michael Stummvoll
The version in the last commit has a bug handling multiple files in is_live_path, the fix introduces file_pattern_matches() which checks for $1 only. So even if there are multiple files matching the pattern only the first one will go into the [ -e ... ] expression.
2013-05-06Simplifying if statement in is_live_system function.Michael Stummvoll
2013-05-06Fixing condition for setting rootfs_dest_backing.Evgeni Golov
The fix for the opt_link check in d5ed942 broke the code as it inverted the meaning. Previously it ran the code iff opt_link was empty, as [ -n ] is true. In the case opt_link was not empty, the code evaluated to [ -n foo], which is invalid syntax and thus false. This, however, was almost the expected behaviour, as rootfs_dest_backing is needed for opt_union and (in read-only mode) for opt_link.
2013-05-06Debranding package for derivatives.Daniel Baumann
2013-05-06Releasing debian version 4.0~a9-1.Daniel Baumann
2013-05-06Removing all references to my old email address.Daniel Baumann
2013-05-06Releasing debian version 4.0~a8-1.Daniel Baumann
2013-05-06Transforming link targets so they work after the mount was moved (Closes: ↵Evgeni Golov
#702421).
2013-05-06Checking for ${overlay}, not ${device} when trying to close ${overlay}.Evgeni Golov
2013-05-06Fixing invalid syntax in test for opt_link.Evgeni Golov
2013-05-06Correcting spelling typos, thanks to Adam D. Barratt <adam@adam-barratt.org.uk>.Daniel Baumann
2013-05-06Dropping conditionals in backend, stuff is either there or not but not ↵Daniel Baumann
nothing in between.
2013-05-06Dropping pre-squeeze udev conditionals in initramfs-tools hook.Daniel Baumann
2013-05-06Moving dracut entry-point stub to backends.Daniel Baumann
2013-05-06Moving initramfs-tools entry-point to backends.Daniel Baumann
2013-05-06Releasing debian version 4.0~a7-1.Daniel Baumann
2013-05-06Making loadkeys call quiet in order to not mess-up persistence, thanks to ↵Daniel Baumann
stack <stack@inventati.org> (Closes: #700902).
2013-05-06Silencing unmounting of potentially stray tmpfs on /live/overlay.Daniel Baumann
2013-05-06Releasing debian version 4.0~a6-1.Daniel Baumann
2013-05-06Adding 3.0.1-1 changelog entries.Daniel Baumann
2013-05-06Updating Spanish translation of live-boot man page, persistence-label.chals
2013-05-06Releasing debian version 4.0~a5-1.Daniel Baumann
2013-05-06Updating manpage for persistence-label, thanks to Mike Gach ↵Daniel Baumann
<gach.mqt@gmail.com> (Closes: #697873).
2013-05-06Adding 3.0.0-1 changelog entries.Daniel Baumann
2013-05-06Fixing mounting of rootfs, cow and medium filesystems (Closes: #696495).Gaudenz Steinlin
2013-05-06Fixing support for multiple squashfs images (Closes: #696494).Gaudenz Steinlin
2013-05-06Removing some dead code in netbase parts.Daniel Baumann
2013-05-06Calling df with -P to avoid line wraps with overly long mountpoints.Daniel Baumann
2013-05-06Dropping dpkg compression level.Daniel Baumann
2013-05-06Updating Spanish translation in respect to noeject.chals
2013-05-06Updating noeject description in manpage.Daniel Baumann
2013-05-06Replace noprompt with noeject on manpage.Richard Nelson
2013-05-06Updating manpage year handling for 2013.Daniel Baumann
2013-05-06Releasing debian version 4.0~a4-1.Daniel Baumann
2013-05-06Adding 3.0~b11-1 changelog entries.Daniel Baumann
2013-05-06By default including sha256sum only in progress-linux, keep md5sum legacy ↵Daniel Baumann
for debian.
2013-05-06Correcting legacy filename for checksum files.Daniel Baumann
2013-05-06Supporting legacy filenames for checksums in debian within verify-checksums.Daniel Baumann
2013-05-06Updating year in copyright file.Daniel Baumann
2013-05-06Releasing debian version 4.0~a3-1.Daniel Baumann
2013-05-06Adding 3.0~b10-1 changelog entries.Daniel Baumann
2013-05-06Cleaning up manpage po files.Daniel Baumann
2013-05-06Update manpage information of ip= param to correctly reflect what ↵Richard Nelson
9990-netbase.sh expects.
2013-05-06Correcting spelling typo in bug script.Daniel Baumann
2013-05-06Making overwriting of /bin/mount within initramfs with mount.util-linux ↵Daniel Baumann
dependent on fuse usage, not on some additional boot parameter.
2013-05-06Including util-linux mount in initramfs.Michal Suchanek
2013-05-06Adding live-tools to recommends.Daniel Baumann
2013-05-06Releasing debian version 4.0~a2-1.Daniel Baumann
2013-05-06Adding 3.0~b9-1 changelog entries.Daniel Baumann
2013-05-06Using 'local' in a safe way.Tails developers
First of all, 'local' is non-POSIX, but it is a really good safeguard against hard-to-find bugs. However, doing a local + initializing combo like `local X=$Y` in dash is error prone. If `Y=1 2` will get an error since dash will expand $Y so we get `local X=1 2`, but it will treat the "2" as another variable to be made local, which isn't what we want. Hence, let's declare variables local and initialize them in separate commands, which is safe.