91 Commits (672e27564ed8bb1de3dcad2eddc29878ed07f6b2)

Author SHA1 Message Date
Adriaan de Groot d95193f646 [unpackfs] Translate and log other error messages 6 years ago
Adriaan de Groot 79ce2c2d0f [unpackfs] Translate pretty module name 6 years ago
Adriaan de Groot 28efe2b85a [unpackfs] Log messages in English, too
- For debugging purposes, need to log the message in English before
   returning the (user-visible) error description.
6 years ago
Adriaan de Groot 8ddf801bfb [unpackfs] Switch on translations for user-visible strings 6 years ago
Adriaan de Groot 2d684bb385 [unpackfs] Be more resilient to globalStorage weirdness
- If no extraMount is defined, just don't mount anything
6 years ago
Adriaan de Groot e96a29b1b9 [unpackfs] Improve error message wording 6 years ago
Adriaan de Groot 56d05d5834 [unpackfs] Reduce file-reading
- Only need to get the list of supported filesystems *once*,
   not for each and every filesystem that is going to be unpacked.
 - Be more Python-idiomatic.
6 years ago
Alf Gaida 784bbd3bc8 finally !must! never fail unhandled
but it does without help
7 years ago
Adriaan de Groot 762ad54344 Documentation: change http links to GitHub to https 7 years ago
Adriaan de Groot ae6a9cd822 Python: move unsquash documentation to the config file 8 years ago
Alf Gaida 5f7b1dda26 Fixed pep8 whining in module unpackfs
Added myself to copyright
8 years ago
Kevin Kofler 0131d7fbf1 [unpackfs] Do not fail if rsync returns exit code 23.
Unfortunately, rsync returns exit code 23 (Partial transfer due to
error) if it cannot write extended attributes (with -X) because the
target file system does not support it, e.g., the FAT EFI system
partition. We need -X because distributions using file system
capabilities and/or SELinux require the extended attributes. But
distributions using SELinux may also have SELinux labels set on files
under /boot/efi, and rsync complains about those. The only clean way
would be to split the rsync into one with -X and --exclude /boot/efi and
a separate one without -X for /boot/efi, but only if /boot/efi is
actually an EFI system partition. For now, this hack will have to do.

See also:
https://bugzilla.redhat.com/show_bug.cgi?id=868755#c50
for the same issue in Anaconda, which uses a similar workaround.
9 years ago
hmikihth 42ceffa2e9 . 9 years ago
hmikihth f18dc02459 A comment has been deleted 9 years ago
hmikihth 062e9b764c blackPanther OS and Fedora compatibility 9 years ago
hmikihth 377a1c3a17 Support the already mounted loop fs (example in the blackPanther OS) 9 years ago
Teo Mrnjavac 98b5085e6e Make sure we print the error message before the finally: kicks in. 9 years ago
Gormogon 9f8a8f6a64 PEP and Unused Import 10 years ago
Gormogon bc66502fda Some more PEP 10 years ago
Gormogon 6a7e219021 Small Python IO Cleanup 10 years ago
Philip e5eee1e4dd [unpackfs] proper sentence 10 years ago
Philip 82dc4c38f4 [unpackfs] add python doc strings 10 years ago
Gormogon 113d9db7cb Python Better Docstrings 10 years ago
Gormogon 09dc6bb5d7 [PEP 8] General Style Part 2 10 years ago
Gormogon 5d5519b7b0 [PEP 8] Comparison to 'False' 10 years ago
Gormogon ebf037f247 [PEP 8] Comparison to 'None' 10 years ago
Gormogon 9419d07a98 Fixed Unclosed File 10 years ago
Gormogon 8e1480431a [PEP 263] Corrected Encoding Headers 10 years ago
Kevin Kofler 5209af0182 unpackfs: Fix error in list_excludes.
I accidentally removed the initialization of lst.
10 years ago
Kevin Kofler e6d65d047b Fix unpackfs wrongly excluding separately-mounted partitions.
mount: Remember the extraMounts (and extraMountsEfi, if applicable) in
the global storage (as "extraMounts").

unpackfs: Read the extra mounts from the global storage to generate the
exclude list instead of trying to detect it from the "mount" command's
output, because the latter also includes normally-mounted destination
partitions.

This makes having separate partitions for non-/ mountpoints work again.
10 years ago
Kevin Kofler 36488583f7 unpackfs: Add a trailing '/' to the excludes. 11 years ago
Kevin Kofler f0203a072c unpackfs: Automatically detect the exclude list from the mounts.
See issue #173.
11 years ago
Kevin Kofler 8591dcf731 unpackfs: Make rsync preserve everything, exclude special paths.
Add the following flags to rsync:
* `-H, --hard-links            preserve hard links`
* `-A, --acls                  preserve ACLs (implies --perms)`
* `-X, --xattrs                preserve extended attributes`
(i.e., the preservation options not already implied by -a).

Also exclude the special paths that do not make sense to rsync, because
reading the extended attributes from those can cause errors, at least
with SELinux enabled.

This fixes installation of Fedora systems with SELinux enabled.
11 years ago
Teo Mrnjavac ee2ed0921e Allow mounting a Fedora image.
Fixes #127
11 years ago
Rohan Garg 6513c6400e Handle line breaks properly 11 years ago
Rohan Garg eed387f7a4 Make sure to check things exist before actually modifying them
This fixes crashes when a system does not have squashfs-tools or
a grub dir does not exist.
11 years ago
Daniel Hillenbrand c97251d741 unpackfs: check for supported filesystems
Use /proc/filesystems to check if the system
supportes the given source filesystem.
11 years ago
Daniel Hillenbrand 148a29d506 unpackfs: code dedup 11 years ago
Teo Mrnjavac 35f0dfc76d List all files recursively. 11 years ago
Teo Mrnjavac 8ce769184e Check for fs name validity. 11 years ago
Philip 37426b9f7a Replace unsquashfs with unpackfs
Conflicts:
	src/modules/unsquashfs/unsquashfs.conf
11 years ago