diff options
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 7 | ||||
-rw-r--r-- | debian/openssh-server.config | 25 | ||||
-rw-r--r-- | debian/openssh-server.postinst | 82 | ||||
-rw-r--r-- | debian/openssh-server.templates.master | 16 | ||||
-rw-r--r-- | debian/po/ca.po | 30 | ||||
-rw-r--r-- | debian/po/cs.po | 30 | ||||
-rw-r--r-- | debian/po/da.po | 30 | ||||
-rw-r--r-- | debian/po/de.po | 30 | ||||
-rw-r--r-- | debian/po/el.po | 30 | ||||
-rw-r--r-- | debian/po/es.po | 30 | ||||
-rw-r--r-- | debian/po/fr.po | 30 | ||||
-rw-r--r-- | debian/po/it.po | 30 | ||||
-rw-r--r-- | debian/po/ja.po | 30 | ||||
-rw-r--r-- | debian/po/nl.po | 30 | ||||
-rw-r--r-- | debian/po/pl.po | 30 | ||||
-rw-r--r-- | debian/po/pt_BR.po | 30 | ||||
-rw-r--r-- | debian/po/ru.po | 30 | ||||
-rw-r--r-- | debian/po/templates.pot | 30 | ||||
-rw-r--r-- | debian/po/tr.po | 30 | ||||
-rw-r--r-- | debian/po/zh_CN.po | 30 |
20 files changed, 575 insertions, 35 deletions
diff --git a/debian/changelog b/debian/changelog index c1aa043f0..e0c41d52d 100644 --- a/debian/changelog +++ b/debian/changelog | |||
@@ -1,6 +1,13 @@ | |||
1 | openssh (1:3.8.1p1-11) UNRELEASED; urgency=low | 1 | openssh (1:3.8.1p1-11) UNRELEASED; urgency=low |
2 | 2 | ||
3 | * Move sshd_config(5) to openssh-server, where it belongs. | 3 | * Move sshd_config(5) to openssh-server, where it belongs. |
4 | * If PasswordAuthentication is disabled, then offer to disable | ||
5 | ChallengeResponseAuthentication too. The current PAM code will attempt | ||
6 | password-style authentication if ChallengeResponseAuthentication is | ||
7 | enabled (closes: #250369). | ||
8 | * This will ask a question of anyone who installed fresh with 1:3.8p1-2 or | ||
9 | later and then upgraded. Sorry about that ... for this reason, the | ||
10 | default answer is to leave ChallengeResponseAuthentication enabled. | ||
4 | 11 | ||
5 | -- Colin Watson <cjwatson@debian.org> Tue, 31 Aug 2004 04:30:34 +0100 | 12 | -- Colin Watson <cjwatson@debian.org> Tue, 31 Aug 2004 04:30:34 +0100 |
6 | 13 | ||
diff --git a/debian/openssh-server.config b/debian/openssh-server.config index b40e8afd7..0cd0a4b8d 100644 --- a/debian/openssh-server.config +++ b/debian/openssh-server.config | |||
@@ -7,6 +7,18 @@ version=$2 | |||
7 | . /usr/share/debconf/confmodule | 7 | . /usr/share/debconf/confmodule |
8 | db_version 2.0 | 8 | db_version 2.0 |
9 | 9 | ||
10 | |||
11 | get_config_option() { | ||
12 | option="$1" | ||
13 | |||
14 | [ -f /etc/ssh/sshd_config ] || return | ||
15 | |||
16 | # TODO: actually only one '=' allowed after option | ||
17 | perl -ne 'print if s/^[[:space:]]*'"$option"'[[:space:]=]+//i' \ | ||
18 | /etc/ssh/sshd_config 2>/dev/null | ||
19 | } | ||
20 | |||
21 | |||
10 | if [ -e /etc/init.d/ssh ] && ! grep -q pidfile /etc/init.d/ssh | 22 | if [ -e /etc/init.d/ssh ] && ! grep -q pidfile /etc/init.d/ssh |
11 | then | 23 | then |
12 | db_fset ssh/use_old_init_script seen false | 24 | db_fset ssh/use_old_init_script seen false |
@@ -35,6 +47,19 @@ then | |||
35 | then db_input medium ssh/protocol2_only ||true | 47 | then db_input medium ssh/protocol2_only ||true |
36 | fi | 48 | fi |
37 | fi | 49 | fi |
50 | |||
51 | # An empty version means we're upgrading from before the package split, | ||
52 | # so check. | ||
53 | if dpkg --compare-versions "$version" lt 1:3.8.1p1-11 | ||
54 | then | ||
55 | passwordauth="$(get_config_option PasswordAuthentication)" | ||
56 | crauth="$(get_config_option ChallengeResponseAuthentication)" | ||
57 | if [ "$passwordauth" = no ] && \ | ||
58 | ([ -z "$crauth" ] || [ "$crauth" = yes ]) | ||
59 | then | ||
60 | db_input critical ssh/disable_cr_auth || true | ||
61 | fi | ||
62 | fi | ||
38 | fi | 63 | fi |
39 | 64 | ||
40 | if [ -x /usr/sbin/in.telnetd ] && grep -q "^telnet\b" /etc/inetd.conf | 65 | if [ -x /usr/sbin/in.telnetd ] && grep -q "^telnet\b" /etc/inetd.conf |
diff --git a/debian/openssh-server.postinst b/debian/openssh-server.postinst index 28af3f490..dab8c94fd 100644 --- a/debian/openssh-server.postinst +++ b/debian/openssh-server.postinst | |||
@@ -29,12 +29,33 @@ check_idea_key() { | |||
29 | get_config_option() { | 29 | get_config_option() { |
30 | option="$1" | 30 | option="$1" |
31 | 31 | ||
32 | [ -f /etc/ssh/sshd_config ] || return | ||
33 | |||
32 | # TODO: actually only one '=' allowed after option | 34 | # TODO: actually only one '=' allowed after option |
33 | perl -ne 'print if s/^[[:space:]]*'"$option"'[[:space:]=]+//i' \ | 35 | perl -ne 'print if s/^[[:space:]]*'"$option"'[[:space:]=]+//i' \ |
34 | /etc/ssh/sshd_config | 36 | /etc/ssh/sshd_config |
35 | } | 37 | } |
36 | 38 | ||
37 | 39 | ||
40 | set_config_option() { | ||
41 | option="$1" | ||
42 | value="$2" | ||
43 | |||
44 | perl -e ' | ||
45 | $option = $ARGV[0]; $value = $ARGV[1]; $done = 0; | ||
46 | while (<STDIN>) { | ||
47 | if (s/^\s*\Q$option\E\s+.*/$option $value/) { | ||
48 | $done = 1; | ||
49 | } | ||
50 | print; | ||
51 | } | ||
52 | print "\n$option $value\n" unless $done;' \ | ||
53 | "$option" "$value" \ | ||
54 | < /etc/ssh/sshd_config > /etc/ssh/sshd_config.dpkg-new | ||
55 | mv /etc/ssh/sshd_config.dpkg-new /etc/ssh/sshd_config | ||
56 | } | ||
57 | |||
58 | |||
38 | host_keys_required() { | 59 | host_keys_required() { |
39 | hostkeys="$(get_config_option HostKey)" | 60 | hostkeys="$(get_config_option HostKey)" |
40 | if [ "$hostkeys" ]; then | 61 | if [ "$hostkeys" ]; then |
@@ -85,31 +106,54 @@ create_keys() { | |||
85 | } | 106 | } |
86 | 107 | ||
87 | 108 | ||
109 | check_password_auth() { | ||
110 | passwordauth="$(get_config_option PasswordAuthentication)" | ||
111 | crauth="$(get_config_option ChallengeResponseAuthentication)" | ||
112 | if [ "$passwordauth" = no ] && \ | ||
113 | ([ -z "$crauth" ] || [ "$crauth" = yes ]); then | ||
114 | db_get ssh/disable_cr_auth | ||
115 | if [ "$RET" = true ]; then | ||
116 | set_config_option ChallengeResponseAuthentication no | ||
117 | fi | ||
118 | fi | ||
119 | } | ||
120 | |||
121 | |||
88 | create_sshdconfig() { | 122 | create_sshdconfig() { |
89 | if [ -e /etc/ssh/sshd_config ] ; then | 123 | if [ -e /etc/ssh/sshd_config ] ; then |
90 | if dpkg --compare-versions "$oldversion" lt-nl 1:1.3 ; then | 124 | if dpkg --compare-versions "$oldversion" lt-nl 1:1.3 ; then |
91 | db_get ssh/new_config | 125 | db_get ssh/new_config |
92 | if [ "$RET" = "false" ] ; then return 0; fi | 126 | if [ "$RET" = "false" ] ; then return 0; fi |
93 | elif (dpkg --compare-versions "$oldversion" lt-nl 1:3.8p1-1 && \ | 127 | else |
94 | ! grep -iq ^UsePAM /etc/ssh/sshd_config) || \ | 128 | # Upgrade sshd configuration from a sane version. |
95 | grep -Eiq '^(PAMAuthenticationViaKbdInt|RhostsAuthentication)' \ | 129 | |
96 | /etc/ssh/sshd_config ; then | 130 | if (dpkg --compare-versions "$oldversion" lt-nl 1:3.8p1-1 && \ |
97 | # Upgrade from pre-3.7: UsePAM needed to maintain standard | 131 | ! grep -iq ^UsePAM /etc/ssh/sshd_config) || \ |
98 | # Debian configuration. | 132 | grep -Eiq '^(PAMAuthenticationViaKbdInt|RhostsAuthentication)' \ |
99 | # Note that --compare-versions is sadly not reliable enough | 133 | /etc/ssh/sshd_config ; then |
100 | # here due to the package split of ssh into openssh-client | 134 | # Upgrade from pre-3.7: UsePAM needed to maintain standard |
101 | # and openssh-server. The extra grep for some deprecated | 135 | # Debian configuration. |
102 | # options should with any luck be a good enough heuristic. | 136 | # Note that --compare-versions is sadly not reliable enough |
103 | echo -n 'Upgrading sshd_config (old version in .dpkg-old) ...' | 137 | # here due to the package split of ssh into openssh-client |
104 | cp -a /etc/ssh/sshd_config /etc/ssh/sshd_config.dpkg-old | 138 | # and openssh-server. The extra grep for some deprecated |
105 | perl -pe 's/^(PAMAuthenticationViaKbdInt|RhostsAuthentication)\b/#$1/i' \ | 139 | # options should with any luck be a good enough heuristic. |
106 | /etc/ssh/sshd_config > /etc/ssh/sshd_config.dpkg-new | 140 | echo -n 'Upgrading sshd_config (old version in .dpkg-old) ...' |
107 | echo >> /etc/ssh/sshd_config.dpkg-new | 141 | cp -a /etc/ssh/sshd_config /etc/ssh/sshd_config.dpkg-old |
108 | echo 'UsePAM yes' >> /etc/ssh/sshd_config.dpkg-new | 142 | perl -pe 's/^(PAMAuthenticationViaKbdInt|RhostsAuthentication)\b/#$1/i' \ |
109 | mv /etc/ssh/sshd_config.dpkg-new /etc/ssh/sshd_config | 143 | /etc/ssh/sshd_config > /etc/ssh/sshd_config.dpkg-new |
110 | echo | 144 | echo >> /etc/ssh/sshd_config.dpkg-new |
145 | echo 'UsePAM yes' >> /etc/ssh/sshd_config.dpkg-new | ||
146 | mv /etc/ssh/sshd_config.dpkg-new /etc/ssh/sshd_config | ||
147 | echo | ||
148 | fi | ||
149 | |||
150 | # An empty version means we're upgrading from before the | ||
151 | # package split, so check. | ||
152 | if dpkg --compare-versions "$oldversion" lt 1:3.8.1p1-11; then | ||
153 | check_password_auth | ||
154 | fi | ||
155 | |||
111 | return 0 | 156 | return 0 |
112 | else return 0 | ||
113 | fi | 157 | fi |
114 | fi | 158 | fi |
115 | 159 | ||
diff --git a/debian/openssh-server.templates.master b/debian/openssh-server.templates.master index e6d355639..af4d4e9f8 100644 --- a/debian/openssh-server.templates.master +++ b/debian/openssh-server.templates.master | |||
@@ -77,3 +77,19 @@ _Description: Warning: you must create a new host key | |||
77 | from the old (non-free) SSH installation. | 77 | from the old (non-free) SSH installation. |
78 | . | 78 | . |
79 | You will need to generate a new host key. | 79 | You will need to generate a new host key. |
80 | |||
81 | Template: ssh/disable_cr_auth | ||
82 | Type: boolean | ||
83 | Default: false | ||
84 | _Description: Disable challenge-response authentication? | ||
85 | Password authentication appears to be disabled in your current OpenSSH | ||
86 | server configuration. In order to prevent users from logging in using | ||
87 | passwords (perhaps using only public key authentication instead) with | ||
88 | recent versions of OpenSSH, you must disable challenge-response | ||
89 | authentication, or else ensure that your PAM configuration does not allow | ||
90 | Unix password file authentication. | ||
91 | . | ||
92 | If you disable challenge-response authentication, then users will not be | ||
93 | able to log in using passwords. If you leave it enabled (the default | ||
94 | answer), then the 'PasswordAuthentication no' option will have no useful | ||
95 | effect unless you also adjust your PAM configuration in /etc/pam.d/ssh. | ||
diff --git a/debian/po/ca.po b/debian/po/ca.po index 19d590977..633867185 100644 --- a/debian/po/ca.po +++ b/debian/po/ca.po | |||
@@ -6,7 +6,7 @@ msgid "" | |||
6 | msgstr "" | 6 | msgstr "" |
7 | "Project-Id-Version: openssh_1:3.8p1-3_templates\n" | 7 | "Project-Id-Version: openssh_1:3.8p1-3_templates\n" |
8 | "Report-Msgid-Bugs-To: \n" | 8 | "Report-Msgid-Bugs-To: \n" |
9 | "POT-Creation-Date: 2004-07-31 03:10+0100\n" | 9 | "POT-Creation-Date: 2004-10-06 14:06+0100\n" |
10 | "PO-Revision-Date: 2004-03-05 19:46GMT\n" | 10 | "PO-Revision-Date: 2004-03-05 19:46GMT\n" |
11 | "Last-Translator: Aleix Badia i Bosch <abadia@ica.es>\n" | 11 | "Last-Translator: Aleix Badia i Bosch <abadia@ica.es>\n" |
12 | "Language-Team: Catalan <debian-l10n-catalan@lists.debian.org>\n" | 12 | "Language-Team: Catalan <debian-l10n-catalan@lists.debian.org>\n" |
@@ -265,6 +265,34 @@ msgstr "" | |||
265 | msgid "You will need to generate a new host key." | 265 | msgid "You will need to generate a new host key." |
266 | msgstr "Haureu de generar una nova clau de l'ordinador central." | 266 | msgstr "Haureu de generar una nova clau de l'ordinador central." |
267 | 267 | ||
268 | #. Type: boolean | ||
269 | #. Description | ||
270 | #: ../openssh-server.templates.master:84 | ||
271 | msgid "Disable challenge-response authentication?" | ||
272 | msgstr "" | ||
273 | |||
274 | #. Type: boolean | ||
275 | #. Description | ||
276 | #: ../openssh-server.templates.master:84 | ||
277 | msgid "" | ||
278 | "Password authentication appears to be disabled in your current OpenSSH " | ||
279 | "server configuration. In order to prevent users from logging in using " | ||
280 | "passwords (perhaps using only public key authentication instead) with recent " | ||
281 | "versions of OpenSSH, you must disable challenge-response authentication, or " | ||
282 | "else ensure that your PAM configuration does not allow Unix password file " | ||
283 | "authentication." | ||
284 | msgstr "" | ||
285 | |||
286 | #. Type: boolean | ||
287 | #. Description | ||
288 | #: ../openssh-server.templates.master:84 | ||
289 | msgid "" | ||
290 | "If you disable challenge-response authentication, then users will not be " | ||
291 | "able to log in using passwords. If you leave it enabled (the default " | ||
292 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
293 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
294 | msgstr "" | ||
295 | |||
268 | #~ msgid "ssh2 keys merged in configuration files" | 296 | #~ msgid "ssh2 keys merged in configuration files" |
269 | #~ msgstr "S'han combinat les claus de l'ssh2 als fitxers de configuració" | 297 | #~ msgstr "S'han combinat les claus de l'ssh2 als fitxers de configuració" |
270 | 298 | ||
diff --git a/debian/po/cs.po b/debian/po/cs.po index 617f7d98d..19cc1762a 100644 --- a/debian/po/cs.po +++ b/debian/po/cs.po | |||
@@ -15,7 +15,7 @@ msgid "" | |||
15 | msgstr "" | 15 | msgstr "" |
16 | "Project-Id-Version: openssh\n" | 16 | "Project-Id-Version: openssh\n" |
17 | "Report-Msgid-Bugs-To: \n" | 17 | "Report-Msgid-Bugs-To: \n" |
18 | "POT-Creation-Date: 2004-07-31 03:10+0100\n" | 18 | "POT-Creation-Date: 2004-10-06 14:06+0100\n" |
19 | "PO-Revision-Date: 2004-01-28 15:10+0100\n" | 19 | "PO-Revision-Date: 2004-01-28 15:10+0100\n" |
20 | "Last-Translator: Miroslav Kure <kurem@debian.cz>\n" | 20 | "Last-Translator: Miroslav Kure <kurem@debian.cz>\n" |
21 | "Language-Team: Czech <provoz@debian.cz>\n" | 21 | "Language-Team: Czech <provoz@debian.cz>\n" |
@@ -263,6 +263,34 @@ msgstr "" | |||
263 | msgid "You will need to generate a new host key." | 263 | msgid "You will need to generate a new host key." |
264 | msgstr "Muste vygenerovat nov serverov kl" | 264 | msgstr "Muste vygenerovat nov serverov kl" |
265 | 265 | ||
266 | #. Type: boolean | ||
267 | #. Description | ||
268 | #: ../openssh-server.templates.master:84 | ||
269 | msgid "Disable challenge-response authentication?" | ||
270 | msgstr "" | ||
271 | |||
272 | #. Type: boolean | ||
273 | #. Description | ||
274 | #: ../openssh-server.templates.master:84 | ||
275 | msgid "" | ||
276 | "Password authentication appears to be disabled in your current OpenSSH " | ||
277 | "server configuration. In order to prevent users from logging in using " | ||
278 | "passwords (perhaps using only public key authentication instead) with recent " | ||
279 | "versions of OpenSSH, you must disable challenge-response authentication, or " | ||
280 | "else ensure that your PAM configuration does not allow Unix password file " | ||
281 | "authentication." | ||
282 | msgstr "" | ||
283 | |||
284 | #. Type: boolean | ||
285 | #. Description | ||
286 | #: ../openssh-server.templates.master:84 | ||
287 | msgid "" | ||
288 | "If you disable challenge-response authentication, then users will not be " | ||
289 | "able to log in using passwords. If you leave it enabled (the default " | ||
290 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
291 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
292 | msgstr "" | ||
293 | |||
266 | #~ msgid "ssh2 keys merged in configuration files" | 294 | #~ msgid "ssh2 keys merged in configuration files" |
267 | #~ msgstr "Kle ssh2 v konfiguranch souborech byly spojeny" | 295 | #~ msgstr "Kle ssh2 v konfiguranch souborech byly spojeny" |
268 | 296 | ||
diff --git a/debian/po/da.po b/debian/po/da.po index 6eb87ece2..a34023481 100644 --- a/debian/po/da.po +++ b/debian/po/da.po | |||
@@ -15,7 +15,7 @@ msgid "" | |||
15 | msgstr "" | 15 | msgstr "" |
16 | "Project-Id-Version: openssh 3.6.1p2\n" | 16 | "Project-Id-Version: openssh 3.6.1p2\n" |
17 | "Report-Msgid-Bugs-To: \n" | 17 | "Report-Msgid-Bugs-To: \n" |
18 | "POT-Creation-Date: 2004-07-31 03:10+0100\n" | 18 | "POT-Creation-Date: 2004-10-06 14:06+0100\n" |
19 | "PO-Revision-Date: 2003-10-28 14:30+0200\n" | 19 | "PO-Revision-Date: 2003-10-28 14:30+0200\n" |
20 | "Last-Translator: Morten Brix Pedersen <morten@wtf.dk>\n" | 20 | "Last-Translator: Morten Brix Pedersen <morten@wtf.dk>\n" |
21 | "Language-Team: debian-l10n-danish <debian-l10n-danish@lists.debian.org>\n" | 21 | "Language-Team: debian-l10n-danish <debian-l10n-danish@lists.debian.org>\n" |
@@ -268,6 +268,34 @@ msgstr "" | |||
268 | msgid "You will need to generate a new host key." | 268 | msgid "You will need to generate a new host key." |
269 | msgstr "Du skal oprette en ny værtsnøgle." | 269 | msgstr "Du skal oprette en ny værtsnøgle." |
270 | 270 | ||
271 | #. Type: boolean | ||
272 | #. Description | ||
273 | #: ../openssh-server.templates.master:84 | ||
274 | msgid "Disable challenge-response authentication?" | ||
275 | msgstr "" | ||
276 | |||
277 | #. Type: boolean | ||
278 | #. Description | ||
279 | #: ../openssh-server.templates.master:84 | ||
280 | msgid "" | ||
281 | "Password authentication appears to be disabled in your current OpenSSH " | ||
282 | "server configuration. In order to prevent users from logging in using " | ||
283 | "passwords (perhaps using only public key authentication instead) with recent " | ||
284 | "versions of OpenSSH, you must disable challenge-response authentication, or " | ||
285 | "else ensure that your PAM configuration does not allow Unix password file " | ||
286 | "authentication." | ||
287 | msgstr "" | ||
288 | |||
289 | #. Type: boolean | ||
290 | #. Description | ||
291 | #: ../openssh-server.templates.master:84 | ||
292 | msgid "" | ||
293 | "If you disable challenge-response authentication, then users will not be " | ||
294 | "able to log in using passwords. If you leave it enabled (the default " | ||
295 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
296 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
297 | msgstr "" | ||
298 | |||
271 | #~ msgid "ssh2 keys merged in configuration files" | 299 | #~ msgid "ssh2 keys merged in configuration files" |
272 | #~ msgstr "ssh2-nøgler flettet i opsætningsfilerne" | 300 | #~ msgstr "ssh2-nøgler flettet i opsætningsfilerne" |
273 | 301 | ||
diff --git a/debian/po/de.po b/debian/po/de.po index 17526f287..0af4ea07f 100644 --- a/debian/po/de.po +++ b/debian/po/de.po | |||
@@ -16,7 +16,7 @@ msgid "" | |||
16 | msgstr "" | 16 | msgstr "" |
17 | "Project-Id-Version: PACKAGE VERSION\n" | 17 | "Project-Id-Version: PACKAGE VERSION\n" |
18 | "Report-Msgid-Bugs-To: \n" | 18 | "Report-Msgid-Bugs-To: \n" |
19 | "POT-Creation-Date: 2004-07-31 03:10+0100\n" | 19 | "POT-Creation-Date: 2004-10-06 14:06+0100\n" |
20 | "PO-Revision-Date: 2004-05-30 09:49-0200\n" | 20 | "PO-Revision-Date: 2004-05-30 09:49-0200\n" |
21 | "Last-Translator: Helge Kreutzmann <kreutzm@itp.uni-hannover.de>\n" | 21 | "Last-Translator: Helge Kreutzmann <kreutzm@itp.uni-hannover.de>\n" |
22 | "Language-Team: de <debian-l10n-german@lists.debian.org>\n" | 22 | "Language-Team: de <debian-l10n-german@lists.debian.org>\n" |
@@ -274,6 +274,34 @@ msgstr "" | |||
274 | msgid "You will need to generate a new host key." | 274 | msgid "You will need to generate a new host key." |
275 | msgstr "Sie mssen einen neuen Host-Schlssel erzeugen." | 275 | msgstr "Sie mssen einen neuen Host-Schlssel erzeugen." |
276 | 276 | ||
277 | #. Type: boolean | ||
278 | #. Description | ||
279 | #: ../openssh-server.templates.master:84 | ||
280 | msgid "Disable challenge-response authentication?" | ||
281 | msgstr "" | ||
282 | |||
283 | #. Type: boolean | ||
284 | #. Description | ||
285 | #: ../openssh-server.templates.master:84 | ||
286 | msgid "" | ||
287 | "Password authentication appears to be disabled in your current OpenSSH " | ||
288 | "server configuration. In order to prevent users from logging in using " | ||
289 | "passwords (perhaps using only public key authentication instead) with recent " | ||
290 | "versions of OpenSSH, you must disable challenge-response authentication, or " | ||
291 | "else ensure that your PAM configuration does not allow Unix password file " | ||
292 | "authentication." | ||
293 | msgstr "" | ||
294 | |||
295 | #. Type: boolean | ||
296 | #. Description | ||
297 | #: ../openssh-server.templates.master:84 | ||
298 | msgid "" | ||
299 | "If you disable challenge-response authentication, then users will not be " | ||
300 | "able to log in using passwords. If you leave it enabled (the default " | ||
301 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
302 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
303 | msgstr "" | ||
304 | |||
277 | #~ msgid "ssh2 keys merged in configuration files" | 305 | #~ msgid "ssh2 keys merged in configuration files" |
278 | #~ msgstr "ssh2-Schlssel in die Konfigurationsdateien eingefgt" | 306 | #~ msgstr "ssh2-Schlssel in die Konfigurationsdateien eingefgt" |
279 | 307 | ||
diff --git a/debian/po/el.po b/debian/po/el.po index 4a67e7116..5cb31d755 100644 --- a/debian/po/el.po +++ b/debian/po/el.po | |||
@@ -16,7 +16,7 @@ msgid "" | |||
16 | msgstr "" | 16 | msgstr "" |
17 | "Project-Id-Version: el\n" | 17 | "Project-Id-Version: el\n" |
18 | "Report-Msgid-Bugs-To: \n" | 18 | "Report-Msgid-Bugs-To: \n" |
19 | "POT-Creation-Date: 2004-07-31 03:10+0100\n" | 19 | "POT-Creation-Date: 2004-10-06 14:06+0100\n" |
20 | "PO-Revision-Date: 2004-02-15 14:14EEST\n" | 20 | "PO-Revision-Date: 2004-02-15 14:14EEST\n" |
21 | "Last-Translator: Konstantinos Margaritis <markos@debian.org>\n" | 21 | "Last-Translator: Konstantinos Margaritis <markos@debian.org>\n" |
22 | "Language-Team: Greek <debian-l10n-greek@lists.debian.org>\n" | 22 | "Language-Team: Greek <debian-l10n-greek@lists.debian.org>\n" |
@@ -283,6 +283,34 @@ msgstr "" | |||
283 | msgid "You will need to generate a new host key." | 283 | msgid "You will need to generate a new host key." |
284 | msgstr "Πρέπει να δημιουργήσετε ένα νέο κλειδί για τον υπολογιστή (host key)." | 284 | msgstr "Πρέπει να δημιουργήσετε ένα νέο κλειδί για τον υπολογιστή (host key)." |
285 | 285 | ||
286 | #. Type: boolean | ||
287 | #. Description | ||
288 | #: ../openssh-server.templates.master:84 | ||
289 | msgid "Disable challenge-response authentication?" | ||
290 | msgstr "" | ||
291 | |||
292 | #. Type: boolean | ||
293 | #. Description | ||
294 | #: ../openssh-server.templates.master:84 | ||
295 | msgid "" | ||
296 | "Password authentication appears to be disabled in your current OpenSSH " | ||
297 | "server configuration. In order to prevent users from logging in using " | ||
298 | "passwords (perhaps using only public key authentication instead) with recent " | ||
299 | "versions of OpenSSH, you must disable challenge-response authentication, or " | ||
300 | "else ensure that your PAM configuration does not allow Unix password file " | ||
301 | "authentication." | ||
302 | msgstr "" | ||
303 | |||
304 | #. Type: boolean | ||
305 | #. Description | ||
306 | #: ../openssh-server.templates.master:84 | ||
307 | msgid "" | ||
308 | "If you disable challenge-response authentication, then users will not be " | ||
309 | "able to log in using passwords. If you leave it enabled (the default " | ||
310 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
311 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
312 | msgstr "" | ||
313 | |||
286 | #~ msgid "ssh2 keys merged in configuration files" | 314 | #~ msgid "ssh2 keys merged in configuration files" |
287 | #~ msgstr "Τα κλειδιά ssh2 συγχωνεύτηκαν στα αρχεία ρυθμίσεων" | 315 | #~ msgstr "Τα κλειδιά ssh2 συγχωνεύτηκαν στα αρχεία ρυθμίσεων" |
288 | 316 | ||
diff --git a/debian/po/es.po b/debian/po/es.po index 84b290e0a..d34d1a9df 100644 --- a/debian/po/es.po +++ b/debian/po/es.po | |||
@@ -32,7 +32,7 @@ msgid "" | |||
32 | msgstr "" | 32 | msgstr "" |
33 | "Project-Id-Version: openssh 3.6.1p2-11\n" | 33 | "Project-Id-Version: openssh 3.6.1p2-11\n" |
34 | "Report-Msgid-Bugs-To: \n" | 34 | "Report-Msgid-Bugs-To: \n" |
35 | "POT-Creation-Date: 2004-07-31 03:10+0100\n" | 35 | "POT-Creation-Date: 2004-10-06 14:06+0100\n" |
36 | "PO-Revision-Date: 2004-01-17 17:47+0200\n" | 36 | "PO-Revision-Date: 2004-01-17 17:47+0200\n" |
37 | "Last-Translator: Javier Fernandez-Sanguino Pea <jfs@computer.org>\n" | 37 | "Last-Translator: Javier Fernandez-Sanguino Pea <jfs@computer.org>\n" |
38 | "Language-Team: Debian L10n Spanish <debian-l10n-spanish@lists.debian.org>\n" | 38 | "Language-Team: Debian L10n Spanish <debian-l10n-spanish@lists.debian.org>\n" |
@@ -289,6 +289,34 @@ msgstr "" | |||
289 | msgid "You will need to generate a new host key." | 289 | msgid "You will need to generate a new host key." |
290 | msgstr "Necesitar generar una nueva clave para su servidor." | 290 | msgstr "Necesitar generar una nueva clave para su servidor." |
291 | 291 | ||
292 | #. Type: boolean | ||
293 | #. Description | ||
294 | #: ../openssh-server.templates.master:84 | ||
295 | msgid "Disable challenge-response authentication?" | ||
296 | msgstr "" | ||
297 | |||
298 | #. Type: boolean | ||
299 | #. Description | ||
300 | #: ../openssh-server.templates.master:84 | ||
301 | msgid "" | ||
302 | "Password authentication appears to be disabled in your current OpenSSH " | ||
303 | "server configuration. In order to prevent users from logging in using " | ||
304 | "passwords (perhaps using only public key authentication instead) with recent " | ||
305 | "versions of OpenSSH, you must disable challenge-response authentication, or " | ||
306 | "else ensure that your PAM configuration does not allow Unix password file " | ||
307 | "authentication." | ||
308 | msgstr "" | ||
309 | |||
310 | #. Type: boolean | ||
311 | #. Description | ||
312 | #: ../openssh-server.templates.master:84 | ||
313 | msgid "" | ||
314 | "If you disable challenge-response authentication, then users will not be " | ||
315 | "able to log in using passwords. If you leave it enabled (the default " | ||
316 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
317 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
318 | msgstr "" | ||
319 | |||
292 | #~ msgid "ssh2 keys merged in configuration files" | 320 | #~ msgid "ssh2 keys merged in configuration files" |
293 | #~ msgstr "Las claves ssh2 ya se incluyen en los ficheros de configuracin" | 321 | #~ msgstr "Las claves ssh2 ya se incluyen en los ficheros de configuracin" |
294 | 322 | ||
diff --git a/debian/po/fr.po b/debian/po/fr.po index 6c6ecfaab..0ae9bbb24 100644 --- a/debian/po/fr.po +++ b/debian/po/fr.po | |||
@@ -15,7 +15,7 @@ msgid "" | |||
15 | msgstr "" | 15 | msgstr "" |
16 | "Project-Id-Version: openssh 3.6.1p2-5\n" | 16 | "Project-Id-Version: openssh 3.6.1p2-5\n" |
17 | "Report-Msgid-Bugs-To: \n" | 17 | "Report-Msgid-Bugs-To: \n" |
18 | "POT-Creation-Date: 2004-07-31 03:10+0100\n" | 18 | "POT-Creation-Date: 2004-10-06 14:06+0100\n" |
19 | "PO-Revision-Date: 2003-05-22 10:34+0200\n" | 19 | "PO-Revision-Date: 2003-05-22 10:34+0200\n" |
20 | "Last-Translator: Denis Barbier <barbier@debian.org>\n" | 20 | "Last-Translator: Denis Barbier <barbier@debian.org>\n" |
21 | "Language-Team: French <Debian-l10n-french@lists.debian.org>\n" | 21 | "Language-Team: French <Debian-l10n-french@lists.debian.org>\n" |
@@ -285,6 +285,34 @@ msgstr "" | |||
285 | msgid "You will need to generate a new host key." | 285 | msgid "You will need to generate a new host key." |
286 | msgstr "Vous aurez besoin de gnrer une nouvelle cl d'hte." | 286 | msgstr "Vous aurez besoin de gnrer une nouvelle cl d'hte." |
287 | 287 | ||
288 | #. Type: boolean | ||
289 | #. Description | ||
290 | #: ../openssh-server.templates.master:84 | ||
291 | msgid "Disable challenge-response authentication?" | ||
292 | msgstr "" | ||
293 | |||
294 | #. Type: boolean | ||
295 | #. Description | ||
296 | #: ../openssh-server.templates.master:84 | ||
297 | msgid "" | ||
298 | "Password authentication appears to be disabled in your current OpenSSH " | ||
299 | "server configuration. In order to prevent users from logging in using " | ||
300 | "passwords (perhaps using only public key authentication instead) with recent " | ||
301 | "versions of OpenSSH, you must disable challenge-response authentication, or " | ||
302 | "else ensure that your PAM configuration does not allow Unix password file " | ||
303 | "authentication." | ||
304 | msgstr "" | ||
305 | |||
306 | #. Type: boolean | ||
307 | #. Description | ||
308 | #: ../openssh-server.templates.master:84 | ||
309 | msgid "" | ||
310 | "If you disable challenge-response authentication, then users will not be " | ||
311 | "able to log in using passwords. If you leave it enabled (the default " | ||
312 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
313 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
314 | msgstr "" | ||
315 | |||
288 | #~ msgid "ssh2 keys merged in configuration files" | 316 | #~ msgid "ssh2 keys merged in configuration files" |
289 | #~ msgstr "Cls pour ssh2 fusionnes dans les fichiers de configuration" | 317 | #~ msgstr "Cls pour ssh2 fusionnes dans les fichiers de configuration" |
290 | 318 | ||
diff --git a/debian/po/it.po b/debian/po/it.po index b827e9883..303cf5e52 100644 --- a/debian/po/it.po +++ b/debian/po/it.po | |||
@@ -15,7 +15,7 @@ msgid "" | |||
15 | msgstr "" | 15 | msgstr "" |
16 | "Project-Id-Version: openssh 3.6.1\n" | 16 | "Project-Id-Version: openssh 3.6.1\n" |
17 | "Report-Msgid-Bugs-To: \n" | 17 | "Report-Msgid-Bugs-To: \n" |
18 | "POT-Creation-Date: 2004-07-31 03:10+0100\n" | 18 | "POT-Creation-Date: 2004-10-06 14:06+0100\n" |
19 | "PO-Revision-Date: 2003-12-21 12:23+0100\n" | 19 | "PO-Revision-Date: 2003-12-21 12:23+0100\n" |
20 | "Last-Translator: Renato Gini <rgini@openlabs.it>\n" | 20 | "Last-Translator: Renato Gini <rgini@openlabs.it>\n" |
21 | "Language-Team: Italian <debian-l10n-italian@lists.debian.org>\n" | 21 | "Language-Team: Italian <debian-l10n-italian@lists.debian.org>\n" |
@@ -279,6 +279,34 @@ msgstr "" | |||
279 | msgid "You will need to generate a new host key." | 279 | msgid "You will need to generate a new host key." |
280 | msgstr "Sar necessario generare una nuova chiave host." | 280 | msgstr "Sar necessario generare una nuova chiave host." |
281 | 281 | ||
282 | #. Type: boolean | ||
283 | #. Description | ||
284 | #: ../openssh-server.templates.master:84 | ||
285 | msgid "Disable challenge-response authentication?" | ||
286 | msgstr "" | ||
287 | |||
288 | #. Type: boolean | ||
289 | #. Description | ||
290 | #: ../openssh-server.templates.master:84 | ||
291 | msgid "" | ||
292 | "Password authentication appears to be disabled in your current OpenSSH " | ||
293 | "server configuration. In order to prevent users from logging in using " | ||
294 | "passwords (perhaps using only public key authentication instead) with recent " | ||
295 | "versions of OpenSSH, you must disable challenge-response authentication, or " | ||
296 | "else ensure that your PAM configuration does not allow Unix password file " | ||
297 | "authentication." | ||
298 | msgstr "" | ||
299 | |||
300 | #. Type: boolean | ||
301 | #. Description | ||
302 | #: ../openssh-server.templates.master:84 | ||
303 | msgid "" | ||
304 | "If you disable challenge-response authentication, then users will not be " | ||
305 | "able to log in using passwords. If you leave it enabled (the default " | ||
306 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
307 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
308 | msgstr "" | ||
309 | |||
282 | #~ msgid "ssh2 keys merged in configuration files" | 310 | #~ msgid "ssh2 keys merged in configuration files" |
283 | #~ msgstr "chiavi ssh2 aggiunte nei file di configurazione" | 311 | #~ msgstr "chiavi ssh2 aggiunte nei file di configurazione" |
284 | 312 | ||
diff --git a/debian/po/ja.po b/debian/po/ja.po index 0baefcc8e..5b03d6256 100644 --- a/debian/po/ja.po +++ b/debian/po/ja.po | |||
@@ -15,7 +15,7 @@ msgid "" | |||
15 | msgstr "" | 15 | msgstr "" |
16 | "Project-Id-Version: PACKAGE VERSION\n" | 16 | "Project-Id-Version: PACKAGE VERSION\n" |
17 | "Report-Msgid-Bugs-To: \n" | 17 | "Report-Msgid-Bugs-To: \n" |
18 | "POT-Creation-Date: 2004-07-31 03:10+0100\n" | 18 | "POT-Creation-Date: 2004-10-06 14:06+0100\n" |
19 | "PO-Revision-Date: 2003-09-24 09:32+0900\n" | 19 | "PO-Revision-Date: 2003-09-24 09:32+0900\n" |
20 | "Last-Translator: Kenshi Muto <kmuto@debian.org>\n" | 20 | "Last-Translator: Kenshi Muto <kmuto@debian.org>\n" |
21 | "Language-Team: Japanese <debian-japanese@lists.debian.org>\n" | 21 | "Language-Team: Japanese <debian-japanese@lists.debian.org>\n" |
@@ -267,6 +267,34 @@ msgstr "" | |||
267 | msgid "You will need to generate a new host key." | 267 | msgid "You will need to generate a new host key." |
268 | msgstr "ۥȥɬפޤ" | 268 | msgstr "ۥȥɬפޤ" |
269 | 269 | ||
270 | #. Type: boolean | ||
271 | #. Description | ||
272 | #: ../openssh-server.templates.master:84 | ||
273 | msgid "Disable challenge-response authentication?" | ||
274 | msgstr "" | ||
275 | |||
276 | #. Type: boolean | ||
277 | #. Description | ||
278 | #: ../openssh-server.templates.master:84 | ||
279 | msgid "" | ||
280 | "Password authentication appears to be disabled in your current OpenSSH " | ||
281 | "server configuration. In order to prevent users from logging in using " | ||
282 | "passwords (perhaps using only public key authentication instead) with recent " | ||
283 | "versions of OpenSSH, you must disable challenge-response authentication, or " | ||
284 | "else ensure that your PAM configuration does not allow Unix password file " | ||
285 | "authentication." | ||
286 | msgstr "" | ||
287 | |||
288 | #. Type: boolean | ||
289 | #. Description | ||
290 | #: ../openssh-server.templates.master:84 | ||
291 | msgid "" | ||
292 | "If you disable challenge-response authentication, then users will not be " | ||
293 | "able to log in using passwords. If you leave it enabled (the default " | ||
294 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
295 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
296 | msgstr "" | ||
297 | |||
270 | #~ msgid "ssh2 keys merged in configuration files" | 298 | #~ msgid "ssh2 keys merged in configuration files" |
271 | #~ msgstr "ssh2 ե礵ޤ" | 299 | #~ msgstr "ssh2 ե礵ޤ" |
272 | 300 | ||
diff --git a/debian/po/nl.po b/debian/po/nl.po index 40bca6356..059d623da 100644 --- a/debian/po/nl.po +++ b/debian/po/nl.po | |||
@@ -15,7 +15,7 @@ msgid "" | |||
15 | msgstr "" | 15 | msgstr "" |
16 | "Project-Id-Version: openssh 3.6.1p2-9\n" | 16 | "Project-Id-Version: openssh 3.6.1p2-9\n" |
17 | "Report-Msgid-Bugs-To: \n" | 17 | "Report-Msgid-Bugs-To: \n" |
18 | "POT-Creation-Date: 2004-07-31 03:10+0100\n" | 18 | "POT-Creation-Date: 2004-10-06 14:06+0100\n" |
19 | "PO-Revision-Date: 2003-09-27 14:43+0100\n" | 19 | "PO-Revision-Date: 2003-09-27 14:43+0100\n" |
20 | "Last-Translator: Bart Cornelis <cobaco@linux.be>\n" | 20 | "Last-Translator: Bart Cornelis <cobaco@linux.be>\n" |
21 | "Language-Team: debian-l10n-dutch <debian-l10n-dutch@lists.debian.org>\n" | 21 | "Language-Team: debian-l10n-dutch <debian-l10n-dutch@lists.debian.org>\n" |
@@ -278,6 +278,34 @@ msgstr "" | |||
278 | msgid "You will need to generate a new host key." | 278 | msgid "You will need to generate a new host key." |
279 | msgstr "Het zal nodig zijn om een nieuwe computersleutel te genereren" | 279 | msgstr "Het zal nodig zijn om een nieuwe computersleutel te genereren" |
280 | 280 | ||
281 | #. Type: boolean | ||
282 | #. Description | ||
283 | #: ../openssh-server.templates.master:84 | ||
284 | msgid "Disable challenge-response authentication?" | ||
285 | msgstr "" | ||
286 | |||
287 | #. Type: boolean | ||
288 | #. Description | ||
289 | #: ../openssh-server.templates.master:84 | ||
290 | msgid "" | ||
291 | "Password authentication appears to be disabled in your current OpenSSH " | ||
292 | "server configuration. In order to prevent users from logging in using " | ||
293 | "passwords (perhaps using only public key authentication instead) with recent " | ||
294 | "versions of OpenSSH, you must disable challenge-response authentication, or " | ||
295 | "else ensure that your PAM configuration does not allow Unix password file " | ||
296 | "authentication." | ||
297 | msgstr "" | ||
298 | |||
299 | #. Type: boolean | ||
300 | #. Description | ||
301 | #: ../openssh-server.templates.master:84 | ||
302 | msgid "" | ||
303 | "If you disable challenge-response authentication, then users will not be " | ||
304 | "able to log in using passwords. If you leave it enabled (the default " | ||
305 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
306 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
307 | msgstr "" | ||
308 | |||
281 | #~ msgid "ssh2 keys merged in configuration files" | 309 | #~ msgid "ssh2 keys merged in configuration files" |
282 | #~ msgstr "ssh2 sleutels zijn samengevoegd in de configuratiebestanden" | 310 | #~ msgstr "ssh2 sleutels zijn samengevoegd in de configuratiebestanden" |
283 | 311 | ||
diff --git a/debian/po/pl.po b/debian/po/pl.po index f91259960..530f1668f 100644 --- a/debian/po/pl.po +++ b/debian/po/pl.po | |||
@@ -15,7 +15,7 @@ msgid "" | |||
15 | msgstr "" | 15 | msgstr "" |
16 | "Project-Id-Version: PACKAGE VERSION\n" | 16 | "Project-Id-Version: PACKAGE VERSION\n" |
17 | "Report-Msgid-Bugs-To: \n" | 17 | "Report-Msgid-Bugs-To: \n" |
18 | "POT-Creation-Date: 2004-07-31 03:10+0100\n" | 18 | "POT-Creation-Date: 2004-10-06 14:06+0100\n" |
19 | "PO-Revision-Date: 2004-04-08 18:28+0200\n" | 19 | "PO-Revision-Date: 2004-04-08 18:28+0200\n" |
20 | "Last-Translator: Emil Nowak <emil5@go2.pl>\n" | 20 | "Last-Translator: Emil Nowak <emil5@go2.pl>\n" |
21 | "Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\n" | 21 | "Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\n" |
@@ -273,6 +273,34 @@ msgstr "" | |||
273 | msgid "You will need to generate a new host key." | 273 | msgid "You will need to generate a new host key." |
274 | msgstr "Bdziesz musia wygenerowa nowy klucz hosta." | 274 | msgstr "Bdziesz musia wygenerowa nowy klucz hosta." |
275 | 275 | ||
276 | #. Type: boolean | ||
277 | #. Description | ||
278 | #: ../openssh-server.templates.master:84 | ||
279 | msgid "Disable challenge-response authentication?" | ||
280 | msgstr "" | ||
281 | |||
282 | #. Type: boolean | ||
283 | #. Description | ||
284 | #: ../openssh-server.templates.master:84 | ||
285 | msgid "" | ||
286 | "Password authentication appears to be disabled in your current OpenSSH " | ||
287 | "server configuration. In order to prevent users from logging in using " | ||
288 | "passwords (perhaps using only public key authentication instead) with recent " | ||
289 | "versions of OpenSSH, you must disable challenge-response authentication, or " | ||
290 | "else ensure that your PAM configuration does not allow Unix password file " | ||
291 | "authentication." | ||
292 | msgstr "" | ||
293 | |||
294 | #. Type: boolean | ||
295 | #. Description | ||
296 | #: ../openssh-server.templates.master:84 | ||
297 | msgid "" | ||
298 | "If you disable challenge-response authentication, then users will not be " | ||
299 | "able to log in using passwords. If you leave it enabled (the default " | ||
300 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
301 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
302 | msgstr "" | ||
303 | |||
276 | #~ msgid "ssh2 keys merged in configuration files" | 304 | #~ msgid "ssh2 keys merged in configuration files" |
277 | #~ msgstr "klucze ssh2 wczone do plikw konfiguracyjnych" | 305 | #~ msgstr "klucze ssh2 wczone do plikw konfiguracyjnych" |
278 | 306 | ||
diff --git a/debian/po/pt_BR.po b/debian/po/pt_BR.po index 4bf9baf82..4df5c2766 100644 --- a/debian/po/pt_BR.po +++ b/debian/po/pt_BR.po | |||
@@ -15,7 +15,7 @@ msgid "" | |||
15 | msgstr "" | 15 | msgstr "" |
16 | "Project-Id-Version: openssh_3.6.1p2-9\n" | 16 | "Project-Id-Version: openssh_3.6.1p2-9\n" |
17 | "Report-Msgid-Bugs-To: \n" | 17 | "Report-Msgid-Bugs-To: \n" |
18 | "POT-Creation-Date: 2004-07-31 03:10+0100\n" | 18 | "POT-Creation-Date: 2004-10-06 14:06+0100\n" |
19 | "PO-Revision-Date: 2003-11-09 16:29-0300\n" | 19 | "PO-Revision-Date: 2003-11-09 16:29-0300\n" |
20 | "Last-Translator: Andr Lus Lopes <andrelop@debian.org>\n" | 20 | "Last-Translator: Andr Lus Lopes <andrelop@debian.org>\n" |
21 | "Language-Team: Debian-BR Project <debian-l10n-portuguese@lists.debian.org>\n" | 21 | "Language-Team: Debian-BR Project <debian-l10n-portuguese@lists.debian.org>\n" |
@@ -279,6 +279,34 @@ msgstr "" | |||
279 | msgid "You will need to generate a new host key." | 279 | msgid "You will need to generate a new host key." |
280 | msgstr "Voc precisar gerar uma nova host key." | 280 | msgstr "Voc precisar gerar uma nova host key." |
281 | 281 | ||
282 | #. Type: boolean | ||
283 | #. Description | ||
284 | #: ../openssh-server.templates.master:84 | ||
285 | msgid "Disable challenge-response authentication?" | ||
286 | msgstr "" | ||
287 | |||
288 | #. Type: boolean | ||
289 | #. Description | ||
290 | #: ../openssh-server.templates.master:84 | ||
291 | msgid "" | ||
292 | "Password authentication appears to be disabled in your current OpenSSH " | ||
293 | "server configuration. In order to prevent users from logging in using " | ||
294 | "passwords (perhaps using only public key authentication instead) with recent " | ||
295 | "versions of OpenSSH, you must disable challenge-response authentication, or " | ||
296 | "else ensure that your PAM configuration does not allow Unix password file " | ||
297 | "authentication." | ||
298 | msgstr "" | ||
299 | |||
300 | #. Type: boolean | ||
301 | #. Description | ||
302 | #: ../openssh-server.templates.master:84 | ||
303 | msgid "" | ||
304 | "If you disable challenge-response authentication, then users will not be " | ||
305 | "able to log in using passwords. If you leave it enabled (the default " | ||
306 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
307 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
308 | msgstr "" | ||
309 | |||
282 | #~ msgid "ssh2 keys merged in configuration files" | 310 | #~ msgid "ssh2 keys merged in configuration files" |
283 | #~ msgstr "Chaves ssh2 includas nos arquivos de configurao" | 311 | #~ msgstr "Chaves ssh2 includas nos arquivos de configurao" |
284 | 312 | ||
diff --git a/debian/po/ru.po b/debian/po/ru.po index 6a46d1ec6..43af92834 100644 --- a/debian/po/ru.po +++ b/debian/po/ru.po | |||
@@ -16,7 +16,7 @@ msgid "" | |||
16 | msgstr "" | 16 | msgstr "" |
17 | "Project-Id-Version: PACKAGE VERSION\n" | 17 | "Project-Id-Version: PACKAGE VERSION\n" |
18 | "Report-Msgid-Bugs-To: \n" | 18 | "Report-Msgid-Bugs-To: \n" |
19 | "POT-Creation-Date: 2004-07-31 03:10+0100\n" | 19 | "POT-Creation-Date: 2004-10-06 14:06+0100\n" |
20 | "PO-Revision-Date: 2003-10-02 17:20+0500\n" | 20 | "PO-Revision-Date: 2003-10-02 17:20+0500\n" |
21 | "Last-Translator: Ilgiz Kalmetev <translator@ilgiz.pp.ru>\n" | 21 | "Last-Translator: Ilgiz Kalmetev <translator@ilgiz.pp.ru>\n" |
22 | "Language-Team: russian <ru@li.org>\n" | 22 | "Language-Team: russian <ru@li.org>\n" |
@@ -269,6 +269,34 @@ msgstr "" | |||
269 | msgid "You will need to generate a new host key." | 269 | msgid "You will need to generate a new host key." |
270 | msgstr " ." | 270 | msgstr " ." |
271 | 271 | ||
272 | #. Type: boolean | ||
273 | #. Description | ||
274 | #: ../openssh-server.templates.master:84 | ||
275 | msgid "Disable challenge-response authentication?" | ||
276 | msgstr "" | ||
277 | |||
278 | #. Type: boolean | ||
279 | #. Description | ||
280 | #: ../openssh-server.templates.master:84 | ||
281 | msgid "" | ||
282 | "Password authentication appears to be disabled in your current OpenSSH " | ||
283 | "server configuration. In order to prevent users from logging in using " | ||
284 | "passwords (perhaps using only public key authentication instead) with recent " | ||
285 | "versions of OpenSSH, you must disable challenge-response authentication, or " | ||
286 | "else ensure that your PAM configuration does not allow Unix password file " | ||
287 | "authentication." | ||
288 | msgstr "" | ||
289 | |||
290 | #. Type: boolean | ||
291 | #. Description | ||
292 | #: ../openssh-server.templates.master:84 | ||
293 | msgid "" | ||
294 | "If you disable challenge-response authentication, then users will not be " | ||
295 | "able to log in using passwords. If you leave it enabled (the default " | ||
296 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
297 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
298 | msgstr "" | ||
299 | |||
272 | #~ msgid "ssh2 keys merged in configuration files" | 300 | #~ msgid "ssh2 keys merged in configuration files" |
273 | #~ msgstr " ssh2 " | 301 | #~ msgstr " ssh2 " |
274 | 302 | ||
diff --git a/debian/po/templates.pot b/debian/po/templates.pot index a4224d581..6d43c330f 100644 --- a/debian/po/templates.pot +++ b/debian/po/templates.pot | |||
@@ -16,7 +16,7 @@ msgid "" | |||
16 | msgstr "" | 16 | msgstr "" |
17 | "Project-Id-Version: PACKAGE VERSION\n" | 17 | "Project-Id-Version: PACKAGE VERSION\n" |
18 | "Report-Msgid-Bugs-To: \n" | 18 | "Report-Msgid-Bugs-To: \n" |
19 | "POT-Creation-Date: 2004-07-31 03:10+0100\n" | 19 | "POT-Creation-Date: 2004-10-06 14:06+0100\n" |
20 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" | 20 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
21 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | 21 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
22 | "Language-Team: LANGUAGE <LL@li.org>\n" | 22 | "Language-Team: LANGUAGE <LL@li.org>\n" |
@@ -223,3 +223,31 @@ msgstr "" | |||
223 | #: ../openssh-server.templates.master:74 | 223 | #: ../openssh-server.templates.master:74 |
224 | msgid "You will need to generate a new host key." | 224 | msgid "You will need to generate a new host key." |
225 | msgstr "" | 225 | msgstr "" |
226 | |||
227 | #. Type: boolean | ||
228 | #. Description | ||
229 | #: ../openssh-server.templates.master:84 | ||
230 | msgid "Disable challenge-response authentication?" | ||
231 | msgstr "" | ||
232 | |||
233 | #. Type: boolean | ||
234 | #. Description | ||
235 | #: ../openssh-server.templates.master:84 | ||
236 | msgid "" | ||
237 | "Password authentication appears to be disabled in your current OpenSSH " | ||
238 | "server configuration. In order to prevent users from logging in using " | ||
239 | "passwords (perhaps using only public key authentication instead) with recent " | ||
240 | "versions of OpenSSH, you must disable challenge-response authentication, or " | ||
241 | "else ensure that your PAM configuration does not allow Unix password file " | ||
242 | "authentication." | ||
243 | msgstr "" | ||
244 | |||
245 | #. Type: boolean | ||
246 | #. Description | ||
247 | #: ../openssh-server.templates.master:84 | ||
248 | msgid "" | ||
249 | "If you disable challenge-response authentication, then users will not be " | ||
250 | "able to log in using passwords. If you leave it enabled (the default " | ||
251 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
252 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
253 | msgstr "" | ||
diff --git a/debian/po/tr.po b/debian/po/tr.po index 499041ad2..d3d471d3c 100644 --- a/debian/po/tr.po +++ b/debian/po/tr.po | |||
@@ -6,7 +6,7 @@ msgid "" | |||
6 | msgstr "" | 6 | msgstr "" |
7 | "Project-Id-Version: ssh\n" | 7 | "Project-Id-Version: ssh\n" |
8 | "Report-Msgid-Bugs-To: \n" | 8 | "Report-Msgid-Bugs-To: \n" |
9 | "POT-Creation-Date: 2004-07-31 03:10+0100\n" | 9 | "POT-Creation-Date: 2004-10-06 14:06+0100\n" |
10 | "PO-Revision-Date: 2004-04-27 06:50+0300\n" | 10 | "PO-Revision-Date: 2004-04-27 06:50+0300\n" |
11 | "Last-Translator: Recai Oktaş <roktas@omu.edu.tr>\n" | 11 | "Last-Translator: Recai Oktaş <roktas@omu.edu.tr>\n" |
12 | "Language-Team: Turkish <debian-l10n-turkish@lists.debian.org>\n" | 12 | "Language-Team: Turkish <debian-l10n-turkish@lists.debian.org>\n" |
@@ -269,6 +269,34 @@ msgstr "" | |||
269 | msgid "You will need to generate a new host key." | 269 | msgid "You will need to generate a new host key." |
270 | msgstr "Yeni bir makine anahtarı oluşturmanız gerekiyor." | 270 | msgstr "Yeni bir makine anahtarı oluşturmanız gerekiyor." |
271 | 271 | ||
272 | #. Type: boolean | ||
273 | #. Description | ||
274 | #: ../openssh-server.templates.master:84 | ||
275 | msgid "Disable challenge-response authentication?" | ||
276 | msgstr "" | ||
277 | |||
278 | #. Type: boolean | ||
279 | #. Description | ||
280 | #: ../openssh-server.templates.master:84 | ||
281 | msgid "" | ||
282 | "Password authentication appears to be disabled in your current OpenSSH " | ||
283 | "server configuration. In order to prevent users from logging in using " | ||
284 | "passwords (perhaps using only public key authentication instead) with recent " | ||
285 | "versions of OpenSSH, you must disable challenge-response authentication, or " | ||
286 | "else ensure that your PAM configuration does not allow Unix password file " | ||
287 | "authentication." | ||
288 | msgstr "" | ||
289 | |||
290 | #. Type: boolean | ||
291 | #. Description | ||
292 | #: ../openssh-server.templates.master:84 | ||
293 | msgid "" | ||
294 | "If you disable challenge-response authentication, then users will not be " | ||
295 | "able to log in using passwords. If you leave it enabled (the default " | ||
296 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
297 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
298 | msgstr "" | ||
299 | |||
272 | #~ msgid "ssh2 keys merged in configuration files" | 300 | #~ msgid "ssh2 keys merged in configuration files" |
273 | #~ msgstr "yapılandırma dosyalarındaki ssh2 anahtarları birleştirildi" | 301 | #~ msgstr "yapılandırma dosyalarındaki ssh2 anahtarları birleştirildi" |
274 | 302 | ||
diff --git a/debian/po/zh_CN.po b/debian/po/zh_CN.po index 263aada78..f32d77bcb 100644 --- a/debian/po/zh_CN.po +++ b/debian/po/zh_CN.po | |||
@@ -15,7 +15,7 @@ msgid "" | |||
15 | msgstr "" | 15 | msgstr "" |
16 | "Project-Id-Version: openssh 3.6.1p2-11\n" | 16 | "Project-Id-Version: openssh 3.6.1p2-11\n" |
17 | "Report-Msgid-Bugs-To: \n" | 17 | "Report-Msgid-Bugs-To: \n" |
18 | "POT-Creation-Date: 2004-07-31 03:10+0100\n" | 18 | "POT-Creation-Date: 2004-10-06 14:06+0100\n" |
19 | "PO-Revision-Date: 2004-02-02 18:48+1300\n" | 19 | "PO-Revision-Date: 2004-02-02 18:48+1300\n" |
20 | "Last-Translator: Hiei Xu <nicky@mail.edu.cn>\n" | 20 | "Last-Translator: Hiei Xu <nicky@mail.edu.cn>\n" |
21 | "Language-Team: Chinese/Simplified <i18n-translation@lists.linux.net.cn>\n" | 21 | "Language-Team: Chinese/Simplified <i18n-translation@lists.linux.net.cn>\n" |
@@ -256,6 +256,34 @@ msgstr "" | |||
256 | msgid "You will need to generate a new host key." | 256 | msgid "You will need to generate a new host key." |
257 | msgstr "您需要创建一个新的主机密钥。" | 257 | msgstr "您需要创建一个新的主机密钥。" |
258 | 258 | ||
259 | #. Type: boolean | ||
260 | #. Description | ||
261 | #: ../openssh-server.templates.master:84 | ||
262 | msgid "Disable challenge-response authentication?" | ||
263 | msgstr "" | ||
264 | |||
265 | #. Type: boolean | ||
266 | #. Description | ||
267 | #: ../openssh-server.templates.master:84 | ||
268 | msgid "" | ||
269 | "Password authentication appears to be disabled in your current OpenSSH " | ||
270 | "server configuration. In order to prevent users from logging in using " | ||
271 | "passwords (perhaps using only public key authentication instead) with recent " | ||
272 | "versions of OpenSSH, you must disable challenge-response authentication, or " | ||
273 | "else ensure that your PAM configuration does not allow Unix password file " | ||
274 | "authentication." | ||
275 | msgstr "" | ||
276 | |||
277 | #. Type: boolean | ||
278 | #. Description | ||
279 | #: ../openssh-server.templates.master:84 | ||
280 | msgid "" | ||
281 | "If you disable challenge-response authentication, then users will not be " | ||
282 | "able to log in using passwords. If you leave it enabled (the default " | ||
283 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
284 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
285 | msgstr "" | ||
286 | |||
259 | #~ msgid "ssh2 keys merged in configuration files" | 287 | #~ msgid "ssh2 keys merged in configuration files" |
260 | #~ msgstr "ssh2 密钥被合并到配置文件" | 288 | #~ msgstr "ssh2 密钥被合并到配置文件" |
261 | 289 | ||