Skip to content
Commits on Source (2)
oddjob (0.34.3-4) unstable; urgency=medium
* control, postinst: Depend on systemd and move the trigger check after
debhelper. (Closes: #852000)
-- Timo Aaltonen <tjaalton@debian.org> Sat, 28 Jan 2017 19:24:48 +0200
oddjob (0.34.3-3) unstable; urgency=medium
* Add a trigger to restart the daemon when packages install files to
......
......@@ -27,6 +27,7 @@ Package: oddjob
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends},
dbus,
systemd,
Description: D-Bus service which runs odd jobs -- daemon
Oddjob is a D-Bus service which performs particular tasks for clients which
connect to it and issue requests using the system-wide message bus.
......
......@@ -2,9 +2,9 @@
set -e
#DEBHELPER#
if [ "$1" = triggered ]; then
service oddjobd restart
deb-systemd-invoke restart oddjobd.service
exit 0
fi
#DEBHELPER#
......@@ -21,6 +21,8 @@ override_dh_auto_configure:
--with-selinux-labels \
--without-python
override_dh_auto_test:
override_dh_install:
# purge .la files
find $(CURDIR)/debian/tmp -name "*.la" -type f -exec rm -f "{}" \;
......