From b324f452799a9aba5a1e9acc6833010c8635828e Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 6 May 2024 04:42:51 +0200 Subject: Adding debian version 2.33.1-0.1. Signed-off-by: Daniel Baumann --- debian/uuid-runtime.postinst | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 debian/uuid-runtime.postinst (limited to 'debian/uuid-runtime.postinst') diff --git a/debian/uuid-runtime.postinst b/debian/uuid-runtime.postinst new file mode 100644 index 0000000..a8e2a31 --- /dev/null +++ b/debian/uuid-runtime.postinst @@ -0,0 +1,14 @@ +#!/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 --ingroup uuidd \ + --home /run/uuidd --no-create-home \ + uuidd +fi + +#DEBHELPER# -- cgit v1.2.3