diff --git a/files/usr/lib/system-preset/90-fluffy-pancake-firstboot.preset b/files/usr/lib/system-preset/90-fluffy-pancake-firstboot.preset deleted file mode 100644 index 5a00f83..0000000 --- a/files/usr/lib/system-preset/90-fluffy-pancake-firstboot.preset +++ /dev/null @@ -1,8 +0,0 @@ -# First boot logic -enable fluffy-pancake-firstboot.service - -# Virtualization (virt-manager / libvirt) -enable libvirtd.service -enable virtlogd.service -enable libvirtd.socket -enable virtlogd.socket diff --git a/files/usr/lib/system/fluffy-pancake-firstboot.service b/files/usr/lib/system/fluffy-pancake-firstboot.service deleted file mode 100644 index c75c48a..0000000 --- a/files/usr/lib/system/fluffy-pancake-firstboot.service +++ /dev/null @@ -1,13 +0,0 @@ -[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=multi-user.target diff --git a/files/usr/lib/systemd/system-preset/90-fluffy-pancake.preset b/files/usr/lib/systemd/system-preset/90-fluffy-pancake.preset deleted file mode 100644 index 5a00f83..0000000 --- a/files/usr/lib/systemd/system-preset/90-fluffy-pancake.preset +++ /dev/null @@ -1,8 +0,0 @@ -# First boot logic -enable fluffy-pancake-firstboot.service - -# Virtualization (virt-manager / libvirt) -enable libvirtd.service -enable virtlogd.service -enable libvirtd.socket -enable virtlogd.socket diff --git a/files/usr/libexec/fluffy-pancake/firstboot.sh b/files/usr/libexec/fluffy-pancake/firstboot.sh deleted file mode 100755 index 8352b7b..0000000 --- a/files/usr/libexec/fluffy-pancake/firstboot.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/usr/bin/env bash -set -euo pipefail - -echo "[firstboot] Ensuring Flathub remote exists" - -if ! flatpak remote-list --system | grep -q '^flathub'; then - flatpak remote-add --system --if-not-exists flathub \ - https://flathub.org/repo/flathub.flatpakrepo -fi - -echo "[firstboot] Done"