summaryrefslogtreecommitdiffstats
path: root/debian/uuid-runtime.postinst
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--debian/uuid-runtime.postinst14
1 files changed, 14 insertions, 0 deletions
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#