mirror of
https://git.proxmox.com/git/systemd
synced 2026-02-04 00:15:37 +00:00
Also remove the creation of the systemd-journal-remote group from systemd.postinst. This is no longer needed as the tmpfiles snippet requiring that group is now shipped by the systemd-journal-remote package.
21 lines
504 B
Bash
21 lines
504 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
adduser --quiet --system \
|
|
--home /run/systemd --no-create-home \
|
|
--gecos "systemd Journal Gateway" \
|
|
--group systemd-journal-gateway
|
|
|
|
adduser --quiet --system \
|
|
--home /run/systemd --no-create-home \
|
|
--gecos "systemd Journal Remote" \
|
|
--group systemd-journal-remote
|
|
|
|
adduser --quiet --system \
|
|
--home /run/systemd --no-create-home \
|
|
--gecos "systemd Journal Upload" \
|
|
--group systemd-journal-upload
|
|
|
|
#DEBHELPER#
|