diff --git a/files/usr/lib/systemd/system-preset/90-fluffy-pancake-firstboot.preset b/files/usr/lib/systemd/system-preset/90-fluffy-pancake-firstboot.preset deleted file mode 100644 index ced0dcc..0000000 --- a/files/usr/lib/systemd/system-preset/90-fluffy-pancake-firstboot.preset +++ /dev/null @@ -1 +0,0 @@ -enable fluffy-pancake-firstboot.service diff --git a/files/usr/lib/systemd/system/fluffy-pancake-firstboot.service b/files/usr/lib/systemd/system/fluffy-pancake-firstboot.service deleted file mode 100644 index d504c15..0000000 --- a/files/usr/lib/systemd/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=first-boot-complete.target diff --git a/files/usr/libexec/fluffy-pancake/firstboot.sh b/files/usr/libexec/fluffy-pancake/firstboot.sh deleted file mode 100755 index 7724e90..0000000 --- a/files/usr/libexec/fluffy-pancake/firstboot.sh +++ /dev/null @@ -1,14 +0,0 @@ -#!/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"