Move firstboot files from iso/files to files/

This commit is contained in:
humocs-man
2026-03-02 17:36:42 +01:00
parent e04a4a9a2d
commit 7f13647f61
4 changed files with 0 additions and 12 deletions
@@ -0,0 +1 @@
enable fluffy-pancake-firstboot.service
@@ -0,0 +1,13 @@
[Unit]
Description=Fluffy Pancake First Boot Initialization
ConditionFirstBoot=yes
After=network-online.target
Wants=network-online.target
[Service]
Type=oneshot
ExecStart=/usr/libexec/fluffy-pancake/firstboot.sh
RemainAfterExit=yes
[Install]
WantedBy=first-boot-complete.target
+14
View File
@@ -0,0 +1,14 @@
#!/usr/bin/env bash
set -euo pipefail
echo "[fluffy-pancake-firstboot] starting"
if systemctl list-unit-files | grep -q '^brew-setup.service'; then
systemctl start brew-setup.service || true
fi
if systemctl list-unit-files | grep -q '^flatpak-add-fedora-repos.service'; then
systemctl start flatpak-add-fedora-repos.service || true
fi
echo "[fluffy-pancake-firstboot] done"