summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2005-05-31 03:04:26 +0000
committerColin Watson <cjwatson@debian.org>2005-05-31 03:04:26 +0000
commit38f80c0a13d58fe27fbf5b2bae09368d3db4c09c (patch)
tree63e0ba3780758f96272fe74a284406080703ae87 /debian
parent086880515569ec21401dcdc9d1b191de731b0c5e (diff)
Since ssh-keysign isn't used by default (you need to set EnableSSHKeysign
to "yes" in /etc/ssh/ssh_config), having a debconf question to ask whether it should be setuid is overkill, and the question text had got out of date anyway. Remove this question, ship ssh-keysign setuid in openssh-client.deb, and set a statoverride if the debconf question was previously set to false.
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog6
-rw-r--r--debian/openssh-client.config21
-rw-r--r--debian/openssh-client.postinst13
-rw-r--r--debian/openssh-client.templates.master12
-rw-r--r--debian/po/POTFILES.in1
-rw-r--r--debian/po/ca.po58
-rw-r--r--debian/po/cs.po62
-rw-r--r--debian/po/da.po63
-rw-r--r--debian/po/de.po64
-rw-r--r--debian/po/el.po64
-rw-r--r--debian/po/es.po62
-rw-r--r--debian/po/fi.po61
-rw-r--r--debian/po/fr.po60
-rw-r--r--debian/po/it.po63
-rw-r--r--debian/po/ja.po62
-rw-r--r--debian/po/nl.po66
-rw-r--r--debian/po/pl.po64
-rw-r--r--debian/po/pt_BR.po64
-rw-r--r--debian/po/ru.po58
-rw-r--r--debian/po/templates.pot32
-rw-r--r--debian/po/tr.po65
-rw-r--r--debian/po/uk.po59
-rw-r--r--debian/po/zh_CN.po58
-rwxr-xr-xdebian/rules5
24 files changed, 450 insertions, 693 deletions
diff --git a/debian/changelog b/debian/changelog
index 3818cf070..1bdde0ce9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,6 +3,12 @@ openssh (1:4.1p1-2) UNRELEASED; urgency=low
3 * Drop debconf support for allowing SSH protocol 1, which is discouraged 3 * Drop debconf support for allowing SSH protocol 1, which is discouraged
4 and has not been the default since openssh 1:3.0.1p1-1. Users who need 4 and has not been the default since openssh 1:3.0.1p1-1. Users who need
5 this should edit sshd_config instead (closes: #147212). 5 this should edit sshd_config instead (closes: #147212).
6 * Since ssh-keysign isn't used by default (you need to set
7 EnableSSHKeysign to "yes" in /etc/ssh/ssh_config), having a debconf
8 question to ask whether it should be setuid is overkill, and the
9 question text had got out of date anyway. Remove this question, ship
10 ssh-keysign setuid in openssh-client.deb, and set a statoverride if the
11 debconf question was previously set to false.
6 12
7 -- Colin Watson <cjwatson@debian.org> Tue, 31 May 2005 02:50:49 +0100 13 -- Colin Watson <cjwatson@debian.org> Tue, 31 May 2005 02:50:49 +0100
8 14
diff --git a/debian/openssh-client.config b/debian/openssh-client.config
index 7490526fa..736e464ed 100644
--- a/debian/openssh-client.config
+++ b/debian/openssh-client.config
@@ -3,17 +3,24 @@
3action=$1 3action=$1
4version=$2 4version=$2
5 5
6if [ -d /etc/ssh-nonfree ] && [ ! -d /etc/ssh ]; then
7 version=1.2.27
8 cp -a /etc/ssh-nonfree /etc/ssh
9fi
10
11# Source debconf library. 6# Source debconf library.
12. /usr/share/debconf/confmodule 7. /usr/share/debconf/confmodule
13db_version 2.0 8db_version 2.0
14 9
15db_input medium ssh/SUID_client || true 10if [ -d /etc/ssh-nonfree ] && [ ! -d /etc/ssh ]; then
11 version=1.2.27
12 cp -a /etc/ssh-nonfree /etc/ssh
13fi
16 14
17db_go 15# Was ssh-keysign's setuid bit turned off using the obsolete debconf
16# question? If so, turn this into a statoverride. (Ugh.)
17if dpkg --compare-versions "$2" lt 1:4.1p1-2 && \
18 db_get ssh/SUID_client && [ "$RET" = false ] &&
19 [ -x /usr/sbin/dpkg-statoverride ] && \
20 ! dpkg-statoverride --list /usr/lib/ssh-keysign && \
21 ! dpkg-statoverride --list /usr/lib/openssh/ssh-keysign; then
22 dpkg-statoverride --update --add root root 0755 \
23 /usr/lib/openssh/ssh-keysign
24fi
18 25
19exit 0 26exit 0
diff --git a/debian/openssh-client.postinst b/debian/openssh-client.postinst
index 4744a34a1..466801057 100644
--- a/debian/openssh-client.postinst
+++ b/debian/openssh-client.postinst
@@ -73,16 +73,6 @@ set_ssh_permissions() {
73 dpkg-statoverride --remove /usr/lib/ssh-keysign || true 73 dpkg-statoverride --remove /usr/lib/ssh-keysign || true
74 fi 74 fi
75 fi 75 fi
76
77 if [ ! -x /usr/sbin/dpkg-statoverride ] || \
78 ! dpkg-statoverride --list /usr/lib/openssh/ssh-keysign >/dev/null; then
79 db_get ssh/SUID_client
80 if [ "$RET" = "false" ] ; then
81 chmod 0755 /usr/lib/openssh/ssh-keysign
82 elif [ "$RET" = "true" ] ; then
83 chmod 4755 /usr/lib/openssh/ssh-keysign
84 fi
85 fi
86} 76}
87 77
88fix_ssh_group() { 78fix_ssh_group() {
@@ -113,7 +103,4 @@ if [ "$2" = "1:3.5p1-1" ]; then
113fi 103fi
114set_ssh_agent_permissions 104set_ssh_agent_permissions
115 105
116
117db_stop
118
119exit 0 106exit 0
diff --git a/debian/openssh-client.templates.master b/debian/openssh-client.templates.master
deleted file mode 100644
index 1cb84bf04..000000000
--- a/debian/openssh-client.templates.master
+++ /dev/null
@@ -1,12 +0,0 @@
1Template: ssh/SUID_client
2Type: boolean
3Default: true
4_Description: Do you want ssh-keysign to be installed SUID root?
5 You have the option of installing the ssh-keysign helper with the SUID bit
6 set.
7 .
8 If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2
9 host-based authentication.
10 .
11 If in doubt, I suggest you install it with SUID. If it causes problems
12 you can change your mind later by running: dpkg-reconfigure ssh
diff --git a/debian/po/POTFILES.in b/debian/po/POTFILES.in
index 292dced6e..a45424a6b 100644
--- a/debian/po/POTFILES.in
+++ b/debian/po/POTFILES.in
@@ -1,2 +1 @@
1[type: gettext/rfc822deb] openssh-client.templates.master
2[type: gettext/rfc822deb] openssh-server.templates.master [type: gettext/rfc822deb] openssh-server.templates.master
diff --git a/debian/po/ca.po b/debian/po/ca.po
index cd28f7cf7..f102c856f 100644
--- a/debian/po/ca.po
+++ b/debian/po/ca.po
@@ -6,7 +6,7 @@ msgid ""
6msgstr "" 6msgstr ""
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: 2005-05-31 02:47+0100\n" 9"POT-Creation-Date: 2005-05-31 03:26+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"
@@ -16,40 +16,6 @@ msgstr ""
16 16
17#. Type: boolean 17#. Type: boolean
18#. Description 18#. Description
19#: ../openssh-client.templates.master:4
20msgid "Do you want ssh-keysign to be installed SUID root?"
21msgstr "Voleu que el fitxer ssh-keysign s'instal·li SUID root?"
22
23#. Type: boolean
24#. Description
25#: ../openssh-client.templates.master:4
26msgid ""
27"You have the option of installing the ssh-keysign helper with the SUID bit "
28"set."
29msgstr "Podeu instal·lar l'ajudant del ssh-keysign amb el bit SUID definit."
30
31#. Type: boolean
32#. Description
33#: ../openssh-client.templates.master:4
34msgid ""
35"If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 host-"
36"based authentication."
37msgstr ""
38"Si definiu l'ssh-keysign SUID podreu utilitzat l'autenticació basada en "
39"l'ordinador central del Protocol 2 de l'SSH."
40
41#. Type: boolean
42#. Description
43#: ../openssh-client.templates.master:4
44msgid ""
45"If in doubt, I suggest you install it with SUID. If it causes problems you "
46"can change your mind later by running: dpkg-reconfigure ssh"
47msgstr ""
48"Si dubteu instal·leu-lo amb el SUID. Si us causa algun problema ho podeu "
49"modificar posteriorment executant l'ordre: dpkg-reconfigure ssh"
50
51#. Type: boolean
52#. Description
53#: ../openssh-server.templates.master:4 19#: ../openssh-server.templates.master:4
54msgid "Generate new configuration file" 20msgid "Generate new configuration file"
55msgstr "Genera un fitxer de configuració nou" 21msgstr "Genera un fitxer de configuració nou"
@@ -217,6 +183,28 @@ msgid ""
217"effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." 183"effect unless you also adjust your PAM configuration in /etc/pam.d/ssh."
218msgstr "" 184msgstr ""
219 185
186#~ msgid "Do you want ssh-keysign to be installed SUID root?"
187#~ msgstr "Voleu que el fitxer ssh-keysign s'instal·li SUID root?"
188
189#~ msgid ""
190#~ "You have the option of installing the ssh-keysign helper with the SUID "
191#~ "bit set."
192#~ msgstr "Podeu instal·lar l'ajudant del ssh-keysign amb el bit SUID definit."
193
194#~ msgid ""
195#~ "If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 "
196#~ "host-based authentication."
197#~ msgstr ""
198#~ "Si definiu l'ssh-keysign SUID podreu utilitzat l'autenticació basada en "
199#~ "l'ordinador central del Protocol 2 de l'SSH."
200
201#~ msgid ""
202#~ "If in doubt, I suggest you install it with SUID. If it causes problems "
203#~ "you can change your mind later by running: dpkg-reconfigure ssh"
204#~ msgstr ""
205#~ "Si dubteu instal·leu-lo amb el SUID. Si us causa algun problema ho podeu "
206#~ "modificar posteriorment executant l'ordre: dpkg-reconfigure ssh"
207
220#~ msgid "Allow SSH protocol 2 only" 208#~ msgid "Allow SSH protocol 2 only"
221#~ msgstr "Permet únicament la versió 2 del protocol d'SSH" 209#~ msgstr "Permet únicament la versió 2 del protocol d'SSH"
222 210
diff --git a/debian/po/cs.po b/debian/po/cs.po
index 01f8c2591..858185ea2 100644
--- a/debian/po/cs.po
+++ b/debian/po/cs.po
@@ -15,7 +15,7 @@ msgid ""
15msgstr "" 15msgstr ""
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: 2005-05-31 02:47+0100\n" 18"POT-Creation-Date: 2005-05-31 03:26+0100\n"
19"PO-Revision-Date: 2005-03-09 18:29+0100\n" 19"PO-Revision-Date: 2005-03-09 18:29+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"
@@ -25,42 +25,6 @@ msgstr ""
25 25
26#. Type: boolean 26#. Type: boolean
27#. Description 27#. Description
28#: ../openssh-client.templates.master:4
29msgid "Do you want ssh-keysign to be installed SUID root?"
30msgstr "Chcete ssh-keysign nainstalovat jako SUID root?"
31
32#. Type: boolean
33#. Description
34#: ../openssh-client.templates.master:4
35msgid ""
36"You have the option of installing the ssh-keysign helper with the SUID bit "
37"set."
38msgstr ""
39"Mete si vybrat, zda chcete nainstalovat ssh-keysign s nastavenm SUID "
40"bitem."
41
42#. Type: boolean
43#. Description
44#: ../openssh-client.templates.master:4
45msgid ""
46"If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 host-"
47"based authentication."
48msgstr ""
49"Pokud nastavte ssh-keysign SUID, mete pouvat 'host-based' autentizaci "
50"protokolu verze 2."
51
52#. Type: boolean
53#. Description
54#: ../openssh-client.templates.master:4
55msgid ""
56"If in doubt, I suggest you install it with SUID. If it causes problems you "
57"can change your mind later by running: dpkg-reconfigure ssh"
58msgstr ""
59"Pokud jste na pochybch, doporuujeme SUID bit povolit. Pokud zaznamente "
60"problmy, mete nastaven zmnit sputnm: dpkg-reconfigure ssh"
61
62#. Type: boolean
63#. Description
64#: ../openssh-server.templates.master:4 28#: ../openssh-server.templates.master:4
65msgid "Generate new configuration file" 29msgid "Generate new configuration file"
66msgstr "Generovat nov konfiguran soubor" 30msgstr "Generovat nov konfiguran soubor"
@@ -228,6 +192,30 @@ msgstr ""
228"nebude mt volba 'PasswordAuthentication no' dn efekt, pokud ovem " 192"nebude mt volba 'PasswordAuthentication no' dn efekt, pokud ovem "
229"neupravte nastaven PAM v /etc/pam.d/ssh." 193"neupravte nastaven PAM v /etc/pam.d/ssh."
230 194
195#~ msgid "Do you want ssh-keysign to be installed SUID root?"
196#~ msgstr "Chcete ssh-keysign nainstalovat jako SUID root?"
197
198#~ msgid ""
199#~ "You have the option of installing the ssh-keysign helper with the SUID "
200#~ "bit set."
201#~ msgstr ""
202#~ "Mete si vybrat, zda chcete nainstalovat ssh-keysign s nastavenm SUID "
203#~ "bitem."
204
205#~ msgid ""
206#~ "If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 "
207#~ "host-based authentication."
208#~ msgstr ""
209#~ "Pokud nastavte ssh-keysign SUID, mete pouvat 'host-based' "
210#~ "autentizaci protokolu verze 2."
211
212#~ msgid ""
213#~ "If in doubt, I suggest you install it with SUID. If it causes problems "
214#~ "you can change your mind later by running: dpkg-reconfigure ssh"
215#~ msgstr ""
216#~ "Pokud jste na pochybch, doporuujeme SUID bit povolit. Pokud zaznamente "
217#~ "problmy, mete nastaven zmnit sputnm: dpkg-reconfigure ssh"
218
231#~ msgid "Allow SSH protocol 2 only" 219#~ msgid "Allow SSH protocol 2 only"
232#~ msgstr "Povolit pouze SSH protokol verze 2" 220#~ msgstr "Povolit pouze SSH protokol verze 2"
233 221
diff --git a/debian/po/da.po b/debian/po/da.po
index 233b731a0..6163a1e9d 100644
--- a/debian/po/da.po
+++ b/debian/po/da.po
@@ -15,7 +15,7 @@ msgid ""
15msgstr "" 15msgstr ""
16"Project-Id-Version: openssh 3.8.1p1\n" 16"Project-Id-Version: openssh 3.8.1p1\n"
17"Report-Msgid-Bugs-To: \n" 17"Report-Msgid-Bugs-To: \n"
18"POT-Creation-Date: 2005-05-31 02:47+0100\n" 18"POT-Creation-Date: 2005-05-31 03:26+0100\n"
19"PO-Revision-Date: 2004-10-10 21:04+0200\n" 19"PO-Revision-Date: 2004-10-10 21:04+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: Danish <dansk@klid.dk>\n" 21"Language-Team: Danish <dansk@klid.dk>\n"
@@ -25,42 +25,6 @@ msgstr ""
25 25
26#. Type: boolean 26#. Type: boolean
27#. Description 27#. Description
28#: ../openssh-client.templates.master:4
29msgid "Do you want ssh-keysign to be installed SUID root?"
30msgstr "Vil du have, at ssh-keysign bliver installeret 'SUID root'?"
31
32#. Type: boolean
33#. Description
34#: ../openssh-client.templates.master:4
35msgid ""
36"You have the option of installing the ssh-keysign helper with the SUID bit "
37"set."
38msgstr ""
39"Du har mulighed for at installere ssh-keysign hjælperen med SUID-flaget sat."
40
41#. Type: boolean
42#. Description
43#: ../openssh-client.templates.master:4
44msgid ""
45"If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 host-"
46"based authentication."
47msgstr ""
48"Hvis du gør ssh-keysign SUID, vil du blive i stand til at benytte SSH "
49"protokol 2's værtsnavn-baserede autentifikation."
50
51#. Type: boolean
52#. Description
53#: ../openssh-client.templates.master:4
54msgid ""
55"If in doubt, I suggest you install it with SUID. If it causes problems you "
56"can change your mind later by running: dpkg-reconfigure ssh"
57msgstr ""
58"Hvis du er i tvivl, vil jeg råde dig til at installere den med SUID. Hvis "
59"det skaber problemer, kan du ændre det tilbage igen ved at køre: dpkg-"
60"reconfigure ssh"
61
62#. Type: boolean
63#. Description
64#: ../openssh-server.templates.master:4 28#: ../openssh-server.templates.master:4
65msgid "Generate new configuration file" 29msgid "Generate new configuration file"
66msgstr "Opret ny opsætningsfil" 30msgstr "Opret ny opsætningsfil"
@@ -232,6 +196,31 @@ msgstr ""
232"have nogen effekt, medmindre du også redigerer din PAM opsætning i /etc/pam." 196"have nogen effekt, medmindre du også redigerer din PAM opsætning i /etc/pam."
233"d/ssh." 197"d/ssh."
234 198
199#~ msgid "Do you want ssh-keysign to be installed SUID root?"
200#~ msgstr "Vil du have, at ssh-keysign bliver installeret 'SUID root'?"
201
202#~ msgid ""
203#~ "You have the option of installing the ssh-keysign helper with the SUID "
204#~ "bit set."
205#~ msgstr ""
206#~ "Du har mulighed for at installere ssh-keysign hjælperen med SUID-flaget "
207#~ "sat."
208
209#~ msgid ""
210#~ "If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 "
211#~ "host-based authentication."
212#~ msgstr ""
213#~ "Hvis du gør ssh-keysign SUID, vil du blive i stand til at benytte SSH "
214#~ "protokol 2's værtsnavn-baserede autentifikation."
215
216#~ msgid ""
217#~ "If in doubt, I suggest you install it with SUID. If it causes problems "
218#~ "you can change your mind later by running: dpkg-reconfigure ssh"
219#~ msgstr ""
220#~ "Hvis du er i tvivl, vil jeg råde dig til at installere den med SUID. Hvis "
221#~ "det skaber problemer, kan du ændre det tilbage igen ved at køre: dpkg-"
222#~ "reconfigure ssh"
223
235#~ msgid "Allow SSH protocol 2 only" 224#~ msgid "Allow SSH protocol 2 only"
236#~ msgstr "Tillad kun SSH protokol 2" 225#~ msgstr "Tillad kun SSH protokol 2"
237 226
diff --git a/debian/po/de.po b/debian/po/de.po
index bc0d507a2..92737807e 100644
--- a/debian/po/de.po
+++ b/debian/po/de.po
@@ -16,7 +16,7 @@ msgid ""
16msgstr "" 16msgstr ""
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: 2005-05-31 02:47+0100\n" 19"POT-Creation-Date: 2005-05-31 03:26+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"
@@ -26,43 +26,6 @@ msgstr ""
26 26
27#. Type: boolean 27#. Type: boolean
28#. Description 28#. Description
29#: ../openssh-client.templates.master:4
30msgid "Do you want ssh-keysign to be installed SUID root?"
31msgstr "Mchten Sie ssh-keysign SUID-Root installieren?"
32
33#. Type: boolean
34#. Description
35#: ../openssh-client.templates.master:4
36msgid ""
37"You have the option of installing the ssh-keysign helper with the SUID bit "
38"set."
39msgstr ""
40"Sie haben die Mglichkeit, den ssh-keysign-Helfer mit gesetzten SUID-Bit zu "
41"installieren."
42
43#. Type: boolean
44#. Description
45#: ../openssh-client.templates.master:4
46msgid ""
47"If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 host-"
48"based authentication."
49msgstr ""
50"Falls Sie ssh-keysign SUID installieren, knnen Sie die Host-basierende "
51"Authentisierung von SSH-Protokoll Version 2 verwenden."
52
53#. Type: boolean
54#. Description
55#: ../openssh-client.templates.master:4
56msgid ""
57"If in doubt, I suggest you install it with SUID. If it causes problems you "
58"can change your mind later by running: dpkg-reconfigure ssh"
59msgstr ""
60"Falls Sie unsicher sind, empfehle ich, mit SUID zu installieren. Falls es "
61"Probleme gibt, knnen Sie spter Ihre Meinung ndern, indem Sie dpkg-"
62"reconfigure ssh aufrufen."
63
64#. Type: boolean
65#. Description
66#: ../openssh-server.templates.master:4 29#: ../openssh-server.templates.master:4
67msgid "Generate new configuration file" 30msgid "Generate new configuration file"
68msgstr "Erzeuge eine neue Konfigurationsdatei" 31msgstr "Erzeuge eine neue Konfigurationsdatei"
@@ -228,6 +191,31 @@ msgid ""
228"effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." 191"effect unless you also adjust your PAM configuration in /etc/pam.d/ssh."
229msgstr "" 192msgstr ""
230 193
194#~ msgid "Do you want ssh-keysign to be installed SUID root?"
195#~ msgstr "Mchten Sie ssh-keysign SUID-Root installieren?"
196
197#~ msgid ""
198#~ "You have the option of installing the ssh-keysign helper with the SUID "
199#~ "bit set."
200#~ msgstr ""
201#~ "Sie haben die Mglichkeit, den ssh-keysign-Helfer mit gesetzten SUID-Bit "
202#~ "zu installieren."
203
204#~ msgid ""
205#~ "If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 "
206#~ "host-based authentication."
207#~ msgstr ""
208#~ "Falls Sie ssh-keysign SUID installieren, knnen Sie die Host-basierende "
209#~ "Authentisierung von SSH-Protokoll Version 2 verwenden."
210
211#~ msgid ""
212#~ "If in doubt, I suggest you install it with SUID. If it causes problems "
213#~ "you can change your mind later by running: dpkg-reconfigure ssh"
214#~ msgstr ""
215#~ "Falls Sie unsicher sind, empfehle ich, mit SUID zu installieren. Falls es "
216#~ "Probleme gibt, knnen Sie spter Ihre Meinung ndern, indem Sie dpkg-"
217#~ "reconfigure ssh aufrufen."
218
231#~ msgid "Allow SSH protocol 2 only" 219#~ msgid "Allow SSH protocol 2 only"
232#~ msgstr "Nur SSH-Protokoll Version 2 erlauben" 220#~ msgstr "Nur SSH-Protokoll Version 2 erlauben"
233 221
diff --git a/debian/po/el.po b/debian/po/el.po
index c9b4a1674..e7670b0db 100644
--- a/debian/po/el.po
+++ b/debian/po/el.po
@@ -16,7 +16,7 @@ msgid ""
16msgstr "" 16msgstr ""
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: 2005-05-31 02:47+0100\n" 19"POT-Creation-Date: 2005-05-31 03:26+0100\n"
20"PO-Revision-Date: 2004-10-14 21:34+0300\n" 20"PO-Revision-Date: 2004-10-14 21:34+0300\n"
21"Last-Translator: Logiotatidis George <seadog@sealabs.net>\n" 21"Last-Translator: Logiotatidis George <seadog@sealabs.net>\n"
22"Language-Team: Greek <debian-l10n-greek@lists.debian.org>\n" 22"Language-Team: Greek <debian-l10n-greek@lists.debian.org>\n"
@@ -27,43 +27,6 @@ msgstr ""
27 27
28#. Type: boolean 28#. Type: boolean
29#. Description 29#. Description
30#: ../openssh-client.templates.master:4
31msgid "Do you want ssh-keysign to be installed SUID root?"
32msgstr "Θέλετε να εγκαταστήσετε το ssh-keysign ως SUID;"
33
34#. Type: boolean
35#. Description
36#: ../openssh-client.templates.master:4
37msgid ""
38"You have the option of installing the ssh-keysign helper with the SUID bit "
39"set."
40msgstr ""
41"Έχετε την επιλογή της εγκατάστασης του εργαλείου ssh-keysign με το bit SUID "
42"ενεργοποιημένο."
43
44#. Type: boolean
45#. Description
46#: ../openssh-client.templates.master:4
47msgid ""
48"If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 host-"
49"based authentication."
50msgstr ""
51"Αν εγκαταστήσετε το ssh-keysign SUID, θα μπορείτε να χρησιμοποιήσετε την "
52"πιστοποίηση υπολογιστή (host-based authentication) του πρωτοκόλου SSH 2."
53
54#. Type: boolean
55#. Description
56#: ../openssh-client.templates.master:4
57msgid ""
58"If in doubt, I suggest you install it with SUID. If it causes problems you "
59"can change your mind later by running: dpkg-reconfigure ssh"
60msgstr ""
61"Αν έχετε αμφιβολίες, συνιστάται να το εγκαταστήσετε SUID. Αν διαπιστώσετε "
62"προβλήματα μπορείτε να αλλάξετε τη ρύθμιση αυτή εκτελώντας: dpkg-"
63"reconfigure ssh"
64
65#. Type: boolean
66#. Description
67#: ../openssh-server.templates.master:4 30#: ../openssh-server.templates.master:4
68msgid "Generate new configuration file" 31msgid "Generate new configuration file"
69msgstr "Δημιουργία νέου αρχείου ρυθμίσεων" 32msgstr "Δημιουργία νέου αρχείου ρυθμίσεων"
@@ -243,6 +206,31 @@ msgstr ""
243"ενεργοποιημένο (προεπιλογή), τότε η επιλογή 'PasswordAuthetication no' δεν " 206"ενεργοποιημένο (προεπιλογή), τότε η επιλογή 'PasswordAuthetication no' δεν "
244"θα επιδρά εκτός και εάν ρυθμίσετε και το PAM στο αρχείο /etc/pam.d/ssh." 207"θα επιδρά εκτός και εάν ρυθμίσετε και το PAM στο αρχείο /etc/pam.d/ssh."
245 208
209#~ msgid "Do you want ssh-keysign to be installed SUID root?"
210#~ msgstr "Θέλετε να εγκαταστήσετε το ssh-keysign ως SUID;"
211
212#~ msgid ""
213#~ "You have the option of installing the ssh-keysign helper with the SUID "
214#~ "bit set."
215#~ msgstr ""
216#~ "Έχετε την επιλογή της εγκατάστασης του εργαλείου ssh-keysign με το bit "
217#~ "SUID ενεργοποιημένο."
218
219#~ msgid ""
220#~ "If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 "
221#~ "host-based authentication."
222#~ msgstr ""
223#~ "Αν εγκαταστήσετε το ssh-keysign SUID, θα μπορείτε να χρησιμοποιήσετε την "
224#~ "πιστοποίηση υπολογιστή (host-based authentication) του πρωτοκόλου SSH 2."
225
226#~ msgid ""
227#~ "If in doubt, I suggest you install it with SUID. If it causes problems "
228#~ "you can change your mind later by running: dpkg-reconfigure ssh"
229#~ msgstr ""
230#~ "Αν έχετε αμφιβολίες, συνιστάται να το εγκαταστήσετε SUID. Αν "
231#~ "διαπιστώσετε προβλήματα μπορείτε να αλλάξετε τη ρύθμιση αυτή εκτελώντας: "
232#~ "dpkg-reconfigure ssh"
233
246#~ msgid "Allow SSH protocol 2 only" 234#~ msgid "Allow SSH protocol 2 only"
247#~ msgstr "Να επιτρέπεται μόνο η χρήση του πρωτοκόλλου SSH 2" 235#~ msgstr "Να επιτρέπεται μόνο η χρήση του πρωτοκόλλου SSH 2"
248 236
diff --git a/debian/po/es.po b/debian/po/es.po
index 2ca555efa..b73f939fd 100644
--- a/debian/po/es.po
+++ b/debian/po/es.po
@@ -32,7 +32,7 @@ msgid ""
32msgstr "" 32msgstr ""
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: 2005-05-31 02:47+0100\n" 35"POT-Creation-Date: 2005-05-31 03:26+0100\n"
36"PO-Revision-Date: 2004-10-12 00:00-0500\n" 36"PO-Revision-Date: 2004-10-12 00:00-0500\n"
37"Last-Translator: Santiago Erquicia <santiago_erquicia@yahoo.com.ar>\n" 37"Last-Translator: Santiago Erquicia <santiago_erquicia@yahoo.com.ar>\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"
@@ -42,42 +42,6 @@ msgstr ""
42 42
43#. Type: boolean 43#. Type: boolean
44#. Description 44#. Description
45#: ../openssh-client.templates.master:4
46msgid "Do you want ssh-keysign to be installed SUID root?"
47msgstr "Quiere instalar ssh-keysign SUID root?"
48
49#. Type: boolean
50#. Description
51#: ../openssh-client.templates.master:4
52msgid ""
53"You have the option of installing the ssh-keysign helper with the SUID bit "
54"set."
55msgstr ""
56"Puede instalar ssh-keysign con el bit SUID (se ejecutar con privilegios de "
57"root)."
58
59#. Type: boolean
60#. Description
61#: ../openssh-client.templates.master:4
62msgid ""
63"If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 host-"
64"based authentication."
65msgstr ""
66"Si hace ssh-keysign SUID, podr usar la autenticacin basada en servidor de "
67"la versin 2 del protocolo SSH."
68
69#. Type: boolean
70#. Description
71#: ../openssh-client.templates.master:4
72msgid ""
73"If in doubt, I suggest you install it with SUID. If it causes problems you "
74"can change your mind later by running: dpkg-reconfigure ssh"
75msgstr ""
76"Si duda, se recomienda que lo instale SUID. Si le causa problemas puede "
77"cambiar de opinin posteriormente ejecutando dpkg-reconfigure ssh."
78
79#. Type: boolean
80#. Description
81#: ../openssh-server.templates.master:4 45#: ../openssh-server.templates.master:4
82msgid "Generate new configuration file" 46msgid "Generate new configuration file"
83msgstr "Generar un nuevo fichero de configuracin" 47msgstr "Generar un nuevo fichero de configuracin"
@@ -255,6 +219,30 @@ msgstr ""
255"omisin) entonces la opcin PasswordAuthentication no no tendr ninguna " 219"omisin) entonces la opcin PasswordAuthentication no no tendr ninguna "
256"utilidad a menos que ajuste su configuracin de PAM en /etc/pam.d/ssh." 220"utilidad a menos que ajuste su configuracin de PAM en /etc/pam.d/ssh."
257 221
222#~ msgid "Do you want ssh-keysign to be installed SUID root?"
223#~ msgstr "Quiere instalar ssh-keysign SUID root?"
224
225#~ msgid ""
226#~ "You have the option of installing the ssh-keysign helper with the SUID "
227#~ "bit set."
228#~ msgstr ""
229#~ "Puede instalar ssh-keysign con el bit SUID (se ejecutar con privilegios "
230#~ "de root)."
231
232#~ msgid ""
233#~ "If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 "
234#~ "host-based authentication."
235#~ msgstr ""
236#~ "Si hace ssh-keysign SUID, podr usar la autenticacin basada en servidor "
237#~ "de la versin 2 del protocolo SSH."
238
239#~ msgid ""
240#~ "If in doubt, I suggest you install it with SUID. If it causes problems "
241#~ "you can change your mind later by running: dpkg-reconfigure ssh"
242#~ msgstr ""
243#~ "Si duda, se recomienda que lo instale SUID. Si le causa problemas puede "
244#~ "cambiar de opinin posteriormente ejecutando dpkg-reconfigure ssh."
245
258#~ msgid "Allow SSH protocol 2 only" 246#~ msgid "Allow SSH protocol 2 only"
259#~ msgstr "Permitir slo la versin 2 del protocolo SSH" 247#~ msgstr "Permitir slo la versin 2 del protocolo SSH"
260 248
diff --git a/debian/po/fi.po b/debian/po/fi.po
index bb88eb584..97b516943 100644
--- a/debian/po/fi.po
+++ b/debian/po/fi.po
@@ -18,7 +18,7 @@ msgid ""
18msgstr "" 18msgstr ""
19"Project-Id-Version: openssh\n" 19"Project-Id-Version: openssh\n"
20"Report-Msgid-Bugs-To: \n" 20"Report-Msgid-Bugs-To: \n"
21"POT-Creation-Date: 2005-05-31 02:47+0100\n" 21"POT-Creation-Date: 2005-05-31 03:26+0100\n"
22"PO-Revision-Date: 2005-04-08 22:15+0300\n" 22"PO-Revision-Date: 2005-04-08 22:15+0300\n"
23"Last-Translator: Matti Pöllä <mpo@iki.fi>\n" 23"Last-Translator: Matti Pöllä <mpo@iki.fi>\n"
24"Language-Team: Finnish <debian-l10n-finnish@lists.debian.org>\n" 24"Language-Team: Finnish <debian-l10n-finnish@lists.debian.org>\n"
@@ -28,40 +28,6 @@ msgstr ""
28 28
29#. Type: boolean 29#. Type: boolean
30#. Description 30#. Description
31#: ../openssh-client.templates.master:4
32msgid "Do you want ssh-keysign to be installed SUID root?"
33msgstr "Haluatko, että ssh-keygen asennetaan SUID root -oikeuksin?"
34
35#. Type: boolean
36#. Description
37#: ../openssh-client.templates.master:4
38msgid ""
39"You have the option of installing the ssh-keysign helper with the SUID bit "
40"set."
41msgstr "Voit valinnaisesti asentaa ssh-keysign-apuohjelman SUID-bitillä."
42
43#. Type: boolean
44#. Description
45#: ../openssh-client.templates.master:4
46msgid ""
47"If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 host-"
48"based authentication."
49msgstr ""
50"Jos SUID on päällä, voit käyttää SSH-protokollan version 2 konekohtaista \n"
51"todennusta."
52
53#. Type: boolean
54#. Description
55#: ../openssh-client.templates.master:4
56msgid ""
57"If in doubt, I suggest you install it with SUID. If it causes problems you "
58"can change your mind later by running: dpkg-reconfigure ssh"
59msgstr ""
60"Jos olet epävarma, SUID-bitin käyttämistä suositellaan. Jos se aiheuttaa \n"
61"ongelmia, voit myöhemmin muuttaa mielesi komennolla \"dpkg-reconfigure ssh\"."
62
63#. Type: boolean
64#. Description
65#: ../openssh-server.templates.master:4 31#: ../openssh-server.templates.master:4
66msgid "Generate new configuration file" 32msgid "Generate new configuration file"
67msgstr "Luo uusi asetustiedosto" 33msgstr "Luo uusi asetustiedosto"
@@ -238,6 +204,31 @@ msgstr ""
238"asetuksella \"PasswordAuthentication no\" ei ole vaikutusta, ellet muuta\n" 204"asetuksella \"PasswordAuthentication no\" ei ole vaikutusta, ellet muuta\n"
239"myös PAM-asetuksia tiedostossa /etc/pam.d/ssh." 205"myös PAM-asetuksia tiedostossa /etc/pam.d/ssh."
240 206
207#~ msgid "Do you want ssh-keysign to be installed SUID root?"
208#~ msgstr "Haluatko, että ssh-keygen asennetaan SUID root -oikeuksin?"
209
210#~ msgid ""
211#~ "You have the option of installing the ssh-keysign helper with the SUID "
212#~ "bit set."
213#~ msgstr "Voit valinnaisesti asentaa ssh-keysign-apuohjelman SUID-bitillä."
214
215#~ msgid ""
216#~ "If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 "
217#~ "host-based authentication."
218#~ msgstr ""
219#~ "Jos SUID on päällä, voit käyttää SSH-protokollan version 2 "
220#~ "konekohtaista \n"
221#~ "todennusta."
222
223#~ msgid ""
224#~ "If in doubt, I suggest you install it with SUID. If it causes problems "
225#~ "you can change your mind later by running: dpkg-reconfigure ssh"
226#~ msgstr ""
227#~ "Jos olet epävarma, SUID-bitin käyttämistä suositellaan. Jos se "
228#~ "aiheuttaa \n"
229#~ "ongelmia, voit myöhemmin muuttaa mielesi komennolla \"dpkg-reconfigure ssh"
230#~ "\"."
231
241#~ msgid "Allow SSH protocol 2 only" 232#~ msgid "Allow SSH protocol 2 only"
242#~ msgstr "Salli ainoastaan SSH-protokollan versio 2" 233#~ msgstr "Salli ainoastaan SSH-protokollan versio 2"
243 234
diff --git a/debian/po/fr.po b/debian/po/fr.po
index e93c898ab..63b52d8a8 100644
--- a/debian/po/fr.po
+++ b/debian/po/fr.po
@@ -15,7 +15,7 @@ msgid ""
15msgstr "" 15msgstr ""
16"Project-Id-Version: openssh 3.8.1p1-8.sarge.1\n" 16"Project-Id-Version: openssh 3.8.1p1-8.sarge.1\n"
17"Report-Msgid-Bugs-To: \n" 17"Report-Msgid-Bugs-To: \n"
18"POT-Creation-Date: 2005-05-31 02:47+0100\n" 18"POT-Creation-Date: 2005-05-31 03:26+0100\n"
19"PO-Revision-Date: 2004-10-13 22:39+0200\n" 19"PO-Revision-Date: 2004-10-13 22:39+0200\n"
20"Last-Translator: Denis Barbier <barbier@linuxfr.org>\n" 20"Last-Translator: Denis Barbier <barbier@linuxfr.org>\n"
21"Language-Team: French <Debian-l10n-french@lists.debian.org>\n" 21"Language-Team: French <Debian-l10n-french@lists.debian.org>\n"
@@ -25,41 +25,6 @@ msgstr ""
25 25
26#. Type: boolean 26#. Type: boolean
27#. Description 27#. Description
28#: ../openssh-client.templates.master:4
29msgid "Do you want ssh-keysign to be installed SUID root?"
30msgstr "Faut-il installer ssh-keysign avec le bit SETUID activ?"
31
32#. Type: boolean
33#. Description
34#: ../openssh-client.templates.master:4
35msgid ""
36"You have the option of installing the ssh-keysign helper with the SUID bit "
37"set."
38msgstr "Vous pouvez installer ssh-keysign avec le bit SETUID activ."
39
40#. Type: boolean
41#. Description
42#: ../openssh-client.templates.master:4
43msgid ""
44"If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 host-"
45"based authentication."
46msgstr ""
47"Si vous choisissez cette option, vous permettrez l'authentification base "
48"sur les htes, disponible dans la version 2 du protocole SSH."
49
50#. Type: boolean
51#. Description
52#: ../openssh-client.templates.master:4
53msgid ""
54"If in doubt, I suggest you install it with SUID. If it causes problems you "
55"can change your mind later by running: dpkg-reconfigure ssh"
56msgstr ""
57"Dans le doute, vous devriez l'installer avec le bit SETUID activ. Si cela "
58"vous pose des problmes, vous pourrez revenir sur votre dcision avec dpkg-"
59"reconfigure ssh."
60
61#. Type: boolean
62#. Description
63#: ../openssh-server.templates.master:4 28#: ../openssh-server.templates.master:4
64msgid "Generate new configuration file" 29msgid "Generate new configuration file"
65msgstr "Faut-il crer un nouveau fichier de configuration?" 30msgstr "Faut-il crer un nouveau fichier de configuration?"
@@ -240,6 +205,29 @@ msgstr ""
240"PasswordAuthentication no n'aura d'effet que si vous ajustez aussi la " 205"PasswordAuthentication no n'aura d'effet que si vous ajustez aussi la "
241"configuration de PAM dans /etc/pam.d/ssh." 206"configuration de PAM dans /etc/pam.d/ssh."
242 207
208#~ msgid "Do you want ssh-keysign to be installed SUID root?"
209#~ msgstr "Faut-il installer ssh-keysign avec le bit SETUID activ?"
210
211#~ msgid ""
212#~ "You have the option of installing the ssh-keysign helper with the SUID "
213#~ "bit set."
214#~ msgstr "Vous pouvez installer ssh-keysign avec le bit SETUID activ."
215
216#~ msgid ""
217#~ "If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 "
218#~ "host-based authentication."
219#~ msgstr ""
220#~ "Si vous choisissez cette option, vous permettrez l'authentification base "
221#~ "sur les htes, disponible dans la version 2 du protocole SSH."
222
223#~ msgid ""
224#~ "If in doubt, I suggest you install it with SUID. If it causes problems "
225#~ "you can change your mind later by running: dpkg-reconfigure ssh"
226#~ msgstr ""
227#~ "Dans le doute, vous devriez l'installer avec le bit SETUID activ. Si "
228#~ "cela vous pose des problmes, vous pourrez revenir sur votre dcision "
229#~ "avec dpkg-reconfigure ssh."
230
243#~ msgid "Allow SSH protocol 2 only" 231#~ msgid "Allow SSH protocol 2 only"
244#~ msgstr "Faut-il autoriser uniquement la version 2 du protocole SSH?" 232#~ msgstr "Faut-il autoriser uniquement la version 2 du protocole SSH?"
245 233
diff --git a/debian/po/it.po b/debian/po/it.po
index 036eceaf2..26e1d760d 100644
--- a/debian/po/it.po
+++ b/debian/po/it.po
@@ -15,7 +15,7 @@ msgid ""
15msgstr "" 15msgstr ""
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: 2005-05-31 02:47+0100\n" 18"POT-Creation-Date: 2005-05-31 03:26+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"
@@ -25,42 +25,6 @@ msgstr ""
25 25
26#. Type: boolean 26#. Type: boolean
27#. Description 27#. Description
28#: ../openssh-client.templates.master:4
29msgid "Do you want ssh-keysign to be installed SUID root?"
30msgstr "Si desidera installare ssh-keysign come SUID-root?"
31
32#. Type: boolean
33#. Description
34#: ../openssh-client.templates.master:4
35msgid ""
36"You have the option of installing the ssh-keysign helper with the SUID bit "
37"set."
38msgstr ""
39"Si ha la possibilit di installare l'helper ssh-keysign con il bit SUID "
40"impostato."
41
42#. Type: boolean
43#. Description
44#: ../openssh-client.templates.master:4
45msgid ""
46"If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 host-"
47"based authentication."
48msgstr ""
49"Se si imposta ssh-keysign come SUID, sar possibile usare l'autenticazione "
50"basata su host del protocollo 2 di SSH."
51
52#. Type: boolean
53#. Description
54#: ../openssh-client.templates.master:4
55msgid ""
56"If in doubt, I suggest you install it with SUID. If it causes problems you "
57"can change your mind later by running: dpkg-reconfigure ssh"
58msgstr ""
59"Nel dubbio, consigliabile installarlo come SUID. Se ci causa problemi "
60"sar possibile cambiare idea successivamente eseguendo dpkg-reconfigure ssh"
61
62#. Type: boolean
63#. Description
64#: ../openssh-server.templates.master:4 28#: ../openssh-server.templates.master:4
65msgid "Generate new configuration file" 29msgid "Generate new configuration file"
66msgstr "Generare un nuovo file di configurazione" 30msgstr "Generare un nuovo file di configurazione"
@@ -231,6 +195,31 @@ msgid ""
231"effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." 195"effect unless you also adjust your PAM configuration in /etc/pam.d/ssh."
232msgstr "" 196msgstr ""
233 197
198#~ msgid "Do you want ssh-keysign to be installed SUID root?"
199#~ msgstr "Si desidera installare ssh-keysign come SUID-root?"
200
201#~ msgid ""
202#~ "You have the option of installing the ssh-keysign helper with the SUID "
203#~ "bit set."
204#~ msgstr ""
205#~ "Si ha la possibilit di installare l'helper ssh-keysign con il bit SUID "
206#~ "impostato."
207
208#~ msgid ""
209#~ "If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 "
210#~ "host-based authentication."
211#~ msgstr ""
212#~ "Se si imposta ssh-keysign come SUID, sar possibile usare "
213#~ "l'autenticazione basata su host del protocollo 2 di SSH."
214
215#~ msgid ""
216#~ "If in doubt, I suggest you install it with SUID. If it causes problems "
217#~ "you can change your mind later by running: dpkg-reconfigure ssh"
218#~ msgstr ""
219#~ "Nel dubbio, consigliabile installarlo come SUID. Se ci causa problemi "
220#~ "sar possibile cambiare idea successivamente eseguendo dpkg-reconfigure "
221#~ "ssh"
222
234#~ msgid "Allow SSH protocol 2 only" 223#~ msgid "Allow SSH protocol 2 only"
235#~ msgstr "Consentire solo il protocollo 2 di SSH" 224#~ msgstr "Consentire solo il protocollo 2 di SSH"
236 225
diff --git a/debian/po/ja.po b/debian/po/ja.po
index 73eb4a2d2..c8a93918e 100644
--- a/debian/po/ja.po
+++ b/debian/po/ja.po
@@ -15,7 +15,7 @@ msgid ""
15msgstr "" 15msgstr ""
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: 2005-05-31 02:47+0100\n" 18"POT-Creation-Date: 2005-05-31 03:26+0100\n"
19"PO-Revision-Date: 2004-10-20 08:53+0900\n" 19"PO-Revision-Date: 2004-10-20 08:53+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"
@@ -25,42 +25,6 @@ msgstr ""
25 25
26#. Type: boolean 26#. Type: boolean
27#. Description 27#. Description
28#: ../openssh-client.templates.master:4
29msgid "Do you want ssh-keysign to be installed SUID root?"
30msgstr "ssh-keysign SUID root ǥ󥹥ȡ뤷ޤ?"
31
32#. Type: boolean
33#. Description
34#: ../openssh-client.templates.master:4
35msgid ""
36"You have the option of installing the ssh-keysign helper with the SUID bit "
37"set."
38msgstr ""
39"ssh-keysign إѡ򥤥󥹥ȡ뤹ݡSUID ӥåȤꤹ뤫ʤ"
40"֤ȤǤޤ"
41
42#. Type: boolean
43#. Description
44#: ../openssh-client.templates.master:4
45msgid ""
46"If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 host-"
47"based authentication."
48msgstr ""
49"ssh-keysign SUID ꤷ硢SSH ץȥ 2 ΥۥȤ˴Ťǧڤ"
50"ȤǤޤ"
51
52#. Type: boolean
53#. Description
54#: ../openssh-client.templates.master:4
55msgid ""
56"If in doubt, I suggest you install it with SUID. If it causes problems you "
57"can change your mind later by running: dpkg-reconfigure ssh"
58msgstr ""
59"褯ʬʤϡSUID ͭˤ뤳Ȥ򤪴ᤷޤ⤷ ꤬"
60"Сdpkg-reconfigure ssh ¹Ԥ뤳Ȥѹ뤳ȤǤޤ"
61
62#. Type: boolean
63#. Description
64#: ../openssh-server.templates.master:4 28#: ../openssh-server.templates.master:4
65msgid "Generate new configuration file" 29msgid "Generate new configuration file"
66msgstr "եޤ" 30msgstr "եޤ"
@@ -232,6 +196,30 @@ msgstr ""
232" PAM Ĵᤷʤ¤ꡢ'PasswordAuthentication no' ץϸ̤" 196" PAM Ĵᤷʤ¤ꡢ'PasswordAuthentication no' ץϸ̤"
233"ʤʤޤ" 197"ʤʤޤ"
234 198
199#~ msgid "Do you want ssh-keysign to be installed SUID root?"
200#~ msgstr "ssh-keysign SUID root ǥ󥹥ȡ뤷ޤ?"
201
202#~ msgid ""
203#~ "You have the option of installing the ssh-keysign helper with the SUID "
204#~ "bit set."
205#~ msgstr ""
206#~ "ssh-keysign إѡ򥤥󥹥ȡ뤹ݡSUID ӥåȤꤹ뤫ʤ"
207#~ "֤ȤǤޤ"
208
209#~ msgid ""
210#~ "If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 "
211#~ "host-based authentication."
212#~ msgstr ""
213#~ "ssh-keysign SUID ꤷ硢SSH ץȥ 2 ΥۥȤ˴Ťǧ"
214#~ "ȤȤǤޤ"
215
216#~ msgid ""
217#~ "If in doubt, I suggest you install it with SUID. If it causes problems "
218#~ "you can change your mind later by running: dpkg-reconfigure ssh"
219#~ msgstr ""
220#~ "褯ʬʤϡSUID ͭˤ뤳Ȥ򤪴ᤷޤ⤷ ꤬"
221#~ "Сdpkg-reconfigure ssh ¹Ԥ뤳Ȥѹ뤳ȤǤޤ"
222
235#~ msgid "Allow SSH protocol 2 only" 223#~ msgid "Allow SSH protocol 2 only"
236#~ msgstr "SSH ץȥ 2 ΤߤĤޤ" 224#~ msgstr "SSH ץȥ 2 ΤߤĤޤ"
237 225
diff --git a/debian/po/nl.po b/debian/po/nl.po
index a141b6b7b..0c467e061 100644
--- a/debian/po/nl.po
+++ b/debian/po/nl.po
@@ -15,7 +15,7 @@ msgid ""
15msgstr "" 15msgstr ""
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: 2005-05-31 02:47+0100\n" 18"POT-Creation-Date: 2005-05-31 03:26+0100\n"
19"PO-Revision-Date: 2004-10-28 23:21+0100\n" 19"PO-Revision-Date: 2004-10-28 23:21+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"
@@ -25,44 +25,6 @@ msgstr ""
25 25
26#. Type: boolean 26#. Type: boolean
27#. Description 27#. Description
28#: ../openssh-client.templates.master:4
29msgid "Do you want ssh-keysign to be installed SUID root?"
30msgstr "Wilt u ssh-keysign met SUID root installeren?"
31
32#. Type: boolean
33#. Description
34#: ../openssh-client.templates.master:4
35msgid ""
36"You have the option of installing the ssh-keysign helper with the SUID bit "
37"set."
38msgstr ""
39"U heeft de mogelijkheid om het ssh-keysign hulpprogramma te installeren met "
40"de SUID-bit aan."
41
42#. Type: boolean
43#. Description
44#: ../openssh-client.templates.master:4
45msgid ""
46"If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 host-"
47"based authentication."
48msgstr ""
49"Wanneer u de SUID-bit voor ssh-keysign aanzet, krijgt u de mogelijkheid om "
50"de computer-gebaseerde authenticatie van het versie 2 SSH-protocol te "
51"gebruiken."
52
53#. Type: boolean
54#. Description
55#: ../openssh-client.templates.master:4
56msgid ""
57"If in doubt, I suggest you install it with SUID. If it causes problems you "
58"can change your mind later by running: dpkg-reconfigure ssh"
59msgstr ""
60"Bij twijfel kunt u best met SUID installeren. Indien dit problemen "
61"veroorzaakt kunt u dit altijd later nog veranderen door \"dpkg-reconfigure "
62"ssh\" uit te voeren"
63
64#. Type: boolean
65#. Description
66#: ../openssh-server.templates.master:4 28#: ../openssh-server.templates.master:4
67msgid "Generate new configuration file" 29msgid "Generate new configuration file"
68msgstr "Genereer het nieuwe configuratiebestand" 30msgstr "Genereer het nieuwe configuratiebestand"
@@ -243,6 +205,32 @@ msgstr ""
243"(de standaarwaarde) zal de 'PasswordAuthentication no' optie geen (nuttig) " 205"(de standaarwaarde) zal de 'PasswordAuthentication no' optie geen (nuttig) "
244"effect hebben tenzij u ook de PAM-configuratie aanpast in /etc/pam.d/ssh." 206"effect hebben tenzij u ook de PAM-configuratie aanpast in /etc/pam.d/ssh."
245 207
208#~ msgid "Do you want ssh-keysign to be installed SUID root?"
209#~ msgstr "Wilt u ssh-keysign met SUID root installeren?"
210
211#~ msgid ""
212#~ "You have the option of installing the ssh-keysign helper with the SUID "
213#~ "bit set."
214#~ msgstr ""
215#~ "U heeft de mogelijkheid om het ssh-keysign hulpprogramma te installeren "
216#~ "met de SUID-bit aan."
217
218#~ msgid ""
219#~ "If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 "
220#~ "host-based authentication."
221#~ msgstr ""
222#~ "Wanneer u de SUID-bit voor ssh-keysign aanzet, krijgt u de mogelijkheid "
223#~ "om de computer-gebaseerde authenticatie van het versie 2 SSH-protocol te "
224#~ "gebruiken."
225
226#~ msgid ""
227#~ "If in doubt, I suggest you install it with SUID. If it causes problems "
228#~ "you can change your mind later by running: dpkg-reconfigure ssh"
229#~ msgstr ""
230#~ "Bij twijfel kunt u best met SUID installeren. Indien dit problemen "
231#~ "veroorzaakt kunt u dit altijd later nog veranderen door \"dpkg-"
232#~ "reconfigure ssh\" uit te voeren"
233
246#~ msgid "Allow SSH protocol 2 only" 234#~ msgid "Allow SSH protocol 2 only"
247#~ msgstr "Laat enkel versie 2 van het SSH-protocol toe." 235#~ msgstr "Laat enkel versie 2 van het SSH-protocol toe."
248 236
diff --git a/debian/po/pl.po b/debian/po/pl.po
index e2683ed19..a422e51a2 100644
--- a/debian/po/pl.po
+++ b/debian/po/pl.po
@@ -15,7 +15,7 @@ msgid ""
15msgstr "" 15msgstr ""
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: 2005-05-31 02:47+0100\n" 18"POT-Creation-Date: 2005-05-31 03:26+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"
@@ -25,43 +25,6 @@ msgstr ""
25 25
26#. Type: boolean 26#. Type: boolean
27#. Description 27#. Description
28#: ../openssh-client.templates.master:4
29msgid "Do you want ssh-keysign to be installed SUID root?"
30msgstr "Czy chcesz aby ssh-keysign by zainstalowany jako SUID root?"
31
32#. Type: boolean
33#. Description
34#: ../openssh-client.templates.master:4
35msgid ""
36"You have the option of installing the ssh-keysign helper with the SUID bit "
37"set."
38msgstr ""
39"Masz moliwo zainstalowania pomocniczego programu ssh-keysign z wczonym "
40"bitem SETUID."
41
42#. Type: boolean
43#. Description
44#: ../openssh-client.templates.master:4
45msgid ""
46"If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 host-"
47"based authentication."
48msgstr ""
49"Jeli uczynisz ssh-keysign SUIDowym, bdziesz mg uywa opartej na hostach "
50"autoryzacji drugiej wersji protokou SSH."
51
52#. Type: boolean
53#. Description
54#: ../openssh-client.templates.master:4
55msgid ""
56"If in doubt, I suggest you install it with SUID. If it causes problems you "
57"can change your mind later by running: dpkg-reconfigure ssh"
58msgstr ""
59"Jeli masz wtpliwoci, radz zainstalowa go z SUIDem. Jeli to sprawia "
60"problemy, moesz zmieni swoje zdanie uruchamiajc pniej polecenie: dpkg-"
61"reconfigure ssh"
62
63#. Type: boolean
64#. Description
65#: ../openssh-server.templates.master:4 28#: ../openssh-server.templates.master:4
66msgid "Generate new configuration file" 29msgid "Generate new configuration file"
67msgstr "Wygeneruj nowy plik konfiguracyjny" 30msgstr "Wygeneruj nowy plik konfiguracyjny"
@@ -227,6 +190,31 @@ msgid ""
227"effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." 190"effect unless you also adjust your PAM configuration in /etc/pam.d/ssh."
228msgstr "" 191msgstr ""
229 192
193#~ msgid "Do you want ssh-keysign to be installed SUID root?"
194#~ msgstr "Czy chcesz aby ssh-keysign by zainstalowany jako SUID root?"
195
196#~ msgid ""
197#~ "You have the option of installing the ssh-keysign helper with the SUID "
198#~ "bit set."
199#~ msgstr ""
200#~ "Masz moliwo zainstalowania pomocniczego programu ssh-keysign z "
201#~ "wczonym bitem SETUID."
202
203#~ msgid ""
204#~ "If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 "
205#~ "host-based authentication."
206#~ msgstr ""
207#~ "Jeli uczynisz ssh-keysign SUIDowym, bdziesz mg uywa opartej na "
208#~ "hostach autoryzacji drugiej wersji protokou SSH."
209
210#~ msgid ""
211#~ "If in doubt, I suggest you install it with SUID. If it causes problems "
212#~ "you can change your mind later by running: dpkg-reconfigure ssh"
213#~ msgstr ""
214#~ "Jeli masz wtpliwoci, radz zainstalowa go z SUIDem. Jeli to sprawia "
215#~ "problemy, moesz zmieni swoje zdanie uruchamiajc pniej polecenie: "
216#~ "dpkg-reconfigure ssh"
217
230#~ msgid "Allow SSH protocol 2 only" 218#~ msgid "Allow SSH protocol 2 only"
231#~ msgstr "Zezwalaj wycznie na wersj 2 protokou SSH" 219#~ msgstr "Zezwalaj wycznie na wersj 2 protokou SSH"
232 220
diff --git a/debian/po/pt_BR.po b/debian/po/pt_BR.po
index 09f8c941a..d855b0b0b 100644
--- a/debian/po/pt_BR.po
+++ b/debian/po/pt_BR.po
@@ -15,7 +15,7 @@ msgid ""
15msgstr "" 15msgstr ""
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: 2005-05-31 02:47+0100\n" 18"POT-Creation-Date: 2005-05-31 03:26+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"
@@ -25,43 +25,6 @@ msgstr ""
25 25
26#. Type: boolean 26#. Type: boolean
27#. Description 27#. Description
28#: ../openssh-client.templates.master:4
29msgid "Do you want ssh-keysign to be installed SUID root?"
30msgstr "Deseja que que ssh-keysign seja instalado SUID root ?"
31
32#. Type: boolean
33#. Description
34#: ../openssh-client.templates.master:4
35msgid ""
36"You have the option of installing the ssh-keysign helper with the SUID bit "
37"set."
38msgstr ""
39"Existe a opo de instalar o cliente auxiliar ssh-keysign com o bit SUID "
40"definido."
41
42#. Type: boolean
43#. Description
44#: ../openssh-client.templates.master:4
45msgid ""
46"If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 host-"
47"based authentication."
48msgstr ""
49"Caso voc instale o ssh-keysign com o bit SUID ativado, voc ser capaz de "
50"usar a autenticao baseada em host do protocolo SSH 2."
51
52#. Type: boolean
53#. Description
54#: ../openssh-client.templates.master:4
55msgid ""
56"If in doubt, I suggest you install it with SUID. If it causes problems you "
57"can change your mind later by running: dpkg-reconfigure ssh"
58msgstr ""
59"Caso esteja em dvida, sugerido que voc instale com o bit SUID ativado. "
60"Caso isso cause problemas e voc mude de idia posteriormente execute o "
61"comando : dpkg-reconfigure ssh"
62
63#. Type: boolean
64#. Description
65#: ../openssh-server.templates.master:4 28#: ../openssh-server.templates.master:4
66msgid "Generate new configuration file" 29msgid "Generate new configuration file"
67msgstr "Gerar novo arquivo de configurao" 30msgstr "Gerar novo arquivo de configurao"
@@ -230,6 +193,31 @@ msgid ""
230"effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." 193"effect unless you also adjust your PAM configuration in /etc/pam.d/ssh."
231msgstr "" 194msgstr ""
232 195
196#~ msgid "Do you want ssh-keysign to be installed SUID root?"
197#~ msgstr "Deseja que que ssh-keysign seja instalado SUID root ?"
198
199#~ msgid ""
200#~ "You have the option of installing the ssh-keysign helper with the SUID "
201#~ "bit set."
202#~ msgstr ""
203#~ "Existe a opo de instalar o cliente auxiliar ssh-keysign com o bit SUID "
204#~ "definido."
205
206#~ msgid ""
207#~ "If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 "
208#~ "host-based authentication."
209#~ msgstr ""
210#~ "Caso voc instale o ssh-keysign com o bit SUID ativado, voc ser capaz "
211#~ "de usar a autenticao baseada em host do protocolo SSH 2."
212
213#~ msgid ""
214#~ "If in doubt, I suggest you install it with SUID. If it causes problems "
215#~ "you can change your mind later by running: dpkg-reconfigure ssh"
216#~ msgstr ""
217#~ "Caso esteja em dvida, sugerido que voc instale com o bit SUID "
218#~ "ativado. Caso isso cause problemas e voc mude de idia posteriormente "
219#~ "execute o comando : dpkg-reconfigure ssh"
220
233#~ msgid "Allow SSH protocol 2 only" 221#~ msgid "Allow SSH protocol 2 only"
234#~ msgstr "Permitir somente protocolo SSH verso 2" 222#~ msgstr "Permitir somente protocolo SSH verso 2"
235 223
diff --git a/debian/po/ru.po b/debian/po/ru.po
index 5bc209c66..b5117f4b1 100644
--- a/debian/po/ru.po
+++ b/debian/po/ru.po
@@ -16,7 +16,7 @@ msgid ""
16msgstr "" 16msgstr ""
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: 2005-05-31 02:47+0100\n" 19"POT-Creation-Date: 2005-05-31 03:26+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"
@@ -26,40 +26,6 @@ msgstr ""
26 26
27#. Type: boolean 27#. Type: boolean
28#. Description 28#. Description
29#: ../openssh-client.templates.master:4
30msgid "Do you want ssh-keysign to be installed SUID root?"
31msgstr " ssh-keysign SUID root?"
32
33#. Type: boolean
34#. Description
35#: ../openssh-client.templates.master:4
36msgid ""
37"You have the option of installing the ssh-keysign helper with the SUID bit "
38"set."
39msgstr " SUID ssh-keysign."
40
41#. Type: boolean
42#. Description
43#: ../openssh-client.templates.master:4
44msgid ""
45"If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 host-"
46"based authentication."
47msgstr ""
48" SUID ssh, "
49" SSH- 2."
50
51#. Type: boolean
52#. Description
53#: ../openssh-client.templates.master:4
54msgid ""
55"If in doubt, I suggest you install it with SUID. If it causes problems you "
56"can change your mind later by running: dpkg-reconfigure ssh"
57msgstr ""
58" , , SUID ssh. "
59", : dpkg-reconfigure ssh"
60
61#. Type: boolean
62#. Description
63#: ../openssh-server.templates.master:4 29#: ../openssh-server.templates.master:4
64msgid "Generate new configuration file" 30msgid "Generate new configuration file"
65msgstr " " 31msgstr " "
@@ -222,6 +188,28 @@ msgid ""
222"effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." 188"effect unless you also adjust your PAM configuration in /etc/pam.d/ssh."
223msgstr "" 189msgstr ""
224 190
191#~ msgid "Do you want ssh-keysign to be installed SUID root?"
192#~ msgstr " ssh-keysign SUID root?"
193
194#~ msgid ""
195#~ "You have the option of installing the ssh-keysign helper with the SUID "
196#~ "bit set."
197#~ msgstr " SUID ssh-keysign."
198
199#~ msgid ""
200#~ "If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 "
201#~ "host-based authentication."
202#~ msgstr ""
203#~ " SUID ssh, "
204#~ " SSH- 2."
205
206#~ msgid ""
207#~ "If in doubt, I suggest you install it with SUID. If it causes problems "
208#~ "you can change your mind later by running: dpkg-reconfigure ssh"
209#~ msgstr ""
210#~ " , , SUID ssh. "
211#~ ", : dpkg-reconfigure ssh"
212
225#~ msgid "Allow SSH protocol 2 only" 213#~ msgid "Allow SSH protocol 2 only"
226#~ msgstr " SSH- 2." 214#~ msgstr " SSH- 2."
227 215
diff --git a/debian/po/templates.pot b/debian/po/templates.pot
index 5691c66ac..77b943641 100644
--- a/debian/po/templates.pot
+++ b/debian/po/templates.pot
@@ -16,7 +16,7 @@ msgid ""
16msgstr "" 16msgstr ""
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: 2005-05-31 02:47+0100\n" 19"POT-Creation-Date: 2005-05-31 03:26+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"
@@ -26,36 +26,6 @@ msgstr ""
26 26
27#. Type: boolean 27#. Type: boolean
28#. Description 28#. Description
29#: ../openssh-client.templates.master:4
30msgid "Do you want ssh-keysign to be installed SUID root?"
31msgstr ""
32
33#. Type: boolean
34#. Description
35#: ../openssh-client.templates.master:4
36msgid ""
37"You have the option of installing the ssh-keysign helper with the SUID bit "
38"set."
39msgstr ""
40
41#. Type: boolean
42#. Description
43#: ../openssh-client.templates.master:4
44msgid ""
45"If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 host-"
46"based authentication."
47msgstr ""
48
49#. Type: boolean
50#. Description
51#: ../openssh-client.templates.master:4
52msgid ""
53"If in doubt, I suggest you install it with SUID. If it causes problems you "
54"can change your mind later by running: dpkg-reconfigure ssh"
55msgstr ""
56
57#. Type: boolean
58#. Description
59#: ../openssh-server.templates.master:4 29#: ../openssh-server.templates.master:4
60msgid "Generate new configuration file" 30msgid "Generate new configuration file"
61msgstr "" 31msgstr ""
diff --git a/debian/po/tr.po b/debian/po/tr.po
index bcd7b2c51..70f899ceb 100644
--- a/debian/po/tr.po
+++ b/debian/po/tr.po
@@ -6,7 +6,7 @@ msgid ""
6msgstr "" 6msgstr ""
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: 2005-05-31 02:47+0100\n" 9"POT-Creation-Date: 2005-05-31 03:26+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"
@@ -17,43 +17,6 @@ msgstr ""
17 17
18#. Type: boolean 18#. Type: boolean
19#. Description 19#. Description
20#: ../openssh-client.templates.master:4
21msgid "Do you want ssh-keysign to be installed SUID root?"
22msgstr "ssh-keysign'ın root haklarıyla kurulmasını (SUID root) ister misiniz?"
23
24#. Type: boolean
25#. Description
26#: ../openssh-client.templates.master:4
27msgid ""
28"You have the option of installing the ssh-keysign helper with the SUID bit "
29"set."
30msgstr ""
31"ssh-keysign yardımcı aracının SUID bit'i etkinleştirilerek kurulması "
32"seçeneğine sahipsiniz."
33
34#. Type: boolean
35#. Description
36#: ../openssh-client.templates.master:4
37msgid ""
38"If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 host-"
39"based authentication."
40msgstr ""
41"Eğer ssh-keysign'ı SUID yaparsanız, SSH'ın makine tabanlı Protokol 2 "
42"yetkilendirmesini kullanabileceksiniz."
43
44#. Type: boolean
45#. Description
46#: ../openssh-client.templates.master:4
47msgid ""
48"If in doubt, I suggest you install it with SUID. If it causes problems you "
49"can change your mind later by running: dpkg-reconfigure ssh"
50msgstr ""
51"Bu konuda şüpheliyseniz, size SUID'li kurulumu öneririm. Eğer bu sorunlara "
52"yol açarsa ileride fikrinizi değiştirmek için şu komutu çalıştırabilirsiniz: "
53"dpkg-reconfigure ssh"
54
55#. Type: boolean
56#. Description
57#: ../openssh-server.templates.master:4 20#: ../openssh-server.templates.master:4
58msgid "Generate new configuration file" 21msgid "Generate new configuration file"
59msgstr "Yeni yapılandırma dosyası oluştur" 22msgstr "Yeni yapılandırma dosyası oluştur"
@@ -217,6 +180,32 @@ msgid ""
217"effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." 180"effect unless you also adjust your PAM configuration in /etc/pam.d/ssh."
218msgstr "" 181msgstr ""
219 182
183#~ msgid "Do you want ssh-keysign to be installed SUID root?"
184#~ msgstr ""
185#~ "ssh-keysign'ın root haklarıyla kurulmasını (SUID root) ister misiniz?"
186
187#~ msgid ""
188#~ "You have the option of installing the ssh-keysign helper with the SUID "
189#~ "bit set."
190#~ msgstr ""
191#~ "ssh-keysign yardımcı aracının SUID bit'i etkinleştirilerek kurulması "
192#~ "seçeneğine sahipsiniz."
193
194#~ msgid ""
195#~ "If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 "
196#~ "host-based authentication."
197#~ msgstr ""
198#~ "Eğer ssh-keysign'ı SUID yaparsanız, SSH'ın makine tabanlı Protokol 2 "
199#~ "yetkilendirmesini kullanabileceksiniz."
200
201#~ msgid ""
202#~ "If in doubt, I suggest you install it with SUID. If it causes problems "
203#~ "you can change your mind later by running: dpkg-reconfigure ssh"
204#~ msgstr ""
205#~ "Bu konuda şüpheliyseniz, size SUID'li kurulumu öneririm. Eğer bu "
206#~ "sorunlara yol açarsa ileride fikrinizi değiştirmek için şu komutu "
207#~ "çalıştırabilirsiniz: dpkg-reconfigure ssh"
208
220#~ msgid "Allow SSH protocol 2 only" 209#~ msgid "Allow SSH protocol 2 only"
221#~ msgstr "Sadece SSH protokol 2'ye izin ver" 210#~ msgstr "Sadece SSH protokol 2'ye izin ver"
222 211
diff --git a/debian/po/uk.po b/debian/po/uk.po
index 5df2912a4..9a5f552c4 100644
--- a/debian/po/uk.po
+++ b/debian/po/uk.po
@@ -15,7 +15,7 @@ msgid ""
15msgstr "" 15msgstr ""
16"Project-Id-Version: openssh-uk\n" 16"Project-Id-Version: openssh-uk\n"
17"Report-Msgid-Bugs-To: \n" 17"Report-Msgid-Bugs-To: \n"
18"POT-Creation-Date: 2005-05-31 02:47+0100\n" 18"POT-Creation-Date: 2005-05-31 03:26+0100\n"
19"PO-Revision-Date: 2005-03-28 22:28+0300\n" 19"PO-Revision-Date: 2005-03-28 22:28+0300\n"
20"Last-Translator: Eugeniy Meshcheryakov <eugen@univ.kiev.ua>\n" 20"Last-Translator: Eugeniy Meshcheryakov <eugen@univ.kiev.ua>\n"
21"Language-Team: Ukrainian\n" 21"Language-Team: Ukrainian\n"
@@ -28,40 +28,6 @@ msgstr ""
28 28
29#. Type: boolean 29#. Type: boolean
30#. Description 30#. Description
31#: ../openssh-client.templates.master:4
32msgid "Do you want ssh-keysign to be installed SUID root?"
33msgstr "Чи бажаєте ви, щоб ssh-keysign мав встановлений біт SUID?"
34
35#. Type: boolean
36#. Description
37#: ../openssh-client.templates.master:4
38msgid ""
39"You have the option of installing the ssh-keysign helper with the SUID bit "
40"set."
41msgstr "Ви маєте можливість встановити біт SUID для програми ssh-keysign."
42
43#. Type: boolean
44#. Description
45#: ../openssh-client.templates.master:4
46msgid ""
47"If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 host-"
48"based authentication."
49msgstr ""
50"Якщо ви встановите біт SUID для ssh-keysign, ви зможете використовувати "
51"вузлову автентифікацію протоколу SSH версії 2."
52
53#. Type: boolean
54#. Description
55#: ../openssh-client.templates.master:4
56msgid ""
57"If in doubt, I suggest you install it with SUID. If it causes problems you "
58"can change your mind later by running: dpkg-reconfigure ssh"
59msgstr ""
60"Якщо сумніваєтесь, то рекомендується дозволити встановити біт SUID. Якщо це "
61"викликатиме проблеми, ви зможете все змінити запустивши dpkg-reconfigure ssh"
62
63#. Type: boolean
64#. Description
65#: ../openssh-server.templates.master:4 31#: ../openssh-server.templates.master:4
66msgid "Generate new configuration file" 32msgid "Generate new configuration file"
67msgstr "Створити новий файл налаштувань" 33msgstr "Створити новий файл налаштувань"
@@ -233,6 +199,29 @@ msgstr ""
233"мати корисного ефекту доки ви не пристосуєте також налаштування PAM в /etc/" 199"мати корисного ефекту доки ви не пристосуєте також налаштування PAM в /etc/"
234"pam.d/ssh." 200"pam.d/ssh."
235 201
202#~ msgid "Do you want ssh-keysign to be installed SUID root?"
203#~ msgstr "Чи бажаєте ви, щоб ssh-keysign мав встановлений біт SUID?"
204
205#~ msgid ""
206#~ "You have the option of installing the ssh-keysign helper with the SUID "
207#~ "bit set."
208#~ msgstr "Ви маєте можливість встановити біт SUID для програми ssh-keysign."
209
210#~ msgid ""
211#~ "If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 "
212#~ "host-based authentication."
213#~ msgstr ""
214#~ "Якщо ви встановите біт SUID для ssh-keysign, ви зможете використовувати "
215#~ "вузлову автентифікацію протоколу SSH версії 2."
216
217#~ msgid ""
218#~ "If in doubt, I suggest you install it with SUID. If it causes problems "
219#~ "you can change your mind later by running: dpkg-reconfigure ssh"
220#~ msgstr ""
221#~ "Якщо сумніваєтесь, то рекомендується дозволити встановити біт SUID. Якщо "
222#~ "це викликатиме проблеми, ви зможете все змінити запустивши dpkg-"
223#~ "reconfigure ssh"
224
236#~ msgid "Allow SSH protocol 2 only" 225#~ msgid "Allow SSH protocol 2 only"
237#~ msgstr "Дозволити тільки SSH-протокол версії 2" 226#~ msgstr "Дозволити тільки SSH-протокол версії 2"
238 227
diff --git a/debian/po/zh_CN.po b/debian/po/zh_CN.po
index 113f5960b..8cd519837 100644
--- a/debian/po/zh_CN.po
+++ b/debian/po/zh_CN.po
@@ -15,7 +15,7 @@ msgid ""
15msgstr "" 15msgstr ""
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: 2005-05-31 02:47+0100\n" 18"POT-Creation-Date: 2005-05-31 03:26+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"
@@ -25,40 +25,6 @@ msgstr ""
25 25
26#. Type: boolean 26#. Type: boolean
27#. Description 27#. Description
28#: ../openssh-client.templates.master:4
29msgid "Do you want ssh-keysign to be installed SUID root?"
30msgstr "您要将 ssh-keysign 安装为 SUID root 程序吗?"
31
32#. Type: boolean
33#. Description
34#: ../openssh-client.templates.master:4
35msgid ""
36"You have the option of installing the ssh-keysign helper with the SUID bit "
37"set."
38msgstr "您使用为 ssh-keysign 帮助者程序设置 SUID 位的选项。"
39
40#. Type: boolean
41#. Description
42#: ../openssh-client.templates.master:4
43msgid ""
44"If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 host-"
45"based authentication."
46msgstr ""
47"如果您为 ssh-keysign 设置了 SUID,您将可以使用 SSH 协议 2 的基于主机的认证方"
48"式。"
49
50#. Type: boolean
51#. Description
52#: ../openssh-client.templates.master:4
53msgid ""
54"If in doubt, I suggest you install it with SUID. If it causes problems you "
55"can change your mind later by running: dpkg-reconfigure ssh"
56msgstr ""
57"如果有疑问,我建议您将它安装为 SUID。如果它带来麻烦,您可以通过运行:dpkg-"
58"reconfigure ssh 来改变主意"
59
60#. Type: boolean
61#. Description
62#: ../openssh-server.templates.master:4 28#: ../openssh-server.templates.master:4
63msgid "Generate new configuration file" 29msgid "Generate new configuration file"
64msgstr "生成新的配置文件" 30msgstr "生成新的配置文件"
@@ -213,6 +179,28 @@ msgid ""
213"effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." 179"effect unless you also adjust your PAM configuration in /etc/pam.d/ssh."
214msgstr "" 180msgstr ""
215 181
182#~ msgid "Do you want ssh-keysign to be installed SUID root?"
183#~ msgstr "您要将 ssh-keysign 安装为 SUID root 程序吗?"
184
185#~ msgid ""
186#~ "You have the option of installing the ssh-keysign helper with the SUID "
187#~ "bit set."
188#~ msgstr "您使用为 ssh-keysign 帮助者程序设置 SUID 位的选项。"
189
190#~ msgid ""
191#~ "If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 "
192#~ "host-based authentication."
193#~ msgstr ""
194#~ "如果您为 ssh-keysign 设置了 SUID,您将可以使用 SSH 协议 2 的基于主机的认证"
195#~ "方式。"
196
197#~ msgid ""
198#~ "If in doubt, I suggest you install it with SUID. If it causes problems "
199#~ "you can change your mind later by running: dpkg-reconfigure ssh"
200#~ msgstr ""
201#~ "如果有疑问,我建议您将它安装为 SUID。如果它带来麻烦,您可以通过运行:dpkg-"
202#~ "reconfigure ssh 来改变主意"
203
216#~ msgid "Allow SSH protocol 2 only" 204#~ msgid "Allow SSH protocol 2 only"
217#~ msgstr "只允许 SSH 协议 2 (ssh2)。" 205#~ msgstr "只允许 SSH 协议 2 (ssh2)。"
218 206
diff --git a/debian/rules b/debian/rules
index 90bd7ba9e..1538ef445 100755
--- a/debian/rules
+++ b/debian/rules
@@ -98,7 +98,6 @@ ifeq ($(PO2DEBCONF),yes)
98 # 4.1.16) depends on it), the binary-arch target will generate a 98 # 4.1.16) depends on it), the binary-arch target will generate a
99 # better version for sarge. 99 # better version for sarge.
100 echo 1 > debian/po/output 100 echo 1 > debian/po/output
101 po2debconf debian/openssh-client.templates.master > debian/openssh-client.templates
102 po2debconf debian/openssh-server.templates.master > debian/openssh-server.templates 101 po2debconf debian/openssh-server.templates.master > debian/openssh-server.templates
103 rm -f debian/po/output 102 rm -f debian/po/output
104endif 103endif
@@ -171,9 +170,6 @@ binary-openssh-client: DH_OPTIONS=-popenssh-client
171binary-openssh-client: build install 170binary-openssh-client: build install
172 dh_testdir 171 dh_testdir
173 dh_testroot 172 dh_testroot
174ifeq ($(PO2DEBCONF),yes)
175 po2debconf -e utf8 debian/openssh-client.templates.master > debian/openssh-client.templates
176endif
177 dh_installdebconf 173 dh_installdebconf
178 dh_installdocs OVERVIEW README 174 dh_installdocs OVERVIEW README
179 cat debian/copyright.head LICENCE > debian/openssh-client/usr/share/doc/openssh-client/copyright 175 cat debian/copyright.head LICENCE > debian/openssh-client/usr/share/doc/openssh-client/copyright
@@ -181,6 +177,7 @@ endif
181 dh_strip 177 dh_strip
182 dh_compress 178 dh_compress
183 dh_fixperms 179 dh_fixperms
180 chmod u+s debian/openssh-client/usr/lib/openssh/ssh-keysign
184 dh_installdeb 181 dh_installdeb
185 test ! -e debian/ssh/etc/ssh/ssh_prng_cmds \ 182 test ! -e debian/ssh/etc/ssh/ssh_prng_cmds \
186 || echo "/etc/ssh/ssh_prng_cmds" >> debian/openssh-client/DEBIAN/conffiles 183 || echo "/etc/ssh/ssh_prng_cmds" >> debian/openssh-client/DEBIAN/conffiles