Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
control, postinst: Depend on systemd and move the trigger check after debhelper. (Closes: #852000)
· 32be24c4
Timo Aaltonen
authored
Jan 28, 2017
32be24c4
releasing package oddjob version 0.34.3-4
· ebfed4c3
Timo Aaltonen
authored
Jan 28, 2017
ebfed4c3
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
ebfed4c3
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
...
...
debian/control
View file @
ebfed4c3
...
...
@@ -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.
...
...
debian/oddjob.postinst
View file @
ebfed4c3
...
...
@@ -2,9 +2,9 @@
set
-e
#DEBHELPER#
if
[
"
$1
"
=
triggered
]
;
then
service oddjobd restart
deb-systemd-invoke restart oddjobd.service
exit
0
fi
#DEBHELPER#
debian/rules
View file @
ebfed4c3
...
...
@@ -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 "{}" \;
...
...