1
0
Fork 0
util-linux/debian/uuid-runtime.postinst
Daniel Baumann 070ab789ab
Adding debian version 2.41-5.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-21 11:26:36 +02:00

14 lines
270 B
Bash

#!/bin/sh
set -e
# add uuidd user/group if needed.
if ! getent group uuidd >/dev/null; then
addgroup --system uuidd
fi
if ! getent passwd uuidd >/dev/null; then
adduser --system --quiet --ingroup uuidd \
--home /run/uuidd --no-create-home \
uuidd
fi
#DEBHELPER#