diff options
author | Simon McVittie <smcv@debian.org> | 2011-06-08 12:16:49 +0100 |
---|---|---|
committer | Simon McVittie <smcv@debian.org> | 2011-06-08 12:16:49 +0100 |
commit | bfb4bb6a5f82df9548915bcd6cd29325c4a11b0c (patch) | |
tree | 9d0451f0b17aeb23312dab4d1a6f28c161cca817 | |
parent | 6df62c5e305f9c0abffecad099dcf59d00389cf1 (diff) | |
download | dbus-bfb4bb6a5f82df9548915bcd6cd29325c4a11b0c.tar.gz |
run dbus-uuidgen --ensure in postinst
-rw-r--r-- | debian/changelog | 1 | ||||
-rw-r--r-- | debian/dbus.postinst | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index f53fcc50..f957aa0f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,7 @@ dbus (1.5.2-2) UNRELEASED; urgency=low * Merge from unstable * Merge and adapt from Ubuntu: - create, chown messagebus' home directory in postinst + - run dbus-uuidgen --ensure in postinst -- Simon McVittie <smcv@debian.org> Thu, 02 Jun 2011 17:37:24 +0100 diff --git a/debian/dbus.postinst b/debian/dbus.postinst index 86150910..0cfb8094 100644 --- a/debian/dbus.postinst +++ b/debian/dbus.postinst @@ -22,6 +22,9 @@ if [ "$1" = configure ]; then chown root:"$MESSAGEUSER" "$LAUNCHER" chmod 4754 "$LAUNCHER" fi + + # this is idempotent, the init script also does it + dbus-uuidgen --ensure fi # Remove stop symlinks for runlevel 1 as killprocs already does the job for us. |