Patrick Schleizer

Results 162 issues of Patrick Schleizer

Created with chatgpt. Please check if this makes sense.

During initramfs creation. > W: No zstd in /usr/bin:/sbin:/bin, using gzip Should `zstd` get installed by default?

wishlist
feature
help wanted

avoid host environment variables such as TMP to leak into the chroot fixes https://github.com/grml/grml-debootstrap/issues/232

for better error handling Otherwise if 1 repository fails (such as the security repository) apt would by default silently ignore this can continue the build. Therefore for consistent builds and...

``` if [ -n "$VMEFI" ]; then parted -s "${TARGET}" 'mklabel gpt' parted -s "${TARGET}" 'mkpart ESP fat32 1MiB 101MiB' parted -s "${TARGET}" 'set 1 boot on' parted -s "${TARGET}"...

From a user perspective it is valid to combine `--vmefi` with `--arch arm64`. ``` + mkfs.fat -n EFI /dev/mapper/loop0p1 mkfs.fat 4.2 (2021-01-31) + MKFS_OPTS=' -F -L LINUX' + einfo 'Running...

refactor
help wanted
bug

The following code should be refactored, simplified. ``` if [ -n "$VMFILE" ]; then qemu-img create -f raw "${TARGET}" "${VMSIZE}" fi if [ -n "$VMEFI" ]; then parted -s "${TARGET}"...

refactor
help wanted

https://packages.debian.org/bookworm/libpam-tmpdir installed on the host operating system breaks grml-debootstrap. ``` + chroot /mnt/derivative-maker-grml-debootstrap.10940 dpkg --list grub-pc + echo 'Notice: grub-pc package not present yet, installing it therefore.' Notice: grub-pc package...

It seems grml-debootstrap leaves systemd installation to "pure chance"? The source code, default packages does not include systemd. Probably the [packages](https://github.com/grml/grml-debootstrap/blob/master/packages) file has some package which installs a dependency that...

upstream

There is travis but travis went paid-only this is where most Open Source projects stopped using them. What's the status of automated CI testing? I suppose once travis changed there's...