Fix keyring issue and revert to systemd

- Reverted to systemd init system (more compatible)
- Updated package list: live-config-systemd, systemd-sysv
- Removed problematic devuan-keyring hook that was interfering with bootstrap
- Kept debian-keyring and debian-archive-keyring for proper Debian verification
- Updated README to reflect systemd usage
- This should resolve the keyring signature verification error
parent 375123bf
Pipeline #180 canceled with stages
......@@ -7,9 +7,8 @@ This project creates a custom Debian live ISO with the following features:
- Auto-start of MbetterClient application on boot
- Minimal Debian installer asking only for network configuration
- Custom MBetter logos (converted from mbet.jpg)
- SysVinit init system (not systemd)
- Systemd init system
- Full keyring support (debian-keyring, debian-archive-keyring)
- Optional devuan-keyring (installed if available)
## Prerequisites
- Debian-based system with live-build installed
......
......@@ -11,3 +11,9 @@ gpgv: Can't check signature: No public key
gpgv: Signature made Mon Sep 1 10:15:01 2025 SAST
gpgv: using RSA key B8E5F13176D2A7A75220028078DBA3BC47EF2265
gpgv: Can't check signature: No public key
gpgv: Signature made Mon Sep 1 10:14:58 2025 SAST
gpgv: using RSA key 4CB50190207B4758A3F73A796ED0E7B82643E131
gpgv: Can't check signature: No public key
gpgv: Signature made Mon Sep 1 10:15:01 2025 SAST
gpgv: using RSA key B8E5F13176D2A7A75220028078DBA3BC47EF2265
gpgv: Can't check signature: No public key
......@@ -46,7 +46,7 @@ LB_INITRAMFS="live-boot"
LB_INITRAMFS_COMPRESSION="gzip"
# Set init system
LB_INITSYSTEM="sysvinit"
LB_INITSYSTEM="systemd"
# Set distribution mode
LB_MODE="debian"
......
#!/bin/bash
# Try to install devuan-keyring if available
echo "Attempting to install devuan-keyring..."
if apt-get update && apt-get install -y devuan-keyring; then
echo "devuan-keyring installed successfully"
else
echo "devuan-keyring not available, continuing without it"
fi
\ No newline at end of file
live-boot
live-config
live-config-sysvinit
sysvinit
live-config-systemd
systemd-sysv
openssh-server
openvpn
xserver-xorg
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment