V8.00.000.2025.06.17
All checks were successful
🛡️ Shell Script Linting / 🛡️ Shell Script Linting (push) Successful in 51s

Signed-off-by: Marc S. Weidner <msw@coresecret.dev>
This commit is contained in:
2025-08-12 22:17:56 +02:00
parent 5b6833fc78
commit 1b59ab5b4c
3 changed files with 9 additions and 8 deletions

View File

@@ -36,29 +36,38 @@ mkdir -p "${DESTDIR}/etc/initramfs-tools/scripts/init-premount"
### Include Bash
copy_exec /usr/bin/bash /usr/bin
echo "Successfully executed: [copy_exec /usr/bin/bash /usr/bin]."
### Include Busybox
copy_exec /usr/bin/busybox /usr/bin
copy_exec /usr/bin/busybox /bin
echo "Successfully executed: [copy_exec /usr/bin/busybox /usr/bin]."
### Include lsblk (block device info tool)
copy_exec /usr/bin/lsblk /usr/bin
echo "Successfully executed: [copy_exec /usr/bin/lsblk /usr/bin]."
### Include mkpasswd
copy_exec /usr/bin/mkpasswd /usr/bin
echo "Successfully executed: [copy_exec /usr/bin/mkpasswd /usr/bin]."
### Include udevadm (udev management tool)
copy_exec /usr/bin/udevadm /usr/bin
echo "Successfully executed: [copy_exec /usr/bin/udevadm /usr/bin."
### Include sha512sum e.g.
copy_exec /usr/bin/sha512sum /usr/bin
echo "Successfully executed: [copy_exec /usr/bin/sha512sum /usr/bin]."
copy_exec /usr/bin/sha384sum /usr/bin
echo "Successfully executed: [copy_exec /usr/bin/sha384sum /usr/bin]."
### Include Signature-Verifier
copy_exec /usr/bin/gpgv /usr/bin
echo "Successfully executed: [copy_exec /usr/bin/gpgv /usr/bin]."
### Include Whois
copy_exec /usr/bin/whois /usr/bin
echo "Successfully executed: [copy_exec /usr/bin/whois /usr/bin]."
### Link busybox applets for compatibility
for dir in bin usr/bin; do