/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to debian/changelog

  • Committer: Teddy Hogeborn
  • Date: 2019-08-02 22:16:53 UTC
  • Revision ID: teddy@recompile.se-20190802221653-ic1iko9hbefzwsk7
Fix bug in server Debian package: Fails to start on first install

There has been a very long-standing bug where installation of the
server (the "mandos" Debian package) would fail to start the server
properly right after installation.  It would work on manual (re)start
after installation, or after reboot, and even after package purge and
reinstall, it would then work the first time.  The problem, it turns
out, is when the new "_mandos" user (and corresponding group) is
created, the D-Bus server is not reloaded, and is therefore not aware
of that user, and does not recognize the user and group name in the
/etc/dbus-1/system.d/mandos.conf file.  The Mandos server, when it
tries to start and access the D-Bus, is then not permitted to connect
to its D-Bus bus name, and disables D-Bus use as a fallback measure;
i.e. the server works, but it is not controllable via D-Bus commands
(via mandos-ctl or mandos-monitor).  The next time the D-Bus daemon is
reloaded for any reason, the new user & group would become visible to
the D-Bus daemon and after that, any restart of the Mandos server
would succeed and it would bind to its D-Bus name properly, and
thereby be visible and controllable by mandos-ctl & mandos-monitor.
This was mostly invisible when using sysvinit, but systemd makes the
problem visible since the systemd service file for the Mandos server
is configured to not consider the Mandos server "started" until the
D-Bus name has been bound; this makes the starting of the service wait
for 90 seconds and then fail with a timeout error.

Fixing this should also make the Debian CI autopkgtest tests work.

* debian/mandos.postinst (configure): After creating (or renaming)
                                      user & group, reload D-Bus
                                      daemon (if present).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
mandos (1.8.7-1) unstable; urgency=medium
2
 
 
3
 
  * New upstream release.
4
 
  * debian/upstream/metadata: New.
5
 
  * debian/mandos-client.postrm: Use the same logic as the
6
 
    update_initramfs function in debian/mandos-client.postinst.
7
 
  * debian/mandos-client.templates (mandos-client/key_id): Line which
8
 
    should not be wrapped should be prefixed by a space.
9
 
  * debian/mandos.templates (mandos/key_id): - '' -
10
 
  * debian/po/en_US.po: New "translation" from ASCII to UTF-8.
11
 
  * debian/po/templates.pot: Updated.
12
 
  * debian/source/lintian-overrides
13
 
    (package-uses-old-debhelper-compat-version): New; set to "10".
14
 
  * debian/mandos-client.lintian-overrides
15
 
    (maintainer-script-supports-ancient-package-version): New.
16
 
    debian/mandos.lintian-overrides
17
 
    (maintainer-script-supports-ancient-package-version): - '' -
18
 
 
19
 
 -- Teddy Hogeborn <teddy@recompile.se>  Mon, 05 Aug 2019 23:22:00 +0200
20
 
 
21
 
mandos (1.8.6-1) unstable; urgency=medium
22
 
 
23
 
  * New upstream release.
24
 
  * Fix "mandos FTCBFS: hard codes build architecture pkg-config"
25
 
    by making pkg-config overridable (Closes: #933701)
26
 
  * debian/mandos.postinst (configure): After creating (or renaming) user
27
 
    & group, reload D-Bus daemon (if present).
28
 
 
29
 
 -- Teddy Hogeborn <teddy@recompile.se>  Sat, 03 Aug 2019 14:51:01 +0200
30
 
 
31
1
mandos (1.8.5-1) unstable; urgency=medium
32
2
 
33
3
  * New upstream release.