11 lines
247 B
Bash
11 lines
247 B
Bash
#!/usr/bin/env bash
|
|
# Mask systemd-firstboot for live ISO (it blocks boot)
|
|
|
|
cd airootfs/etc/systemd/system
|
|
|
|
# Create mask symlink
|
|
ln -sf /dev/null systemd-firstboot.service
|
|
|
|
echo "Masked systemd-firstboot.service"
|
|
ls -la systemd-firstboot.service
|