From 16bff87c5cd2351c099521707adedc7fe14b9f61 Mon Sep 17 00:00:00 2001 From: humocs-man <251756307+humocs-man@users.noreply.github.com> Date: Tue, 3 Mar 2026 18:39:03 +0100 Subject: [PATCH] Delete files/usr directory --- .../90-fluffy-pancake-firstboot.preset | 8 -------- .../usr/lib/system/fluffy-pancake-firstboot.service | 13 ------------- .../systemd/system-preset/90-fluffy-pancake.preset | 8 -------- files/usr/libexec/fluffy-pancake/firstboot.sh | 11 ----------- 4 files changed, 40 deletions(-) delete mode 100644 files/usr/lib/system-preset/90-fluffy-pancake-firstboot.preset delete mode 100644 files/usr/lib/system/fluffy-pancake-firstboot.service delete mode 100644 files/usr/lib/systemd/system-preset/90-fluffy-pancake.preset delete mode 100755 files/usr/libexec/fluffy-pancake/firstboot.sh 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"