new blfs: sys-apps/systemd-257.8

This commit is contained in:
2025-12-30 09:15:07 -05:00
parent 210266a086
commit 882325a5b0
10 changed files with 265 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
target=(/usr/lib/systemd/user/*)
triggers=("install" "remove")
operation(){
if systemd-detect-virt --chroot; then
echo >&2 " Skipped: Running in chroot."
exit 0
fi
if ! systemd-notify --booted; then
echo >&2 " Skipped: Current root is not booted."
exit 0
fi
/usr/bin/systemctl reload 'user@*.service'
}