From e0809d89c5b7d767c79fc8cbb997201b5465c036 Mon Sep 17 00:00:00 2001 From: renner Date: Mon, 6 Apr 2026 19:15:05 +0200 Subject: [PATCH] feat: don't spam journal with tar commands on first setup This can be pretty annoying when you browse the journal, the output isn't too useful anyway as it just prints out the path. If you for whatever reason want this debug output then you can just extract the tarball manually or edit the service unit. --- system_files/usr/lib/systemd/system/brew-setup.service | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system_files/usr/lib/systemd/system/brew-setup.service b/system_files/usr/lib/systemd/system/brew-setup.service index 99b4c7e..214ce0f 100644 --- a/system_files/usr/lib/systemd/system/brew-setup.service +++ b/system_files/usr/lib/systemd/system/brew-setup.service @@ -10,7 +10,7 @@ ConditionPathExists=/usr/share/homebrew.tar.zst Type=oneshot ExecStart=/usr/bin/mkdir -p /tmp/homebrew ExecStart=/usr/bin/mkdir -p /var/home/linuxbrew -ExecStart=/usr/bin/tar --zstd -xvf /usr/share/homebrew.tar.zst -C /tmp/homebrew +ExecStart=/usr/bin/tar --zstd -xf /usr/share/homebrew.tar.zst -C /tmp/homebrew ExecStart=/usr/bin/cp -R -n /tmp/homebrew/home/linuxbrew/.linuxbrew /var/home/linuxbrew ExecStart=/usr/bin/chown -R 1000:1000 /var/home/linuxbrew ExecStart=/usr/bin/rm -rf /tmp/homebrew