summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog2
-rw-r--r--debian/openssh-server.init2
2 files changed, 3 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index 77f71d580..7c18cfdae 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -43,6 +43,8 @@ openssh (1:4.7p1-1) UNRELEASED; urgency=low
43 * Install the OpenSSH FAQ in /usr/share/doc/openssh-client. 43 * Install the OpenSSH FAQ in /usr/share/doc/openssh-client.
44 - Includes documentation on copying files with colons using scp 44 - Includes documentation on copying files with colons using scp
45 (closes: #303453). 45 (closes: #303453).
46 * Create /var/run/sshd on start even if /etc/ssh/sshd_not_to_be_run exists
47 (closes: #453285).
46 48
47 -- Colin Watson <cjwatson@debian.org> Sun, 23 Dec 2007 12:53:46 +0000 49 -- Colin Watson <cjwatson@debian.org> Sun, 23 Dec 2007 12:53:46 +0000
48 50
diff --git a/debian/openssh-server.init b/debian/openssh-server.init
index 59f45edd0..7706b6c39 100644
--- a/debian/openssh-server.init
+++ b/debian/openssh-server.init
@@ -70,10 +70,10 @@ export PATH="${PATH:+$PATH:}/usr/sbin:/sbin"
70 70
71case "$1" in 71case "$1" in
72 start) 72 start)
73 check_privsep_dir
73 check_for_no_start 74 check_for_no_start
74 check_dev_null 75 check_dev_null
75 log_daemon_msg "Starting OpenBSD Secure Shell server" "sshd" 76 log_daemon_msg "Starting OpenBSD Secure Shell server" "sshd"
76 check_privsep_dir
77 if start-stop-daemon --start --quiet --oknodo --pidfile /var/run/sshd.pid --exec /usr/sbin/sshd -- $SSHD_OPTS; then 77 if start-stop-daemon --start --quiet --oknodo --pidfile /var/run/sshd.pid --exec /usr/sbin/sshd -- $SSHD_OPTS; then
78 log_end_msg 0 78 log_end_msg 0
79 else 79 else