systemd/debian/systemd-journal-remote.postinst
Michael Biebl 8b5ca88faf Add necessary system groups for systemd-journal-remote
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.
2015-08-30 20:38:56 +02:00

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#