summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2015-11-29 17:34:13 +0000
committerColin Watson <cjwatson@debian.org>2015-11-29 17:34:13 +0000
commit18a9bd1867ee6fb9d913515773b322a279759b5d (patch)
tree84039e754648d919d08108dcbc24b92f90d7c758 /debian
parent0b372585c0026f78676f1414510ec9f87a383803 (diff)
Change "PermitRootLogin without-password" to the new preferred spelling of "PermitRootLogin prohibit-password" in sshd_config, and update documentation to reflect the new upstream default.
Diffstat (limited to 'debian')
-rw-r--r--debian/README.Debian9
-rw-r--r--debian/changelog3
-rw-r--r--debian/openssh-server.postinst8
-rw-r--r--debian/openssh-server.templates2
-rw-r--r--debian/po/cs.po8
-rw-r--r--debian/po/da.po8
-rw-r--r--debian/po/de.po8
-rw-r--r--debian/po/es.po8
-rw-r--r--debian/po/fr.po8
-rw-r--r--debian/po/it.po8
-rw-r--r--debian/po/ja.po12
-rw-r--r--debian/po/nl.po8
-rw-r--r--debian/po/pt.po13
-rw-r--r--debian/po/pt_BR.po8
-rw-r--r--debian/po/ru.po8
-rw-r--r--debian/po/sv.po8
-rw-r--r--debian/po/templates.pot6
-rw-r--r--debian/po/tr.po8
18 files changed, 76 insertions, 65 deletions
diff --git a/debian/README.Debian b/debian/README.Debian
index dee9ddb21..9d029585c 100644
--- a/debian/README.Debian
+++ b/debian/README.Debian
@@ -19,7 +19,8 @@ PermitRootLogin
19--------------- 19---------------
20 20
21As of 1:6.6p1-1, new installations will be set to "PermitRootLogin 21As of 1:6.6p1-1, new installations will be set to "PermitRootLogin
22without-password". This disables password authentication for root, foiling 22without-password" (or the synonymous "PermitRootLogin prohibit-password" as
23of 1:7.0p1-1). This disables password authentication for root, foiling
23password dictionary attacks on the root user. Some sites may wish to use 24password dictionary attacks on the root user. Some sites may wish to use
24the stronger "PermitRootLogin forced-commands-only" or "PermitRootLogin no", 25the stronger "PermitRootLogin forced-commands-only" or "PermitRootLogin no",
25but note that "PermitRootLogin no" will break setups that SSH to root with a 26but note that "PermitRootLogin no" will break setups that SSH to root with a
@@ -34,7 +35,7 @@ ssh restart" as root.
34 35
35Disabling PermitRootLogin means that an attacker possessing credentials for 36Disabling PermitRootLogin means that an attacker possessing credentials for
36the root account (any credentials in the case of "yes", or private key 37the root account (any credentials in the case of "yes", or private key
37material in the case of "without-password") must compromise a normal user 38material in the case of "prohibit-password") must compromise a normal user
38account rather than being able to SSH directly to root. Be careful to avoid 39account rather than being able to SSH directly to root. Be careful to avoid
39a false illusion of security if you change this setting; any account you 40a false illusion of security if you change this setting; any account you
40escalate to root from should be considered equivalent to root for the 41escalate to root from should be considered equivalent to root for the
@@ -44,7 +45,9 @@ it if you know you will only ever log in as root from the physical console.
44Since the root account does not generally have non-password credentials 45Since the root account does not generally have non-password credentials
45unless you explicitly install an SSH public key in its 46unless you explicitly install an SSH public key in its
46~/.ssh/authorized_keys, which you presumably only do if you want to SSH to 47~/.ssh/authorized_keys, which you presumably only do if you want to SSH to
47it, "without-password" should be a reasonable default for most sites. 48it, "prohibit-password" should be a reasonable default for most sites.
49
50As of OpenSSH 7.0, this is the upstream default.
48 51
49For further discussion, see: 52For further discussion, see:
50 53
diff --git a/debian/changelog b/debian/changelog
index 42450d4d3..262b74285 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -43,6 +43,9 @@ openssh (1:7.0p1-1) UNRELEASED; urgency=medium
43 - sshd(8): Clarify documentation for UseDNS option. 43 - sshd(8): Clarify documentation for UseDNS option.
44 - Check realpath(3) behaviour matches what sftp-server requires and use 44 - Check realpath(3) behaviour matches what sftp-server requires and use
45 a replacement if necessary. 45 a replacement if necessary.
46 * Change "PermitRootLogin without-password" to the new preferred spelling
47 of "PermitRootLogin prohibit-password" in sshd_config, and update
48 documentation to reflect the new upstream default.
46 49
47 -- Colin Watson <cjwatson@debian.org> Sun, 29 Nov 2015 17:32:44 +0000 50 -- Colin Watson <cjwatson@debian.org> Sun, 29 Nov 2015 17:32:44 +0000
48 51
diff --git a/debian/openssh-server.postinst b/debian/openssh-server.postinst
index 9e8516ca7..72e993d0a 100644
--- a/debian/openssh-server.postinst
+++ b/debian/openssh-server.postinst
@@ -199,7 +199,7 @@ LogLevel INFO
199 199
200# Authentication: 200# Authentication:
201LoginGraceTime 120 201LoginGraceTime 120
202PermitRootLogin without-password 202PermitRootLogin prohibit-password
203StrictModes yes 203StrictModes yes
204 204
205RSAAuthentication yes 205RSAAuthentication yes
@@ -312,7 +312,11 @@ if [ "$action" = configure ]; then
312 if dpkg --compare-versions "$2" lt-nl 1:6.6p1-1 && \ 312 if dpkg --compare-versions "$2" lt-nl 1:6.6p1-1 && \
313 [ "$(get_config_option PermitRootLogin)" = yes ] && 313 [ "$(get_config_option PermitRootLogin)" = yes ] &&
314 db_get openssh-server/permit-root-login && [ "$RET" = true ]; then 314 db_get openssh-server/permit-root-login && [ "$RET" = true ]; then
315 set_config_option PermitRootLogin without-password 315 set_config_option PermitRootLogin prohibit-password
316 fi
317 if dpkg --compare-versions "$2" lt-nl 1:7.0p1-1 && \
318 [ "$(get_config_option PermitRootLogin)" = without-password ]; then
319 set_config_option PermitRootLogin prohibit-password
316 fi 320 fi
317fi 321fi
318 322
diff --git a/debian/openssh-server.templates b/debian/openssh-server.templates
index a7ee70701..1bc8a3308 100644
--- a/debian/openssh-server.templates
+++ b/debian/openssh-server.templates
@@ -4,7 +4,7 @@ Default: false
4_Description: Disable SSH password authentication for root? 4_Description: Disable SSH password authentication for root?
5 Previous versions of openssh-server permitted logging in as root over SSH 5 Previous versions of openssh-server permitted logging in as root over SSH
6 using password authentication. The default for new installations is now 6 using password authentication. The default for new installations is now
7 "PermitRootLogin without-password", which disables password authentication 7 "PermitRootLogin prohibit-password", which disables password authentication
8 for root without breaking systems that have explicitly configured SSH 8 for root without breaking systems that have explicitly configured SSH
9 public key authentication for root. 9 public key authentication for root.
10 . 10 .
diff --git a/debian/po/cs.po b/debian/po/cs.po
index 2e0eae079..d01e0ffdc 100644
--- a/debian/po/cs.po
+++ b/debian/po/cs.po
@@ -28,13 +28,13 @@ msgstr "Zakázat ověřování heslem pro uživatele root?"
28msgid "" 28msgid ""
29"Previous versions of openssh-server permitted logging in as root over SSH " 29"Previous versions of openssh-server permitted logging in as root over SSH "
30"using password authentication. The default for new installations is now " 30"using password authentication. The default for new installations is now "
31"\"PermitRootLogin without-password\", which disables password authentication " 31"\"PermitRootLogin prohibit-password\", which disables password "
32"for root without breaking systems that have explicitly configured SSH public " 32"authentication for root without breaking systems that have explicitly "
33"key authentication for root." 33"configured SSH public key authentication for root."
34msgstr "" 34msgstr ""
35"Předchozí verze openssh-server dovolovala přihlašovat se přes SSH jako root " 35"Předchozí verze openssh-server dovolovala přihlašovat se přes SSH jako root "
36"pomocí ověřování heslem. Výchozí volba pro nové instalace je nyní " 36"pomocí ověřování heslem. Výchozí volba pro nové instalace je nyní "
37"\"PermitRootLogin without-password\", která zakazuje ověřování heslem pro " 37"\"PermitRootLogin prohibit-password\", která zakazuje ověřování heslem pro "
38"uživatele root, aniž by to omezilo systémy, které mají explicitně nastaveno " 38"uživatele root, aniž by to omezilo systémy, které mají explicitně nastaveno "
39"ověřování veřejným SSH klíčem pro uživatele root." 39"ověřování veřejným SSH klíčem pro uživatele root."
40 40
diff --git a/debian/po/da.po b/debian/po/da.po
index 403a7077d..70d576d7b 100644
--- a/debian/po/da.po
+++ b/debian/po/da.po
@@ -28,13 +28,13 @@ msgstr "Deaktiver SSH-adgangskodegodkendelse for root?"
28msgid "" 28msgid ""
29"Previous versions of openssh-server permitted logging in as root over SSH " 29"Previous versions of openssh-server permitted logging in as root over SSH "
30"using password authentication. The default for new installations is now " 30"using password authentication. The default for new installations is now "
31"\"PermitRootLogin without-password\", which disables password authentication " 31"\"PermitRootLogin prohibit-password\", which disables password "
32"for root without breaking systems that have explicitly configured SSH public " 32"authentication for root without breaking systems that have explicitly "
33"key authentication for root." 33"configured SSH public key authentication for root."
34msgstr "" 34msgstr ""
35"Tidligere versioner af openssh-server tillod indlogning som root over SSH " 35"Tidligere versioner af openssh-server tillod indlogning som root over SSH "
36"med brug af adgangskodegodkendelse. Standarden for nye installationer er nu " 36"med brug af adgangskodegodkendelse. Standarden for nye installationer er nu "
37"»PermitRootLogin without-password«, som deaktiverer adgangskodegodkendelse " 37"»PermitRootLogin prohibit-password«, som deaktiverer adgangskodegodkendelse "
38"for root uden at ødelægge systemer, som eksplicit har konfigureret SSH-" 38"for root uden at ødelægge systemer, som eksplicit har konfigureret SSH-"
39"offentlig nøglegodkendelse for root." 39"offentlig nøglegodkendelse for root."
40 40
diff --git a/debian/po/de.po b/debian/po/de.po
index 0f0fd2e2f..ecba54b6c 100644
--- a/debian/po/de.po
+++ b/debian/po/de.po
@@ -30,14 +30,14 @@ msgstr "SSH Passwort-Authentifizierung für »root« deaktivieren?"
30msgid "" 30msgid ""
31"Previous versions of openssh-server permitted logging in as root over SSH " 31"Previous versions of openssh-server permitted logging in as root over SSH "
32"using password authentication. The default for new installations is now " 32"using password authentication. The default for new installations is now "
33"\"PermitRootLogin without-password\", which disables password authentication " 33"\"PermitRootLogin prohibit-password\", which disables password "
34"for root without breaking systems that have explicitly configured SSH public " 34"authentication for root without breaking systems that have explicitly "
35"key authentication for root." 35"configured SSH public key authentication for root."
36msgstr "" 36msgstr ""
37"Vorherige Versionen von openssh-server erlaubten das Anmelden als »root« " 37"Vorherige Versionen von openssh-server erlaubten das Anmelden als »root« "
38"über SSH unter Verwendung von Passwort-Authentifizierung. Die " 38"über SSH unter Verwendung von Passwort-Authentifizierung. Die "
39"Standardeinstellung für Neuinstallationen lautet nun »PermitRootLogin " 39"Standardeinstellung für Neuinstallationen lautet nun »PermitRootLogin "
40"without-password«, wodurch die Passwort-Authentifizierung für »root« " 40"prohibit-password«, wodurch die Passwort-Authentifizierung für »root« "
41"deaktiviert wird, und Systeme dennoch funktionsfähig bleiben, bei denen " 41"deaktiviert wird, und Systeme dennoch funktionsfähig bleiben, bei denen "
42"ausdrücklich die Authentifizierung als »root« mittels öffentlichem SSH-" 42"ausdrücklich die Authentifizierung als »root« mittels öffentlichem SSH-"
43"Schlüssel konfiguriert ist." 43"Schlüssel konfiguriert ist."
diff --git a/debian/po/es.po b/debian/po/es.po
index 47493e406..de8a67ace 100644
--- a/debian/po/es.po
+++ b/debian/po/es.po
@@ -51,14 +51,14 @@ msgstr ""
51msgid "" 51msgid ""
52"Previous versions of openssh-server permitted logging in as root over SSH " 52"Previous versions of openssh-server permitted logging in as root over SSH "
53"using password authentication. The default for new installations is now " 53"using password authentication. The default for new installations is now "
54"\"PermitRootLogin without-password\", which disables password authentication " 54"\"PermitRootLogin prohibit-password\", which disables password "
55"for root without breaking systems that have explicitly configured SSH public " 55"authentication for root without breaking systems that have explicitly "
56"key authentication for root." 56"configured SSH public key authentication for root."
57msgstr "" 57msgstr ""
58"Las versiones anteriores de openssh-server permitían iniciar sesión como " 58"Las versiones anteriores de openssh-server permitían iniciar sesión como "
59"usuario root utilizando autenticación con contraseña. La configuración " 59"usuario root utilizando autenticación con contraseña. La configuración "
60"predeterminada para las nuevas instalaciones ahora incluye «PermitRootLogin " 60"predeterminada para las nuevas instalaciones ahora incluye «PermitRootLogin "
61"without-password», lo que desactiva la autenticación con contraseña para el " 61"prohibit-password», lo que desactiva la autenticación con contraseña para el "
62"usuario root sin romper los sistemas que tienen configurado explícitamente " 62"usuario root sin romper los sistemas que tienen configurado explícitamente "
63"la autenticación SSH utilizando claves públicas para el usuario root." 63"la autenticación SSH utilizando claves públicas para el usuario root."
64 64
diff --git a/debian/po/fr.po b/debian/po/fr.po
index 3a6db02d0..f7125e9a3 100644
--- a/debian/po/fr.po
+++ b/debian/po/fr.po
@@ -29,14 +29,14 @@ msgstr ""
29msgid "" 29msgid ""
30"Previous versions of openssh-server permitted logging in as root over SSH " 30"Previous versions of openssh-server permitted logging in as root over SSH "
31"using password authentication. The default for new installations is now " 31"using password authentication. The default for new installations is now "
32"\"PermitRootLogin without-password\", which disables password authentication " 32"\"PermitRootLogin prohibit-password\", which disables password "
33"for root without breaking systems that have explicitly configured SSH public " 33"authentication for root without breaking systems that have explicitly "
34"key authentication for root." 34"configured SSH public key authentication for root."
35msgstr "" 35msgstr ""
36"Les versions précédentes du paquet openssh-server autorisaient la connexion " 36"Les versions précédentes du paquet openssh-server autorisaient la connexion "
37"par SSH du superutilisateur (root) en utilisant l’authentification par mot " 37"par SSH du superutilisateur (root) en utilisant l’authentification par mot "
38"de passe. Par défaut, les nouvelles installations ont maintenant l’option " 38"de passe. Par défaut, les nouvelles installations ont maintenant l’option "
39"« PermitRootLogin without-password », qui désactive l’authentification par " 39"« PermitRootLogin prohibit-password », qui désactive l’authentification par "
40"mot de passe pour le compte « root », sans casser les systèmes qui ont " 40"mot de passe pour le compte « root », sans casser les systèmes qui ont "
41"configuré explicitement l’authentification SSH par clé publique pour ce " 41"configuré explicitement l’authentification SSH par clé publique pour ce "
42"compte." 42"compte."
diff --git a/debian/po/it.po b/debian/po/it.po
index 2fa12cede..dd7106090 100644
--- a/debian/po/it.po
+++ b/debian/po/it.po
@@ -29,13 +29,13 @@ msgstr "Disabilitare l'autenticazione SSH con password per root?"
29msgid "" 29msgid ""
30"Previous versions of openssh-server permitted logging in as root over SSH " 30"Previous versions of openssh-server permitted logging in as root over SSH "
31"using password authentication. The default for new installations is now " 31"using password authentication. The default for new installations is now "
32"\"PermitRootLogin without-password\", which disables password authentication " 32"\"PermitRootLogin prohibit-password\", which disables password "
33"for root without breaking systems that have explicitly configured SSH public " 33"authentication for root without breaking systems that have explicitly "
34"key authentication for root." 34"configured SSH public key authentication for root."
35msgstr "" 35msgstr ""
36"Le versioni precedenti di openssh-server permettevano il login come root via " 36"Le versioni precedenti di openssh-server permettevano il login come root via "
37"SSH, usando l'autenticazione con password. Il comportamento predefinito " 37"SSH, usando l'autenticazione con password. Il comportamento predefinito "
38"delle nuove installazioni è «PermitRootLogin without-password» che " 38"delle nuove installazioni è «PermitRootLogin prohibit-password» che "
39"disabilita l'autenticazione con password per root, senza rendere non " 39"disabilita l'autenticazione con password per root, senza rendere non "
40"funzionanti sistemi che hanno esplicitamente configurato l'autenticazione " 40"funzionanti sistemi che hanno esplicitamente configurato l'autenticazione "
41"SSH con chiave pubblica per root." 41"SSH con chiave pubblica per root."
diff --git a/debian/po/ja.po b/debian/po/ja.po
index 4e6c41e4b..db382f19a 100644
--- a/debian/po/ja.po
+++ b/debian/po/ja.po
@@ -28,15 +28,15 @@ msgstr "root での SSH パスワード認証を無効にしますか?"
28msgid "" 28msgid ""
29"Previous versions of openssh-server permitted logging in as root over SSH " 29"Previous versions of openssh-server permitted logging in as root over SSH "
30"using password authentication. The default for new installations is now " 30"using password authentication. The default for new installations is now "
31"\"PermitRootLogin without-password\", which disables password authentication " 31"\"PermitRootLogin prohibit-password\", which disables password "
32"for root without breaking systems that have explicitly configured SSH public " 32"authentication for root without breaking systems that have explicitly "
33"key authentication for root." 33"configured SSH public key authentication for root."
34msgstr "" 34msgstr ""
35"openssh-server の以前のバージョンではパスワード認証を利用した SSH 経由の " 35"openssh-server の以前のバージョンではパスワード認証を利用した SSH 経由の "
36"root のログインを許可していました。新しくインストールした場合のデフォルト値が" 36"root のログインを許可していました。新しくインストールした場合のデフォルト値が"
37"現在は「PermitRootLogin without-password」になり、root のパスワード認証を無" 37"現在は「PermitRootLogin prohibit-password」になり、root のパスワード認証を無"
38"化しますが SSH の公開鍵認証を root 用に明示的に設定しているシステムでは特に" 38"しますが SSH の公開鍵認証を root 用に明示的に設定しているシステムでは特に"
39"題はありません。" 39"題はありません。"
40 40
41#. Type: boolean 41#. Type: boolean
42#. Description 42#. Description
diff --git a/debian/po/nl.po b/debian/po/nl.po
index 1cb5cdf48..3afd6171e 100644
--- a/debian/po/nl.po
+++ b/debian/po/nl.po
@@ -30,13 +30,13 @@ msgstr ""
30msgid "" 30msgid ""
31"Previous versions of openssh-server permitted logging in as root over SSH " 31"Previous versions of openssh-server permitted logging in as root over SSH "
32"using password authentication. The default for new installations is now " 32"using password authentication. The default for new installations is now "
33"\"PermitRootLogin without-password\", which disables password authentication " 33"\"PermitRootLogin prohibit-password\", which disables password "
34"for root without breaking systems that have explicitly configured SSH public " 34"authentication for root without breaking systems that have explicitly "
35"key authentication for root." 35"configured SSH public key authentication for root."
36msgstr "" 36msgstr ""
37"Eerdere versies van de openssh-server lieten de systeembeheerder toe om zich " 37"Eerdere versies van de openssh-server lieten de systeembeheerder toe om zich "
38"over SSH te authenticeren met een wachtwoord. Voor nieuwe installaties is de " 38"over SSH te authenticeren met een wachtwoord. Voor nieuwe installaties is de "
39"standaard nu \"PermitRootLogin without-password\". Deze standaardinstelling " 39"standaard nu \"PermitRootLogin prohibit-password\". Deze standaardinstelling "
40"maakt het voor de systeembeheerder onmogelijk om zich via een wachtwoord te " 40"maakt het voor de systeembeheerder onmogelijk om zich via een wachtwoord te "
41"authenticeren. Deze instelling heeft geen impact op systemen waarbij de SSH-" 41"authenticeren. Deze instelling heeft geen impact op systemen waarbij de SSH-"
42"configuratie expliciet vereist dat de systeembeheerder zich authenticeert " 42"configuratie expliciet vereist dat de systeembeheerder zich authenticeert "
diff --git a/debian/po/pt.po b/debian/po/pt.po
index 282ac8dde..2dab84ccf 100644
--- a/debian/po/pt.po
+++ b/debian/po/pt.po
@@ -30,15 +30,16 @@ msgstr "Desactivar a autenticação SSH por palavra passe para o root?"
30msgid "" 30msgid ""
31"Previous versions of openssh-server permitted logging in as root over SSH " 31"Previous versions of openssh-server permitted logging in as root over SSH "
32"using password authentication. The default for new installations is now " 32"using password authentication. The default for new installations is now "
33"\"PermitRootLogin without-password\", which disables password authentication " 33"\"PermitRootLogin prohibit-password\", which disables password "
34"for root without breaking systems that have explicitly configured SSH public " 34"authentication for root without breaking systems that have explicitly "
35"key authentication for root." 35"configured SSH public key authentication for root."
36msgstr "" 36msgstr ""
37"As versões anteriores do servidor openssh permitiam iniciar sessão como root " 37"As versões anteriores do servidor openssh permitiam iniciar sessão como root "
38"sobre SSH usando autenticação por palavra-passe. A predefinição para novas " 38"sobre SSH usando autenticação por palavra-passe. A predefinição para novas "
39"instalações é agora \"PermitRootLogin without-password\", a qual desactiva a " 39"instalações é agora \"PermitRootLogin prohibit-password\", a qual desactiva "
40"autenticação por palavra-passe para o root sem danificar os sistemas que têm " 40"a autenticação por palavra-passe para o root sem danificar os sistemas que "
41"configurados explicitamente autenticação SSH por chave pública para o root." 41"têm configurados explicitamente autenticação SSH por chave pública para o "
42"root."
42 43
43#. Type: boolean 44#. Type: boolean
44#. Description 45#. Description
diff --git a/debian/po/pt_BR.po b/debian/po/pt_BR.po
index d7252fb99..99b1182f1 100644
--- a/debian/po/pt_BR.po
+++ b/debian/po/pt_BR.po
@@ -30,13 +30,13 @@ msgstr "Desabilitar autenticação por senha do SSH para root?"
30msgid "" 30msgid ""
31"Previous versions of openssh-server permitted logging in as root over SSH " 31"Previous versions of openssh-server permitted logging in as root over SSH "
32"using password authentication. The default for new installations is now " 32"using password authentication. The default for new installations is now "
33"\"PermitRootLogin without-password\", which disables password authentication " 33"\"PermitRootLogin prohibit-password\", which disables password "
34"for root without breaking systems that have explicitly configured SSH public " 34"authentication for root without breaking systems that have explicitly "
35"key authentication for root." 35"configured SSH public key authentication for root."
36msgstr "" 36msgstr ""
37"Versões anteriores do openssh-server permitiam login como root sobre SSH " 37"Versões anteriores do openssh-server permitiam login como root sobre SSH "
38"usando autenticação por senha. O padrão para as novas instalações agora é " 38"usando autenticação por senha. O padrão para as novas instalações agora é "
39"\"PermitRootLogin without-password\", que desabilita a autenticação por " 39"\"PermitRootLogin prohibit-password\", que desabilita a autenticação por "
40"senha para root sem quebrar sistemas que tenham configurado explicitamente o " 40"senha para root sem quebrar sistemas que tenham configurado explicitamente o "
41"SSH para autenticação por chave pública para root." 41"SSH para autenticação por chave pública para root."
42 42
diff --git a/debian/po/ru.po b/debian/po/ru.po
index 42375e6e5..f2e1dafc4 100644
--- a/debian/po/ru.po
+++ b/debian/po/ru.po
@@ -30,13 +30,13 @@ msgstr "Выключить в SSH аутентификацию по паролю
30msgid "" 30msgid ""
31"Previous versions of openssh-server permitted logging in as root over SSH " 31"Previous versions of openssh-server permitted logging in as root over SSH "
32"using password authentication. The default for new installations is now " 32"using password authentication. The default for new installations is now "
33"\"PermitRootLogin without-password\", which disables password authentication " 33"\"PermitRootLogin prohibit-password\", which disables password "
34"for root without breaking systems that have explicitly configured SSH public " 34"authentication for root without breaking systems that have explicitly "
35"key authentication for root." 35"configured SSH public key authentication for root."
36msgstr "" 36msgstr ""
37"В предыдущих версиях openssh-server разрешён вход с правами пользователя " 37"В предыдущих версиях openssh-server разрешён вход с правами пользователя "
38"root через SSH с помощью аутентификации по паролю. При новых установках по " 38"root через SSH с помощью аутентификации по паролю. При новых установках по "
39"умолчанию теперь используется настройка «PermitRootLogin without-password», " 39"умолчанию теперь используется настройка «PermitRootLogin prohibit-password», "
40"которая отключает аутентификацию по паролю для root, что не вредит системам, " 40"которая отключает аутентификацию по паролю для root, что не вредит системам, "
41"у которых в SSH для root настроена аутентификация по открытому ключу." 41"у которых в SSH для root настроена аутентификация по открытому ключу."
42 42
diff --git a/debian/po/sv.po b/debian/po/sv.po
index a0cca7ba9..278b0ccbf 100644
--- a/debian/po/sv.po
+++ b/debian/po/sv.po
@@ -30,13 +30,13 @@ msgstr "Inaktivera SSH-lösenordsautentisering för root?"
30msgid "" 30msgid ""
31"Previous versions of openssh-server permitted logging in as root over SSH " 31"Previous versions of openssh-server permitted logging in as root over SSH "
32"using password authentication. The default for new installations is now " 32"using password authentication. The default for new installations is now "
33"\"PermitRootLogin without-password\", which disables password authentication " 33"\"PermitRootLogin prohibit-password\", which disables password "
34"for root without breaking systems that have explicitly configured SSH public " 34"authentication for root without breaking systems that have explicitly "
35"key authentication for root." 35"configured SSH public key authentication for root."
36msgstr "" 36msgstr ""
37"Tidigare versioner av openssh-server tillät inloggning som root över SSH med " 37"Tidigare versioner av openssh-server tillät inloggning som root över SSH med "
38"hjälp av lösenordsautentisering. Standardinställningen för nya " 38"hjälp av lösenordsautentisering. Standardinställningen för nya "
39"installationer är nu \"PermitRootLogin without-password\", vilket " 39"installationer är nu \"PermitRootLogin prohibit-password\", vilket "
40"inaktiverar lösenordsautentisering för root utan att förstöra system som " 40"inaktiverar lösenordsautentisering för root utan att förstöra system som "
41"explicit har konfigurerat nyckelautentisering med hjälp av publika nycklar " 41"explicit har konfigurerat nyckelautentisering med hjälp av publika nycklar "
42"för root." 42"för root."
diff --git a/debian/po/templates.pot b/debian/po/templates.pot
index 70e64acad..47c9e3686 100644
--- a/debian/po/templates.pot
+++ b/debian/po/templates.pot
@@ -29,9 +29,9 @@ msgstr ""
29msgid "" 29msgid ""
30"Previous versions of openssh-server permitted logging in as root over SSH " 30"Previous versions of openssh-server permitted logging in as root over SSH "
31"using password authentication. The default for new installations is now " 31"using password authentication. The default for new installations is now "
32"\"PermitRootLogin without-password\", which disables password authentication " 32"\"PermitRootLogin prohibit-password\", which disables password "
33"for root without breaking systems that have explicitly configured SSH public " 33"authentication for root without breaking systems that have explicitly "
34"key authentication for root." 34"configured SSH public key authentication for root."
35msgstr "" 35msgstr ""
36 36
37#. Type: boolean 37#. Type: boolean
diff --git a/debian/po/tr.po b/debian/po/tr.po
index 095ac14fc..1ada04101 100644
--- a/debian/po/tr.po
+++ b/debian/po/tr.po
@@ -29,13 +29,13 @@ msgstr "root kullanıcısının parola ile kimlik doğrulaması engellensin mi?"
29msgid "" 29msgid ""
30"Previous versions of openssh-server permitted logging in as root over SSH " 30"Previous versions of openssh-server permitted logging in as root over SSH "
31"using password authentication. The default for new installations is now " 31"using password authentication. The default for new installations is now "
32"\"PermitRootLogin without-password\", which disables password authentication " 32"\"PermitRootLogin prohibit-password\", which disables password "
33"for root without breaking systems that have explicitly configured SSH public " 33"authentication for root without breaking systems that have explicitly "
34"key authentication for root." 34"configured SSH public key authentication for root."
35msgstr "" 35msgstr ""
36"openssh-server'ın önceki sürümleri parola ile kimlik doğrulama kullanılarak " 36"openssh-server'ın önceki sürümleri parola ile kimlik doğrulama kullanılarak "
37"root kullanıcısının SSH üzerinden oturum açmasına izin veriyordu. Artık yeni " 37"root kullanıcısının SSH üzerinden oturum açmasına izin veriyordu. Artık yeni "
38"kurulumların öntanımlı ayarı \"PermitRootLogin without-password\" " 38"kurulumların öntanımlı ayarı \"PermitRootLogin prohibit-password\" "
39"şeklindedir. Bu ayar root kullanıcısının parola kullanarak oturum açmasını " 39"şeklindedir. Bu ayar root kullanıcısının parola kullanarak oturum açmasını "
40"yasaklar. SSH genel anahtar doğrulama yöntemine ayrıca izin veren mevcut " 40"yasaklar. SSH genel anahtar doğrulama yöntemine ayrıca izin veren mevcut "
41"sistemler bu ayardan etkilenmez." 41"sistemler bu ayardan etkilenmez."