diff options
author | Julian Andres Klode <jak@debian.org> | 2017-05-07 12:17:05 +0200 |
---|---|---|
committer | Julian Andres Klode <jak@debian.org> | 2017-05-19 11:18:13 +0200 |
commit | 8d42a4e4ff7190e802b1b2f91adfc7a6e5b0ac69 (patch) | |
tree | 5b85cddab1e8b2320097c5be0110a535354f987a | |
parent | a46a4f4452fd10dce575dd5d88ad295463092020 (diff) |
Do not try to (re)start timers outside 'apt' package
dh_systemd_start inserted postinst commands in all packages,
rather than just the package containing the timers.
This also gets rid of postinst scripts for all other
packages, yay.
Closes: #862001
(cherry picked from commit 315d6aac02b657a4742b5fe2695707904c6033dd)
-rwxr-xr-x | debian/rules | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules index 77029f4af..27cf56dc3 100755 --- a/debian/rules +++ b/debian/rules @@ -33,7 +33,8 @@ override_dh_systemd_start: # Do not restart "apt-daily.service" because this script runs # unattended-upgrades. So if apt itself is upgraded as part of # an unattended-upgrades run it would kill itself - dh_systemd_start apt-daily.timer apt-daily-upgrade.timer + dh_systemd_start -papt apt-daily.timer apt-daily-upgrade.timer + dh_systemd_start --remaining-packages override_dh_auto_configure-arch: flags=-DWITH_DOC=OFF override_dh_auto_configure-indep: flags=-DWITH_DOC=ON |