diff options
author | Colin Watson <cjwatson@debian.org> | 2016-07-23 11:43:04 +0100 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2016-07-23 11:43:04 +0100 |
commit | ecffd848f1878657f194f9aff08a3d897b77dc25 (patch) | |
tree | 352d89a21bf5cbb6f2c22439994114f53fa4139a | |
parent | 548320c42c43a3e8a8a3f4f81179f917c2f3207f (diff) |
Don't stop the ssh-session-cleanup service on upgrade (closes: #832155).
-rw-r--r-- | debian/changelog | 6 | ||||
-rwxr-xr-x | debian/rules | 4 |
2 files changed, 10 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index 916c9be41..79c3141d6 100644 --- a/debian/changelog +++ b/debian/changelog | |||
@@ -1,3 +1,9 @@ | |||
1 | openssh (1:7.2p2-7) UNRELEASED; urgency=medium | ||
2 | |||
3 | * Don't stop the ssh-session-cleanup service on upgrade (closes: #832155). | ||
4 | |||
5 | -- Colin Watson <cjwatson@debian.org> Sat, 23 Jul 2016 11:10:11 +0100 | ||
6 | |||
1 | openssh (1:7.2p2-6) unstable; urgency=medium | 7 | openssh (1:7.2p2-6) unstable; urgency=medium |
2 | 8 | ||
3 | * debian/watch: Switch to HTTP (thanks, Nicholas Luedtke; closes: | 9 | * debian/watch: Switch to HTTP (thanks, Nicholas Luedtke; closes: |
diff --git a/debian/rules b/debian/rules index 4916c6f34..540418e7b 100755 --- a/debian/rules +++ b/debian/rules | |||
@@ -218,6 +218,10 @@ override_dh_systemd_enable: | |||
218 | dh_systemd_enable -popenssh-server --name ssh-session-cleanup \ | 218 | dh_systemd_enable -popenssh-server --name ssh-session-cleanup \ |
219 | ssh-session-cleanup.service | 219 | ssh-session-cleanup.service |
220 | 220 | ||
221 | override_dh_systemd_start: | ||
222 | dh_systemd_start -popenssh-server --no-restart-on-upgrade \ | ||
223 | ssh-session-cleanup.service | ||
224 | |||
221 | override_dh_installinit: | 225 | override_dh_installinit: |
222 | dh_installinit -R --name ssh | 226 | dh_installinit -R --name ssh |
223 | 227 | ||