diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 14:30:36 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 14:30:36 +0000 |
commit | d731b1222e17e0081e5e4e1fc9603b67ba0b72e3 (patch) | |
tree | e0426bca9e6173cf00b0ee2573aa2c0cf96b8a25 /debian/uuid-runtime.postinst | |
parent | Adding upstream version 2.38.1. (diff) | |
download | util-linux-d731b1222e17e0081e5e4e1fc9603b67ba0b72e3.tar.xz util-linux-d731b1222e17e0081e5e4e1fc9603b67ba0b72e3.zip |
Adding debian version 2.38.1-5.debian/2.38.1-5
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/uuid-runtime.postinst')
-rw-r--r-- | debian/uuid-runtime.postinst | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/debian/uuid-runtime.postinst b/debian/uuid-runtime.postinst new file mode 100644 index 0000000..e5ad46d --- /dev/null +++ b/debian/uuid-runtime.postinst @@ -0,0 +1,17 @@ +#!/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 + +chown uuidd:uuidd /var/lib/libuuid +chmod 2775 /var/lib/libuuid + +#DEBHELPER# |