From 6687e646d44c0cdd72264408a9164a0d83c7dc79 Mon Sep 17 00:00:00 2001 From: Cem Keylan Date: Wed, 17 Feb 2021 10:11:50 +0300 Subject: dbus: add new package at 1.12.20 I am truly sorry, please forgive me. --- dbus/dbus/post-install | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 dbus/dbus/post-install (limited to 'dbus/dbus/post-install') diff --git a/dbus/dbus/post-install b/dbus/dbus/post-install new file mode 100755 index 00000000..5c47035c --- /dev/null +++ b/dbus/dbus/post-install @@ -0,0 +1,20 @@ +#!/bin/sh -e + +mkdir -p "$CPT_ROOT/var/lib/dbus" "$CPT_ROOT/etc/dbus-1/session.d" + +chr() { + # Run in chroot if CPT_ROOT variable exists + if [ "$CPT_ROOT" ]; then + chroot "$CPT_ROOT" "$@" + else + "$@" + fi +} + +grep -q ^dbus: "$CPT_ROOT/etc/passwd" || { + chr addgroup -g 22 -S dbus + chr adduser -u 22 -S -H -G dbus dbus +} +chown root:dbus "$CPT_ROOT/usr/libexec/dbus-daemon-launch-helper" +chmod 4750 "$CPT_ROOT/usr/libexec/dbus-daemon-launch-helper" +chr /usr/bin/dbus-uuidgen --ensure || : -- cgit v1.2.3