From 46d47b95608342c6f5c326c46218c6510d4cb5a6 Mon Sep 17 00:00:00 2001 From: humocs-man <251756307+humocs-man@users.noreply.github.com> Date: Sun, 15 Mar 2026 17:57:21 +0100 Subject: [PATCH] Parameterize Homebrew installation service description --- files/etc/systemd/system/firstboot-brew-install.service | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/files/etc/systemd/system/firstboot-brew-install.service b/files/etc/systemd/system/firstboot-brew-install.service index 27d987d..2d82703 100644 --- a/files/etc/systemd/system/firstboot-brew-install.service +++ b/files/etc/systemd/system/firstboot-brew-install.service @@ -1,9 +1,12 @@ [Unit] -Description=Install Homebrew for user +Description=Install Homebrew for user %i +After=network-online.target [Service] Type=oneshot -ExecStart=/usr/local/bin/install-homebrew.sh %i +User=root +ExecStart=/usr/local/sbin/install-homebrew.sh %i +RemainAfterExit=yes [Install] WantedBy=multi-user.target