diff options
Diffstat (limited to 'debian')
77 files changed, 12298 insertions, 0 deletions
diff --git a/debian/.cvsignore b/debian/.cvsignore new file mode 100644 index 000000000..27afde263 --- /dev/null +++ b/debian/.cvsignore | |||
@@ -0,0 +1,12 @@ | |||
1 | *.debhelper | ||
2 | *.templates | ||
3 | *substvars | ||
4 | files | ||
5 | openssh-client | ||
6 | openssh-client-udeb | ||
7 | openssh-server | ||
8 | openssh-server-udeb | ||
9 | ssh | ||
10 | ssh-askpass-gnome | ||
11 | ssh-krb5 | ||
12 | tmp | ||
diff --git a/debian/NEWS b/debian/NEWS new file mode 100644 index 000000000..f2359de35 --- /dev/null +++ b/debian/NEWS | |||
@@ -0,0 +1,32 @@ | |||
1 | openssh (1:3.8.1p1-9) experimental; urgency=low | ||
2 | |||
3 | The ssh package has been split into openssh-client and openssh-server. If | ||
4 | you had previously requested that the sshd server should not be run, then | ||
5 | that request will still be honoured. However, the recommended approach is | ||
6 | now to remove the openssh-server package if you do not want to run sshd. | ||
7 | You can remove the old /etc/ssh/sshd_not_to_be_run marker file after doing | ||
8 | that. | ||
9 | |||
10 | -- Colin Watson <cjwatson@debian.org> Mon, 2 Aug 2004 20:48:54 +0100 | ||
11 | |||
12 | openssh (1:3.5p1-1) unstable; urgency=low | ||
13 | |||
14 | This version of OpenSSH disables the environment option for public keys by | ||
15 | default, in order to avoid certain attacks (for example, LD_PRELOAD). If | ||
16 | you are using this option in an authorized_keys file, beware that the keys | ||
17 | in question will no longer work until the option is removed. | ||
18 | |||
19 | To re-enable this option, set "PermitUserEnvironment yes" in | ||
20 | /etc/ssh/sshd_config after the upgrade is complete, taking note of the | ||
21 | warning in the sshd_config(5) manual page. | ||
22 | |||
23 | -- Colin Watson <cjwatson@debian.org> Sat, 26 Oct 2002 19:41:51 +0100 | ||
24 | |||
25 | openssh (1:3.0.1p1-1) unstable; urgency=high | ||
26 | |||
27 | As of version 3, OpenSSH no longer uses separate files for ssh1 and ssh2 | ||
28 | keys. This means the authorized_keys2 and known_hosts2 files are no longer | ||
29 | needed. They will still be read in order to maintain backward | ||
30 | compatibility. | ||
31 | |||
32 | -- Matthew Vernon <matthew@debian.org> Thu, 28 Nov 2001 17:43:01 +0000 | ||
diff --git a/debian/README.Debian b/debian/README.Debian new file mode 100644 index 000000000..723e10c9d --- /dev/null +++ b/debian/README.Debian | |||
@@ -0,0 +1,261 @@ | |||
1 | OpenSSH for Debian | ||
2 | ------------------ | ||
3 | |||
4 | Although this package is widely referred to as OpenSSH, it is actually | ||
5 | a branch of an early version of ssh which has been tidied up by the | ||
6 | OpenBSD folks. | ||
7 | |||
8 | It has been decided that this version should have the privilege of | ||
9 | carrying the ``ssh'' name in Debian, since it is the only version of | ||
10 | ssh that is going to make it into Debian proper, being the only one | ||
11 | that complies with the Debian Free Software Guidelines. | ||
12 | |||
13 | If you were expecting to get the non-free version of ssh (1.2.27 or | ||
14 | whatever) when you installed this package, then you're out of luck, as | ||
15 | Debian don't ship it. | ||
16 | |||
17 | =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= | ||
18 | |||
19 | BUILD ISSUES | ||
20 | ============ | ||
21 | |||
22 | To build the openssh package for woody, set DEB_BUILD_SSH_WOODY=1 in | ||
23 | your environment. This is necessary due to non-backward-compatible | ||
24 | changes in PAM support. | ||
25 | |||
26 | =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= | ||
27 | |||
28 | UPGRADE ISSUES | ||
29 | ============== | ||
30 | |||
31 | Privilege Separation | ||
32 | -------------------- | ||
33 | |||
34 | As of 3.3, openssh has employed privilege separation to reduce the | ||
35 | quantity of code that runs as root, thereby reducing the impact of | ||
36 | some security holes in sshd. This now also works properly with PAM. | ||
37 | |||
38 | Privilege separation is turned on by default, so, if you decide you | ||
39 | want it turned off, you need to add "UsePrivilegeSeparation no" to | ||
40 | /etc/ssh/sshd_config. | ||
41 | |||
42 | PermitRootLogin set to yes | ||
43 | -------------------------- | ||
44 | |||
45 | This is now the default setting (in line with upstream), and people | ||
46 | who asked for an automatically-generated configuration file when | ||
47 | upgrading from potato (or on a new install) will have this setting in | ||
48 | their /etc/ssh/sshd_config file. | ||
49 | |||
50 | Should you wish to change this setting, edit /etc/ssh/sshd_config, and | ||
51 | change: | ||
52 | PermitRootLogin yes | ||
53 | to: | ||
54 | PermitRootLogin no | ||
55 | |||
56 | Having PermitRootLogin set to yes means that an attacker that knows | ||
57 | the root password can ssh in directly (without having to go via a user | ||
58 | account). If you set it to no, then they must compromise a normal user | ||
59 | account. In the vast majority of cases, this does not give added | ||
60 | security; remember that any account you su to root from is equivalent | ||
61 | to root - compromising this account gives an attacker access to root | ||
62 | easily. If you only ever log in as root from the physical console, | ||
63 | then you probably want to set this value to no. | ||
64 | |||
65 | As an aside, PermitRootLogin can also be set to "without-password" or | ||
66 | "forced-commands-only" - see sshd(8) for more details. | ||
67 | |||
68 | DO NOT FILE BUG REPORTS SAYING YOU THINK THIS DEFAULT IS INCORRECT! | ||
69 | |||
70 | The argument above is somewhat condensed; I have had this discussion | ||
71 | at great length with many people. If you think the default is | ||
72 | incorrect, and feel strongly enough to want to argue about it, then | ||
73 | send email to debian-ssh@lists.debian.org. I will close bug reports | ||
74 | claiming the default is incorrect. | ||
75 | |||
76 | SSH now uses protocol 2 by default | ||
77 | ---------------------------------- | ||
78 | |||
79 | This means all your keyfiles you used for protocol version 1 need to | ||
80 | be re-generated. The server keys are done automatically, but for RSA | ||
81 | authentication, please read the ssh-keygen manpage. | ||
82 | |||
83 | If you have an automatically generated configuration file, and decide | ||
84 | at a later stage that you do want to support protocol version 1 (not | ||
85 | recommended, but note that the ssh client shipped with Debian potato | ||
86 | only supported protocol version 1), then you need to do the following: | ||
87 | |||
88 | Change /etc/ssh/sshd_config such that: | ||
89 | Protocol 2 | ||
90 | becomes: | ||
91 | Protocol 2,1 | ||
92 | Also add the line: | ||
93 | HostKey /etc/ssh/ssh_host_key | ||
94 | |||
95 | If you do not already have an RSA1 host key in /etc/ssh/ssh_host_key, | ||
96 | you will need to generate one. To do so, run this command as root: | ||
97 | |||
98 | ssh-keygen -f /etc/ssh/ssh_host_key -N '' -t rsa1 | ||
99 | |||
100 | As of openssh-server 1:4.1p1-2, the option to support protocol version 1 | ||
101 | is no longer available via debconf. You must edit the configuration file | ||
102 | instead. | ||
103 | |||
104 | X11 Forwarding | ||
105 | -------------- | ||
106 | |||
107 | ssh's default for ForwardX11 has been changed to ``no'' because it has | ||
108 | been pointed out that logging into remote systems administered by | ||
109 | untrusted people is likely to open you up to X11 attacks, so you | ||
110 | should have to actively decide that you trust the remote machine's | ||
111 | root, before enabling X11. I strongly recommend that you do this on a | ||
112 | machine-by-machine basis, rather than just enabling it in the default | ||
113 | host settings. | ||
114 | |||
115 | In order for X11 forwarding to work, you need to install xauth on the | ||
116 | server. In Debian this is in the xbase-clients package. | ||
117 | |||
118 | As of OpenSSH 3.1, the remote $DISPLAY uses localhost by default to reduce | ||
119 | the security risks of X11 forwarding. Look up X11UseLocalhost in | ||
120 | sshd_config(8) if this is a problem. | ||
121 | |||
122 | OpenSSH 3.8 invented ForwardX11Trusted, which when set to no causes the | ||
123 | ssh client to create an untrusted X cookie so that attacks on the | ||
124 | forwarded X11 connection can't become attacks on X clients on the remote | ||
125 | machine. However, this has some problems in implementation - notably a | ||
126 | very short timeout of the untrusted cookie - breaks large numbers of | ||
127 | existing setups, and generally seems immature. The Debian package | ||
128 | therefore sets the default for this option to "yes" (in ssh itself, | ||
129 | rather than in ssh_config). | ||
130 | |||
131 | Fallback to RSH | ||
132 | --------------- | ||
133 | |||
134 | The default for this setting has been changed from Yes to No, for | ||
135 | security reasons, and to stop the delay attempting to rsh to machines | ||
136 | that don't offer the service. Simply switch it back on in either | ||
137 | /etc/ssh/ssh_config or ~/.ssh/config for those machines that you need | ||
138 | it for. | ||
139 | |||
140 | Setgid ssh-agent and environment variables | ||
141 | ------------------------------------------ | ||
142 | |||
143 | As of version 1:3.5p1-1, ssh-agent is installed setgid to prevent ptrace() | ||
144 | attacks retrieving private key material. This has the side-effect of causing | ||
145 | glibc to remove certain environment variables which might have security | ||
146 | implications for set-id programs, including LD_PRELOAD, LD_LIBRARY_PATH, and | ||
147 | TMPDIR. | ||
148 | |||
149 | If you need to set any of these environment variables, you will need to do | ||
150 | so in the program exec()ed by ssh-agent. This may involve creating a small | ||
151 | wrapper script. | ||
152 | |||
153 | Symlink Hostname invocation | ||
154 | --------------------------- | ||
155 | |||
156 | This version of ssh no longer includes support for invoking ssh with the | ||
157 | hostname as the name of the file run. People wanting this support should | ||
158 | use the ssh-argv0 script. | ||
159 | |||
160 | =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= | ||
161 | |||
162 | OTHER ISSUES | ||
163 | ============ | ||
164 | |||
165 | /usr/bin/ssh not SUID | ||
166 | --------------------- | ||
167 | |||
168 | Due to Debian bug #164325, RhostsRSAAuthentication can only be used if ssh | ||
169 | is SUID. Until this is fixed, if that is a problem, use: | ||
170 | |||
171 | dpkg-statoverride | ||
172 | |||
173 | or if that's also missing, use this: | ||
174 | |||
175 | chown root.root /usr/bin/ssh | ||
176 | chmod 04755 /usr/bin/ssh | ||
177 | |||
178 | Authorization Forwarding | ||
179 | ------------------------ | ||
180 | |||
181 | Similarly, root on a remote server could make use of your ssh-agent | ||
182 | (while you're logged into their machine) to obtain access to machines | ||
183 | which trust your keys. This feature is therefore disabled by default. | ||
184 | You should only re-enable it for those hosts (in your ~/.ssh/config or | ||
185 | /etc/ssh/ssh_config) where you are confident that the remote machine | ||
186 | is not a threat. | ||
187 | |||
188 | Problems logging in with RSA authentication | ||
189 | ------------------------------------------- | ||
190 | |||
191 | If you have trouble logging in with RSA authentication then the | ||
192 | problem is probably caused by the fact that you have your home | ||
193 | directory writable by group, as well as user (this is the default on | ||
194 | Debian systems). | ||
195 | |||
196 | Depending upon other settings on your system (i.e. other users being | ||
197 | in your group) this could open a security hole, so you will need to | ||
198 | make your home directory writable only by yourself. Run this command, | ||
199 | as yourself: | ||
200 | |||
201 | chmod g-w ~/ | ||
202 | |||
203 | to remove group write permissions. If you use ssh-copy-id to install your | ||
204 | keys, it does this for you. | ||
205 | |||
206 | -L option of ssh nonfree | ||
207 | ------------------------ | ||
208 | |||
209 | non-free ssh supported the usage of the option -L to use a non privileged | ||
210 | port for scp. This option will not be supported by scp from openssh. | ||
211 | |||
212 | Please use instead scp -o "UsePrivilegedPort=no" as documented in the | ||
213 | manpage to scp itself. | ||
214 | |||
215 | Problem logging in because of TCP-Wrappers | ||
216 | ------------------------------------------ | ||
217 | |||
218 | ssh is compiled with support for tcp-wrappers. So if you can no longer | ||
219 | log into your system, please check that /etc/hosts.allow and /etc/hosts.deny | ||
220 | are configured so that ssh is not blocked. | ||
221 | |||
222 | Kerberos support | ||
223 | ---------------- | ||
224 | |||
225 | ssh is now compiled with Kerberos support. Unfortunately, privilege | ||
226 | separation is incompatible with Kerberos support for SSH protocol 1 and | ||
227 | parts of the support for protocol 2; you may need to run kinit after logging | ||
228 | in. | ||
229 | |||
230 | Interoperability between scp and the ssh.com SSH server | ||
231 | ------------------------------------------------------- | ||
232 | |||
233 | In version 2 and greater of the commercial SSH server produced by SSH | ||
234 | Communications Security, scp was changed to use SFTP (SSH2's file transfer | ||
235 | protocol) instead of the traditional rcp-over-ssh, thereby breaking | ||
236 | compatibility. The OpenSSH developers regard this as a bug in the ssh.com | ||
237 | server, and do not currently intend to change OpenSSH's scp to match. | ||
238 | |||
239 | Workarounds for this problem are to install scp1 on the server (scp2 will | ||
240 | fall back to it), to use sftp, or to use some other transfer mechanism such | ||
241 | as rsync-over-ssh or tar-over-ssh. | ||
242 | |||
243 | Running sshd from inittab | ||
244 | ------------------------- | ||
245 | |||
246 | Some people find it useful to run the sshd server from inittab, to make sure | ||
247 | that it always stays running. To do this, stop sshd ('/etc/init.d/ssh | ||
248 | stop'), add the following line to /etc/inittab, and run 'telinit q': | ||
249 | |||
250 | ss:2345:respawn:/usr/sbin/sshd -D | ||
251 | |||
252 | If you do this, note that you will need to stop sshd being started in the | ||
253 | normal way ('rm -f /etc/rc[2345].d/S16ssh') and that you will need to | ||
254 | restart this sshd manually on upgrades. | ||
255 | |||
256 | -- | ||
257 | Matthew Vernon | ||
258 | <matthew@debian.org> | ||
259 | and | ||
260 | Colin Watson | ||
261 | <cjwatson@debian.org> | ||
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 000000000..a027912ca --- /dev/null +++ b/debian/changelog | |||
@@ -0,0 +1,2346 @@ | |||
1 | openssh (1:4.7p1-1) UNRELEASED; urgency=low | ||
2 | |||
3 | * New upstream release (closes: #453367). | ||
4 | - CVE-2007-4752: Prevent ssh(1) from using a trusted X11 cookie if | ||
5 | creation of an untrusted cookie fails; found and fixed by Jan Pechanec | ||
6 | (closes: #444738). | ||
7 | - sshd(8) in new installations defaults to SSH Protocol 2 only. Existing | ||
8 | installations are unchanged. | ||
9 | - The SSH channel window size has been increased, and both ssh(1) | ||
10 | sshd(8) now send window updates more aggressively. These improves | ||
11 | performance on high-BDP (Bandwidth Delay Product) networks. | ||
12 | - ssh(1) and sshd(8) now preserve MAC contexts between packets, which | ||
13 | saves 2 hash calls per packet and results in 12-16% speedup for | ||
14 | arcfour256/hmac-md5. | ||
15 | - A new MAC algorithm has been added, UMAC-64 (RFC4418) as | ||
16 | "umac-64@openssh.com". UMAC-64 has been measured to be approximately | ||
17 | 20% faster than HMAC-MD5. | ||
18 | - Failure to establish a ssh(1) TunnelForward is now treated as a fatal | ||
19 | error when the ExitOnForwardFailure option is set. | ||
20 | - ssh(1) returns a sensible exit status if the control master goes away | ||
21 | without passing the full exit status. | ||
22 | - When using a ProxyCommand in ssh(1), set the outgoing hostname with | ||
23 | gethostname(2), allowing hostbased authentication to work. | ||
24 | - Make scp(1) skip FIFOs rather than hanging (closes: #246774). | ||
25 | - Encode non-printing characters in scp(1) filenames. These could cause | ||
26 | copies to be aborted with a "protocol error". | ||
27 | - Handle SIGINT in sshd(8) privilege separation child process to ensure | ||
28 | that wtmp and lastlog records are correctly updated. | ||
29 | - Report GSSAPI mechanism in errors, for libraries that support multiple | ||
30 | mechanisms. | ||
31 | - Improve documentation for ssh-add(1)'s -d option. | ||
32 | - Rearrange and tidy GSSAPI code, removing server-only code being linked | ||
33 | into the client. | ||
34 | - Delay execution of ssh(1)'s LocalCommand until after all forwardings | ||
35 | have been established. | ||
36 | - In scp(1), do not truncate non-regular files. | ||
37 | - Improve exit message from ControlMaster clients. | ||
38 | - Prevent sftp-server(8) from reading until it runs out of buffer space, | ||
39 | whereupon it would exit with a fatal error (closes: #365541). | ||
40 | - pam_end() was not being called if authentication failed | ||
41 | (closes: #405041). | ||
42 | - Manual page datestamps updated (closes: #433181). | ||
43 | |||
44 | -- Colin Watson <cjwatson@debian.org> Sun, 23 Dec 2007 12:53:46 +0000 | ||
45 | |||
46 | openssh (1:4.6p1-7) unstable; urgency=low | ||
47 | |||
48 | * Don't build PIE executables on m68k (closes: #451192). | ||
49 | * Use autotools-dev's recommended configure --build and --host options. | ||
50 | * Adjust README.Debian to suggest mailing debian-ssh@lists.debian.org | ||
51 | rather than Matthew. | ||
52 | * Check whether deluser exists in postrm (closes: #454085). | ||
53 | |||
54 | -- Colin Watson <cjwatson@debian.org> Mon, 03 Dec 2007 11:11:02 +0000 | ||
55 | |||
56 | openssh (1:4.6p1-6) unstable; urgency=low | ||
57 | |||
58 | * Remove blank line between head comment and first template in | ||
59 | debian/openssh-server.templates.master; apparently it confuses some | ||
60 | versions of debconf. | ||
61 | * Install authorized_keys(5) as a symlink to sshd(8) (thanks, Tomas | ||
62 | Pospisek; closes: #441817). | ||
63 | * Discard error output from dpkg-query in preinsts, in case the ssh | ||
64 | metapackage is not installed. | ||
65 | * Fix sshd/inittab advice in README.Debian to account for rc.d movement | ||
66 | (closes: #450632). | ||
67 | * Suppress error from debian/rules if lsb-release is not installed. | ||
68 | * Don't ignore errors from 'make -C contrib clean'. | ||
69 | * Adjust categories in ssh-askpass-gnome.desktop to comply with the | ||
70 | Desktop Menu Specification. | ||
71 | * debconf template translations: | ||
72 | - Add Slovak (thanks, Ivan Masár; closes: #441690). | ||
73 | - Update Brazilian Portuguese (thanks, Eder L. Marques; | ||
74 | closes: #447145). | ||
75 | |||
76 | -- Colin Watson <cjwatson@debian.org> Mon, 12 Nov 2007 11:47:28 +0000 | ||
77 | |||
78 | openssh (1:4.6p1-5) unstable; urgency=low | ||
79 | |||
80 | * Identify ssh as a metapackage rather than a transitional package. It's | ||
81 | still useful as a quick way to install both the client and the server. | ||
82 | * ssh-copy-id now checks the exit status of ssh-add -L (thanks, Adeodato | ||
83 | Simó; closes: #221675). | ||
84 | * ssh-copy-id no longer prints the output of expr (thanks, Peter | ||
85 | Eisentraut; closes: #291534). | ||
86 | * ssh-copy-id defaults to ~/.ssh/id_rsa.pub rather than | ||
87 | ~/.ssh/identity.pub, in line with ssh-keygen (thanks, Greg Norris; | ||
88 | closes: #234627). | ||
89 | * Build-depend on libselinux1-dev on lpia. | ||
90 | * openssh-client Suggests: keychain. | ||
91 | * debconf template translations: | ||
92 | - Update Catalan (thanks, Jordà Polo; closes: #431970). | ||
93 | |||
94 | -- Colin Watson <cjwatson@debian.org> Mon, 30 Jul 2007 09:34:38 +0100 | ||
95 | |||
96 | openssh (1:4.6p1-4) unstable; urgency=low | ||
97 | |||
98 | * Don't build PIE executables on hppa, as they crash. | ||
99 | |||
100 | -- Colin Watson <cjwatson@debian.org> Thu, 05 Jul 2007 11:06:54 +0100 | ||
101 | |||
102 | openssh (1:4.6p1-3) unstable; urgency=low | ||
103 | |||
104 | * Only build PIE executables on Linux and NetBSD (closes: #430455). | ||
105 | * Fix broken switch fallthrough when SELinux is running in permissive mode | ||
106 | (closes: #430838). | ||
107 | * Document that HashKnownHosts may break tab-completion (closes: #430154). | ||
108 | |||
109 | -- Colin Watson <cjwatson@debian.org> Fri, 29 Jun 2007 07:15:38 +0100 | ||
110 | |||
111 | openssh (1:4.6p1-2) unstable; urgency=low | ||
112 | |||
113 | * Fix ordering of SYSLOG_LEVEL_QUIET and SYSLOG_LEVEL_FATAL. | ||
114 | * Clarify that 'ssh -q -q' still prints errors caused by bad arguments | ||
115 | (i.e. before the logging system is initialised). | ||
116 | * Suppress "Connection to <host> closed" and "Connection to master closed" | ||
117 | messages at loglevel SILENT (thanks, Jaap Eldering; closes: #409788). | ||
118 | * Suppress "Pseudo-terminal will not be allocated because stdin is not a | ||
119 | terminal" message at loglevels QUIET and SILENT (closes: #366814). | ||
120 | * Document the SILENT loglevel in sftp-server(8), ssh_config(5), and | ||
121 | sshd_config(5). | ||
122 | * Add try-restart action to init script. | ||
123 | * Add /etc/network/if-up.d/openssh-server to restart sshd when new | ||
124 | interfaces appear (LP: #103436). | ||
125 | * Backport from upstream: | ||
126 | - Move C/R -> kbdint special case to after the defaults have been | ||
127 | loaded, which makes ChallengeResponse default to yes again. This was | ||
128 | broken by the Match changes and not fixed properly subsequently | ||
129 | (closes: #428968). | ||
130 | - Silence spurious error messages from hang-on-exit fix | ||
131 | (http://bugzilla.mindrot.org/show_bug.cgi?id=1306, closes: #429531). | ||
132 | |||
133 | -- Colin Watson <cjwatson@debian.org> Wed, 20 Jun 2007 11:52:44 +0100 | ||
134 | |||
135 | openssh (1:4.6p1-1) unstable; urgency=low | ||
136 | |||
137 | * New upstream release (closes: #395507, #397961, #420035). Important | ||
138 | changes not previously backported to 4.3p2: | ||
139 | - 4.4/4.4p1 (http://www.openssh.org/txt/release-4.4): | ||
140 | + On portable OpenSSH, fix a GSSAPI authentication abort that could be | ||
141 | used to determine the validity of usernames on some platforms. | ||
142 | + Implemented conditional configuration in sshd_config(5) using the | ||
143 | "Match" directive. This allows some configuration options to be | ||
144 | selectively overridden if specific criteria (based on user, group, | ||
145 | hostname and/or address) are met. So far a useful subset of | ||
146 | post-authentication options are supported and more are expected to | ||
147 | be added in future releases. | ||
148 | + Add support for Diffie-Hellman group exchange key agreement with a | ||
149 | final hash of SHA256. | ||
150 | + Added a "ForceCommand" directive to sshd_config(5). Similar to the | ||
151 | command="..." option accepted in ~/.ssh/authorized_keys, this forces | ||
152 | the execution of the specified command regardless of what the user | ||
153 | requested. This is very useful in conjunction with the new "Match" | ||
154 | option. | ||
155 | + Add a "PermitOpen" directive to sshd_config(5). This mirrors the | ||
156 | permitopen="..." authorized_keys option, allowing fine-grained | ||
157 | control over the port-forwardings that a user is allowed to | ||
158 | establish. | ||
159 | + Add optional logging of transactions to sftp-server(8). | ||
160 | + ssh(1) will now record port numbers for hosts stored in | ||
161 | ~/.ssh/known_hosts when a non-standard port has been requested | ||
162 | (closes: #50612). | ||
163 | + Add an "ExitOnForwardFailure" option to cause ssh(1) to exit (with a | ||
164 | non-zero exit code) when requested port forwardings could not be | ||
165 | established. | ||
166 | + Extend sshd_config(5) "SubSystem" declarations to allow the | ||
167 | specification of command-line arguments. | ||
168 | + Replacement of all integer overflow susceptible invocations of | ||
169 | malloc(3) and realloc(3) with overflow-checking equivalents. | ||
170 | + Many manpage fixes and improvements. | ||
171 | + Add optional support for OpenSSL hardware accelerators (engines), | ||
172 | enabled using the --with-ssl-engine configure option. | ||
173 | + Tokens in configuration files may be double-quoted in order to | ||
174 | contain spaces (closes: #319639). | ||
175 | + Move a debug() call out of a SIGCHLD handler, fixing a hang when the | ||
176 | session exits very quickly (closes: #307890). | ||
177 | + Fix some incorrect buffer allocation calculations (closes: #410599). | ||
178 | + ssh-add doesn't ask for a passphrase if key file permissions are too | ||
179 | liberal (closes: #103677). | ||
180 | + Likewise, ssh doesn't ask either (closes: #99675). | ||
181 | - 4.6/4.6p1 (http://www.openssh.org/txt/release-4.6): | ||
182 | + sshd now allows the enabling and disabling of authentication methods | ||
183 | on a per user, group, host and network basis via the Match directive | ||
184 | in sshd_config. | ||
185 | + Fixed an inconsistent check for a terminal when displaying scp | ||
186 | progress meter (closes: #257524). | ||
187 | + Fix "hang on exit" when background processes are running at the time | ||
188 | of exit on a ttyful/login session (closes: #88337). | ||
189 | * Update to current GSSAPI patch from | ||
190 | http://www.sxw.org.uk/computing/patches/openssh-4.6p1-gsskex-20070312.patch; | ||
191 | install ChangeLog.gssapi. | ||
192 | * Build the .deb --with-ssl-engine (closes: #408027, LP: #119295). | ||
193 | * Use LSB functions in init scripts, and add an LSB-style header (partly | ||
194 | from Ubuntu and partly thanks to Christian Perrier; closes: #389038). | ||
195 | * Move init script start links to S16, move rc1 stop link to K84, and | ||
196 | remove rc0 and rc6 stop links altogether (the last part from Ubuntu; | ||
197 | closes: #122188). | ||
198 | * Emit a slightly more informative message from the init script if | ||
199 | /dev/null has somehow become not a character device (closes: #369964). | ||
200 | * Belatedly build-depend on zlib1g-dev (>= 1:1.2.3-1) (closes: #333447). | ||
201 | * Merge from Ubuntu: | ||
202 | - Build position-independent executables (only for debs, not for udebs) | ||
203 | to take advantage of address space layout randomisation. | ||
204 | - If building on Ubuntu, add /sbin, /usr/sbin, and /usr/local/sbin to | ||
205 | the default path. | ||
206 | * Use ${binary:Version} rather than ${Source-Version} in openssh-server -> | ||
207 | openssh-client dependency. | ||
208 | |||
209 | -- Colin Watson <cjwatson@debian.org> Wed, 13 Jun 2007 00:28:26 +0100 | ||
210 | |||
211 | openssh (1:4.3p2-11) unstable; urgency=low | ||
212 | |||
213 | * It's been four and a half years now since I took over as "temporary" | ||
214 | maintainer, so the Maintainer field is getting a bit inaccurate. Set | ||
215 | Maintainer to debian-ssh@lists.debian.org and leave Matthew and myself | ||
216 | as Uploaders. | ||
217 | * Use dpkg-query to fetch conffile md5sums rather than parsing | ||
218 | /var/lib/dpkg/status directly. | ||
219 | * openssh-client Suggests: libpam-ssh (closes: #427840). | ||
220 | * Use 'start-stop-daemon --oknodo' so that openssh-server's init script | ||
221 | exits successfully if sshd is already running (closes: #426858). | ||
222 | |||
223 | * Apply results of debconf templates and package descriptions review by | ||
224 | debian-l10n-english (closes: #420107, #420742). | ||
225 | * debconf template translations: | ||
226 | - Update Dutch (thanks, Machteld de Kok; closes: #419260). | ||
227 | - Update Norwegian Bokmål (thanks, Bjørn Steensrud; closes: #420630). | ||
228 | - Update Galician (thanks, Jacobo Tarrio; closes: #420635). | ||
229 | - Update Spanish (thanks, Javier Fernández-Sanguino Peña; | ||
230 | closes: #420651). | ||
231 | - Update Swedish (thanks, Daniel Nylander; closes: #420663). | ||
232 | - Add Bulgarian (thanks, Damyan Ivanov; closes: #420703). | ||
233 | - Add Tamil (thanks, Tirumurti Vasudevan; closes: #420739). | ||
234 | - Update German (thanks, Helge Kreutzmann; closes: #420743). | ||
235 | - Update Japanese (thanks, Kenshi Muto; closes: #420946). | ||
236 | - Add Basque (thanks, Piarres Beobide; closes: #421238). | ||
237 | - Update Italian (thanks, Luca Monducci; closes: #421348). | ||
238 | - Update Czech (thanks, Miroslav Kure; closes: #421484). | ||
239 | - Update Romanian (thanks, Igor Stirbu; closes: #421760). | ||
240 | - Update Russian (thanks, Yuriy Talakan' and Sergey Alyoshin; | ||
241 | closes: #420862). | ||
242 | - Update Dutch (thanks, Bart Cornelis; closes: #422767). | ||
243 | - Update Portuguese (thanks, Ricardo Silva; closes: #423112). | ||
244 | - Update French (thanks, Christian Perrier). | ||
245 | - Add Korean (thanks, Sunjae Park; closes: #424008). | ||
246 | - Update Vietnamese (thanks, Clytie Siddall; closes: #426991). | ||
247 | |||
248 | -- Colin Watson <cjwatson@debian.org> Sun, 10 Jun 2007 08:59:42 +0100 | ||
249 | |||
250 | openssh (1:4.3p2-10) unstable; urgency=low | ||
251 | |||
252 | * Multiply openssh-client-udeb's Installer-Menu-Item by 100. | ||
253 | * Increase MAX_SESSIONS to 64. | ||
254 | |||
255 | -- Colin Watson <cjwatson@debian.org> Tue, 10 Apr 2007 19:17:20 +0100 | ||
256 | |||
257 | openssh (1:4.3p2-9) unstable; urgency=high | ||
258 | |||
259 | [ Russ Allbery ] | ||
260 | * Fix GSSAPIKeyExchange configuration file handling logic in ssh-krb5 | ||
261 | (closes: #404863). | ||
262 | * Fix uncommenting of GSSAPI options by ssh-krb5 (closes: #407766). | ||
263 | |||
264 | [ Colin Watson ] | ||
265 | * debconf template translations: | ||
266 | - Add Norwegian Bokmål (thanks, Bjørn Steensrud; closes: #412330). | ||
267 | |||
268 | -- Colin Watson <cjwatson@debian.org> Mon, 5 Mar 2007 16:13:50 +0000 | ||
269 | |||
270 | openssh (1:4.3p2-8) unstable; urgency=medium | ||
271 | |||
272 | [ Vincent Untz ] | ||
273 | * Give the ssh-askpass-gnome window a default icon; remove unnecessary | ||
274 | icon extension from .desktop file (closes: | ||
275 | https://launchpad.net/bugs/27152). | ||
276 | |||
277 | [ Colin Watson ] | ||
278 | * Drop versioning on ssh/ssh-krb5 Replaces, as otherwise it isn't | ||
279 | sufficient to replace conffiles (closes: #402804). | ||
280 | * Make GSSAPICleanupCreds a compatibility alias for | ||
281 | GSSAPICleanupCredentials. Mark GSSUseSessionCCache and | ||
282 | GSSAPIUseSessionCredCache as known-but-unsupported options, and migrate | ||
283 | away from them on upgrade. | ||
284 | * It turns out that the people who told me that removing a conffile in the | ||
285 | preinst was sufficient to have dpkg replace it without prompting when | ||
286 | moving a conffile between packages were very much mistaken. As far as I | ||
287 | can tell, the only way to do this reliably is to write out the desired | ||
288 | new text of the conffile in the preinst. This is gross, and requires | ||
289 | shipping the text of all conffiles in the preinst too, but there's | ||
290 | nothing for it. Fortunately this nonsense is only required for smooth | ||
291 | upgrades from sarge. | ||
292 | * debconf template translations: | ||
293 | - Add Romanian (thanks, Stan Ioan-Eugen; closes: #403528). | ||
294 | |||
295 | -- Colin Watson <cjwatson@debian.org> Sat, 23 Dec 2006 18:38:33 +0000 | ||
296 | |||
297 | openssh (1:4.3p2-7) unstable; urgency=medium | ||
298 | |||
299 | [ Colin Watson ] | ||
300 | * Ignore errors from usermod when changing sshd's shell, since it will | ||
301 | fail if the sshd user is not local (closes: #398436). | ||
302 | * Remove version control tags from /etc/ssh/moduli and /etc/ssh/ssh_config | ||
303 | to avoid unnecessary conffile resolution steps for administrators | ||
304 | (thanks, Jari Aalto; closes: #335259). | ||
305 | * Fix quoting error in configure.ac and regenerate configure (thanks, Ben | ||
306 | Pfaff; closes: #391248). | ||
307 | * When installing openssh-client or openssh-server from scratch, remove | ||
308 | any unchanged conffiles from the pre-split ssh package to work around a | ||
309 | bug in sarge's dpkg (thanks, Justin Pryzby and others; closes: #335276). | ||
310 | |||
311 | [ Russ Allbery ] | ||
312 | * Create transitional ssh-krb5 package which enables GSSAPI configuration | ||
313 | in sshd_config (closes: #390986). | ||
314 | * Default client to attempting GSSAPI authentication. | ||
315 | * Remove obsolete GSSAPINoMICAuthentication from sshd_config if it's | ||
316 | found. | ||
317 | * Add ssh -K option, the converse of -k, to enable GSSAPI credential | ||
318 | delegation (closes: #401483). | ||
319 | |||
320 | -- Colin Watson <cjwatson@debian.org> Wed, 6 Dec 2006 23:00:49 +0000 | ||
321 | |||
322 | openssh (1:4.3p2-6) unstable; urgency=low | ||
323 | |||
324 | * Acknowledge NMU (thanks, Manoj; closes: #394795). | ||
325 | * Backport from 4.5p1: | ||
326 | - Fix a bug in the sshd privilege separation monitor that weakened its | ||
327 | verification of successful authentication. This bug is not known to be | ||
328 | exploitable in the absence of additional vulnerabilities. | ||
329 | * openssh-server Suggests: molly-guard (closes: #395473). | ||
330 | * debconf template translations: | ||
331 | - Update German (thanks, Helge Kreutzmann; closes: #395947). | ||
332 | |||
333 | -- Colin Watson <cjwatson@debian.org> Wed, 15 Nov 2006 00:07:32 +0000 | ||
334 | |||
335 | openssh (1:4.3p2-5.1) unstable; urgency=low | ||
336 | |||
337 | * NMU to update SELinux patch, bringing it in line with current selinux | ||
338 | releases. The patch for this NMU is simply the Bug#394795 patch, | ||
339 | and no other changes. (closes: #394795) | ||
340 | |||
341 | -- Manoj Srivastava <srivasta@debian.org> Mon, 23 Oct 2006 14:11:24 -0500 | ||
342 | |||
343 | openssh (1:4.3p2-5) unstable; urgency=low | ||
344 | |||
345 | * Remove ssh/insecure_telnetd check altogether (closes: #391081). | ||
346 | * debconf template translations: | ||
347 | - Update Danish (thanks, Claus Hindsgaul; closes: #390612). | ||
348 | |||
349 | -- Colin Watson <cjwatson@debian.org> Thu, 5 Oct 2006 09:04:19 +0100 | ||
350 | |||
351 | openssh (1:4.3p2-4) unstable; urgency=high | ||
352 | |||
353 | * Backport from 4.4p1 (since I don't have an updated version of the GSSAPI | ||
354 | patch yet): | ||
355 | - CVE-2006-4924: Fix a pre-authentication denial of service found by | ||
356 | Tavis Ormandy, that would cause sshd(8) to spin until the login grace | ||
357 | time expired (closes: #389995). | ||
358 | - CVE-2006-5051: Fix an unsafe signal hander reported by Mark Dowd. The | ||
359 | signal handler was vulnerable to a race condition that could be | ||
360 | exploited to perform a pre-authentication denial of service. On | ||
361 | portable OpenSSH, this vulnerability could theoretically lead to | ||
362 | pre-authentication remote code execution if GSSAPI authentication is | ||
363 | enabled, but the likelihood of successful exploitation appears remote. | ||
364 | |||
365 | * Read /etc/default/locale as well as /etc/environment (thanks, Raphaël | ||
366 | Hertzog; closes: #369395). | ||
367 | * Remove no-longer-used ssh/insecure_rshd debconf template. | ||
368 | * Make ssh/insecure_telnetd Type: error (closes: #388946). | ||
369 | |||
370 | * debconf template translations: | ||
371 | - Update Portuguese (thanks, Rui Branco; closes: #381942). | ||
372 | - Update Spanish (thanks, Javier Fernández-Sanguino Peña; | ||
373 | closes: #382966). | ||
374 | |||
375 | -- Colin Watson <cjwatson@debian.org> Fri, 29 Sep 2006 16:28:24 +0100 | ||
376 | |||
377 | openssh (1:4.3p2-3) unstable; urgency=low | ||
378 | |||
379 | * Document KeepAlive->TCPKeepAlive renaming in sshd_config(5) (closes: | ||
380 | https://launchpad.net/bugs/50702). | ||
381 | * Change sshd user's shell to /usr/sbin/nologin (closes: #366541). | ||
382 | Introduces dependency on passwd for usermod. | ||
383 | * debconf template translations: | ||
384 | - Update French (thanks, Denis Barbier; closes: #368503). | ||
385 | - Update Dutch (thanks, Bart Cornelis; closes: #375100). | ||
386 | - Update Japanese (thanks, Kenshi Muto; closes: #379950). | ||
387 | |||
388 | -- Colin Watson <cjwatson@debian.org> Thu, 27 Jul 2006 00:12:36 +0100 | ||
389 | |||
390 | openssh (1:4.3p2-2) unstable; urgency=low | ||
391 | |||
392 | * Include commented-out pam_access example in /etc/pam.d/ssh. | ||
393 | * On '/etc/init.d/ssh restart', create /var/run/sshd before checking the | ||
394 | server configuration, as otherwise 'sshd -t' will complain about the | ||
395 | lack of /var/run/sshd (closes: https://launchpad.net/bugs/45234). | ||
396 | * debconf template translations: | ||
397 | - Update Russian (thanks, Yuriy Talakan'; closes: #367143). | ||
398 | - Update Czech (thanks, Miroslav Kure; closes: #367161). | ||
399 | - Update Italian (thanks, Luca Monducci; closes: #367186). | ||
400 | - Update Galician (thanks, Jacobo Tarrio; closes: #367318). | ||
401 | - Update Swedish (thanks, Daniel Nylander; closes: #367971). | ||
402 | |||
403 | -- Colin Watson <cjwatson@debian.org> Fri, 19 May 2006 09:14:27 +0100 | ||
404 | |||
405 | openssh (1:4.3p2-1) unstable; urgency=low | ||
406 | |||
407 | * New upstream release (closes: #361032). | ||
408 | - CVE-2006-0225: scp (as does rcp, on which it is based) invoked a | ||
409 | subshell to perform local to local, and remote to remote copy | ||
410 | operations. This subshell exposed filenames to shell expansion twice; | ||
411 | allowing a local attacker to create filenames containing shell | ||
412 | metacharacters that, if matched by a wildcard, could lead to execution | ||
413 | of attacker-specified commands with the privilege of the user running | ||
414 | scp (closes: #349645). | ||
415 | - Add support for tunneling arbitrary network packets over a connection | ||
416 | between an OpenSSH client and server via tun(4) virtual network | ||
417 | interfaces. This allows the use of OpenSSH (4.3+) to create a true VPN | ||
418 | between the client and server providing real network connectivity at | ||
419 | layer 2 or 3. This feature is experimental. | ||
420 | - Reduce default key length for new DSA keys generated by ssh-keygen | ||
421 | back to 1024 bits. DSA is not specified for longer lengths and does | ||
422 | not fully benefit from simply making keys longer. As per FIPS 186-2 | ||
423 | Change Notice 1, ssh-keygen will refuse to generate a new DSA key | ||
424 | smaller or larger than 1024 bits. | ||
425 | - Fixed X forwarding failing to start when the X11 client is executed in | ||
426 | background at the time of session exit. | ||
427 | - Change ssh-keygen to generate a protocol 2 RSA key when invoked | ||
428 | without arguments (closes: #114894). | ||
429 | - Fix timing variance for valid vs. invalid accounts when attempting | ||
430 | Kerberos authentication. | ||
431 | - Ensure that ssh always returns code 255 on internal error | ||
432 | (closes: #259865). | ||
433 | - Cleanup wtmp files on SIGTERM when not using privsep. | ||
434 | - Set SO_REUSEADDR on X11 listeners to avoid problems caused by | ||
435 | lingering sockets from previous session (X11 applications can | ||
436 | sometimes not connect to 127.0.0.1:60xx) (closes: | ||
437 | https://launchpad.net/bugs/25528). | ||
438 | - Ensure that fds 0, 1 and 2 are always attached in all programs, by | ||
439 | duping /dev/null to them if necessary. | ||
440 | - Xauth list invocation had bogus "." argument. | ||
441 | - Remove internal assumptions on key exchange hash algorithm and output | ||
442 | length, preparing OpenSSH for KEX methods with alternate hashes. | ||
443 | - Ignore junk sent by a server before it sends the "SSH-" banner. | ||
444 | - Many manual page improvements. | ||
445 | - Lots of cleanups, including fixes to memory leaks on error paths and | ||
446 | possible crashes. | ||
447 | * Update to current GSSAPI patch from | ||
448 | http://www.sxw.org.uk/computing/patches/openssh-4.3p2-gsskex-20060223.patch | ||
449 | (closes: #352042). | ||
450 | * debian/rules: Resynchronise CFLAGS with that generated by configure. | ||
451 | * Restore pam_nologin to /etc/pam.d/ssh; sshd no longer checks this itself | ||
452 | when PAM is enabled, but relies on PAM to do it. | ||
453 | * Rename KeepAlive to TCPKeepAlive in default sshd_config | ||
454 | (closes: #349896). | ||
455 | * Rephrase ssh/new_config and ssh/encrypted_host_key_but_no_keygen debconf | ||
456 | templates to make boolean short descriptions end with a question mark | ||
457 | and to avoid use of the first person. | ||
458 | * Ship README.tun. | ||
459 | * Policy version 3.7.2: no changes required. | ||
460 | * debconf template translations: | ||
461 | - Update Italian (thanks, Luca Monducci; closes: #360348). | ||
462 | - Add Galician (thanks, Jacobo Tarrio; closes: #361220). | ||
463 | |||
464 | -- Colin Watson <cjwatson@debian.org> Fri, 12 May 2006 12:48:24 +0100 | ||
465 | |||
466 | openssh (1:4.2p1-8) unstable; urgency=low | ||
467 | |||
468 | [ Frans Pop ] | ||
469 | * Use udeb support introduced in debhelper 4.2.0 (available in sarge) | ||
470 | rather than constructing udebs by steam. | ||
471 | * Require debhelper 5.0.22, which generates correct shared library | ||
472 | dependencies for udebs (closes: #360068). This build-dependency can be | ||
473 | ignored if building on sarge. | ||
474 | |||
475 | [ Colin Watson ] | ||
476 | * Switch to debhelper compatibility level 4, since we now require | ||
477 | debhelper 4 even on sarge anyway for udeb support. | ||
478 | |||
479 | -- Colin Watson <cjwatson@debian.org> Fri, 31 Mar 2006 09:44:55 +0100 | ||
480 | |||
481 | openssh (1:4.2p1-7) unstable; urgency=low | ||
482 | |||
483 | * I accidentally applied the default $PATH change in 1:4.2p1-6 to the udeb | ||
484 | rather than the deb. Fixed. | ||
485 | |||
486 | -- Colin Watson <cjwatson@debian.org> Wed, 1 Mar 2006 16:19:00 +0000 | ||
487 | |||
488 | openssh (1:4.2p1-6) unstable; urgency=low | ||
489 | |||
490 | * Sync default values of $PATH from shadow 1:4.0.12-6, adding /usr/bin/X11 | ||
491 | to the normal and superuser paths and /usr/games to the normal path. | ||
492 | * When the client receives a signal, don't fatal() with "Killed by signal | ||
493 | %d." (which produces unhelpful noise on stderr and causes confusion for | ||
494 | users of some applications that wrap ssh); instead, generate a debug | ||
495 | message and exit with the traditional status (closes: #313371). | ||
496 | * debconf template translations: | ||
497 | - Add Swedish (thanks, Daniel Nylander; closes: #333133). | ||
498 | - Update Spanish (thanks, Javier Fernández-Sanguino Peña; | ||
499 | closes: #341371). | ||
500 | - Correct erroneously-changed Last-Translator headers in Greek and | ||
501 | Spanish translations. | ||
502 | |||
503 | -- Colin Watson <cjwatson@debian.org> Mon, 20 Feb 2006 16:50:55 +0000 | ||
504 | |||
505 | openssh (1:4.2p1-5) unstable; urgency=low | ||
506 | |||
507 | * Add a CVE name to the 1:4.0p1-1 changelog entry. | ||
508 | * Build-depend on libselinux1-dev on armeb. | ||
509 | * Only send GSSAPI proposal if GSSAPIAuthentication is enabled. | ||
510 | * Build-depend on libssl-dev (>= 0.9.8-1) to cope with surprise OpenSSL | ||
511 | transition, since otherwise who knows what the buildds will do. If | ||
512 | you're building openssh yourself, you can safely ignore this and use an | ||
513 | older libssl-dev. | ||
514 | |||
515 | -- Colin Watson <cjwatson@debian.org> Fri, 7 Oct 2005 12:23:42 +0100 | ||
516 | |||
517 | openssh (1:4.2p1-4) unstable; urgency=low | ||
518 | |||
519 | * Initialise token to GSS_C_EMPTY_BUFFER in ssh_gssapi_check_mechanism | ||
520 | (closes: #328606). | ||
521 | |||
522 | -- Colin Watson <cjwatson@debian.org> Fri, 16 Sep 2005 12:50:16 +0100 | ||
523 | |||
524 | openssh (1:4.2p1-3) unstable; urgency=low | ||
525 | |||
526 | * Add prototype for ssh_gssapi_server_mechanisms (closes: #328372). | ||
527 | * Interoperate with ssh-krb5 << 3.8.1p1-1 servers, which used a slightly | ||
528 | different version of the gssapi authentication method (thanks, Aaron M. | ||
529 | Ucko; closes: #328388). | ||
530 | * Explicitly tell po2debconf to use the 'popular' output encoding, so that | ||
531 | the woody-compatibility hack works even with po-debconf 0.9.0. | ||
532 | |||
533 | -- Colin Watson <cjwatson@debian.org> Thu, 15 Sep 2005 09:28:21 +0100 | ||
534 | |||
535 | openssh (1:4.2p1-2) unstable; urgency=low | ||
536 | |||
537 | * Annotate 1:4.2p1-1 changelog with CVE references. | ||
538 | * Add remaining pieces of Kerberos support (closes: #152657, #275472): | ||
539 | - Add GSSAPI key exchange support from | ||
540 | http://www.sxw.org.uk/computing/patches/openssh.html (thanks, Stephen | ||
541 | Frost). | ||
542 | - Build-depend on libkrb5-dev and configure --with-kerberos5=/usr. | ||
543 | - openssh-client and openssh-server replace ssh-krb5. | ||
544 | - Update commented-out Kerberos/GSSAPI options in default sshd_config. | ||
545 | - Fix HAVE_GSSAPI_KRB5_H/HAVE_GSSAPI_GSSAPI_KRB5_H typos in | ||
546 | gss-serv-krb5.c. | ||
547 | |||
548 | -- Colin Watson <cjwatson@debian.org> Wed, 14 Sep 2005 18:28:49 +0100 | ||
549 | |||
550 | openssh (1:4.2p1-1) unstable; urgency=low | ||
551 | |||
552 | * New upstream release. | ||
553 | - SECURITY (CAN-2005-2797): Fix a bug introduced in OpenSSH 4.0 that | ||
554 | caused GatewayPorts to be incorrectly activated for dynamic ("-D") | ||
555 | port forwardings when no listen address was explicitly specified | ||
556 | (closes: #326065). | ||
557 | - SECURITY (CAN-2005-2798): Fix improper delegation of GSSAPI | ||
558 | credentials. This code is only built in openssh-krb5, not openssh, but | ||
559 | I mention the CVE reference here anyway for completeness. | ||
560 | - Add a new compression method ("Compression delayed") that delays zlib | ||
561 | compression until after authentication, eliminating the risk of zlib | ||
562 | vulnerabilities being exploited by unauthenticated users. Note that | ||
563 | users of OpenSSH versions earlier than 3.5 will need to disable | ||
564 | compression on the client or set "Compression yes" (losing this | ||
565 | security benefit) on the server. | ||
566 | - Increase the default size of new RSA/DSA keys generated by ssh-keygen | ||
567 | from 1024 to 2048 bits (closes: #181162). | ||
568 | - Many bugfixes and improvements to connection multiplexing. | ||
569 | - Don't pretend to accept $HOME (closes: #208648). | ||
570 | * debian/rules: Resynchronise CFLAGS with that generated by configure. | ||
571 | * openssh-client and openssh-server conflict with pre-split ssh to avoid | ||
572 | problems when ssh is left un-upgraded (closes: #324695). | ||
573 | * Set X11Forwarding to yes in the default sshd_config (new installs only). | ||
574 | At least when X11UseLocalhost is turned on, which is the default, the | ||
575 | security risks of using X11 forwarding are risks to the client, not to | ||
576 | the server (closes: #320104). | ||
577 | |||
578 | -- Colin Watson <cjwatson@debian.org> Wed, 14 Sep 2005 15:16:14 +0100 | ||
579 | |||
580 | openssh (1:4.1p1-7) unstable; urgency=low | ||
581 | |||
582 | * Do the IDEA host key check on a temporary file to avoid altering | ||
583 | /etc/ssh/ssh_host_key itself (closes: #312312). | ||
584 | * Work around the ssh-askpass alternative somehow ending up in manual mode | ||
585 | pointing to the obsolete /usr/lib/ssh/gnome-ssh-askpass. | ||
586 | * Add GNU/kFreeBSD support (thanks, Aurelien Jarno; closes: #318113). | ||
587 | * Fix XSIish uses of 'test' in openssh-server.preinst. | ||
588 | * Policy version 3.6.2: no changes required. | ||
589 | |||
590 | -- Colin Watson <cjwatson@debian.org> Fri, 2 Sep 2005 16:18:11 +0100 | ||
591 | |||
592 | openssh (1:4.1p1-6) unstable; urgency=low | ||
593 | |||
594 | * Fix one-character typo that meant the binaries in openssh-client and | ||
595 | openssh-server got recompiled with the wrong options during | ||
596 | 'debian/rules install' (closes: #317088, #317238, #317241). | ||
597 | |||
598 | -- Colin Watson <cjwatson@debian.org> Thu, 7 Jul 2005 10:56:16 +0100 | ||
599 | |||
600 | openssh (1:4.1p1-5) unstable; urgency=low | ||
601 | |||
602 | * Build-depend on libselinux1-dev on ppc64 too (closes: #314625). | ||
603 | * Drop priority of ssh to extra to match the override file. | ||
604 | * Make /usr/share/doc/openssh-server and /usr/share/doc/ssh symlinks to | ||
605 | /usr/share/doc/openssh-client (closes: #314745). | ||
606 | * Ship README.dns (closes: #284874). | ||
607 | * Disable btmp logging, since Debian's /var/log/btmp has inappropriate | ||
608 | permissions (closes: #314956). | ||
609 | * Allow ~/.ssh/config to be group-writable, provided that the group in | ||
610 | question contains only the file's owner (closes: #314347). | ||
611 | * debconf template translations: | ||
612 | - Update Brazilian Portuguese (thanks, André LuÃs Lopes; | ||
613 | closes: #315477). | ||
614 | - Add Vietnamese (thanks, Clytie Siddall; closes: #316636). | ||
615 | |||
616 | -- Colin Watson <cjwatson@debian.org> Sun, 3 Jul 2005 17:08:08 +0100 | ||
617 | |||
618 | openssh (1:4.1p1-4) unstable; urgency=low | ||
619 | |||
620 | * openssh-client and openssh-server conflict with ssh-krb5, as ssh-krb5 | ||
621 | only conflicts with ssh (closes: #312475). | ||
622 | * SELinux support (thanks, Manoj Srivastava; closes: #308555): | ||
623 | - Added SELinux capability, and turned it on be default. Added | ||
624 | restorecon calls in preinst and postinst (should not matter if the | ||
625 | machine is not SELinux aware). By and large, the changes made should | ||
626 | have no effect unless the rules file calls --with-selinux; and even | ||
627 | then there should be no performance hit for machines not actively | ||
628 | running SELinux. | ||
629 | - Modified the preinst and postinst to call restorecon to set the | ||
630 | security context for the generated public key files. | ||
631 | - Added a comment to /etc/pam.d/ssh to indicate that an SELinux system | ||
632 | may want to also include pam_selinux.so. | ||
633 | * Re-enable ssh-askpass-gnome on the Hurd, now that its build-dependencies | ||
634 | are available. | ||
635 | * Restore /usr/lib/sftp-server temporarily, as a symlink to | ||
636 | /usr/lib/openssh/sftp-server (closes: #312891). | ||
637 | * Switch to debhelper compatibility level 3, since 2 is deprecated. | ||
638 | * debconf template translations: | ||
639 | - Update German (thanks, Jens Seidel; closes: #313949). | ||
640 | |||
641 | -- Colin Watson <cjwatson@debian.org> Fri, 17 Jun 2005 14:20:20 +0100 | ||
642 | |||
643 | openssh (1:4.1p1-3) unstable; urgency=low | ||
644 | |||
645 | * Upload to unstable. | ||
646 | |||
647 | -- Colin Watson <cjwatson@debian.org> Mon, 6 Jun 2005 22:28:33 +0100 | ||
648 | |||
649 | openssh (1:4.1p1-2) experimental; urgency=low | ||
650 | |||
651 | * Drop debconf support for allowing SSH protocol 1, which is discouraged | ||
652 | and has not been the default since openssh 1:3.0.1p1-1. Users who need | ||
653 | this should edit sshd_config instead (closes: #147212). | ||
654 | * Since ssh-keysign isn't used by default (you need to set | ||
655 | EnableSSHKeysign to "yes" in /etc/ssh/ssh_config), having a debconf | ||
656 | question to ask whether it should be setuid is overkill, and the | ||
657 | question text had got out of date anyway. Remove this question, ship | ||
658 | ssh-keysign setuid in openssh-client.deb, and set a statoverride if the | ||
659 | debconf question was previously set to false. | ||
660 | * Add lintian overrides for the above (setuid-binary, | ||
661 | no-debconf-templates). | ||
662 | * Fix picky lintian errors about slogin symlinks. | ||
663 | * Fix DEB_HOST_ARCH_OS/DEB_HOST_GNU_SYSTEM compatibility handling. | ||
664 | * Apply Linux 2.2 workaround (see #239999) only on Linux. | ||
665 | |||
666 | -- Colin Watson <cjwatson@debian.org> Thu, 2 Jun 2005 00:55:58 +0100 | ||
667 | |||
668 | openssh (1:4.1p1-1) experimental; urgency=low | ||
669 | |||
670 | * New upstream release. | ||
671 | - Normalise socket addresses returned by get_remote_hostname(), fixing | ||
672 | 4-in-6 mapping issues with AllowUsers et al (closes: #192234). | ||
673 | * Take upstream's hint and disable the unsupported USE_POSIX_THREADS | ||
674 | (closes: #295757, #308868, and possibly others; may open other bugs). | ||
675 | Use PAM password authentication to avoid #278394. In future I may | ||
676 | provide two sets of binaries built with and without this option, since | ||
677 | it seems I can't win. | ||
678 | * Disable ChallengeResponseAuthentication in new installations, returning | ||
679 | to PasswordAuthentication by default, since it now supports PAM and | ||
680 | apparently works better with a non-threaded sshd (closes: #247521). | ||
681 | * openssh-server Suggests: rssh (closes: #233012). | ||
682 | * Change libexecdir to /usr/lib/openssh, and fix up various alternatives | ||
683 | and configuration files to match (closes: #87900, #151321). | ||
684 | * Fix up very old sshd_config files that refer to /usr/libexec/sftp-server | ||
685 | (closes: #141979). | ||
686 | |||
687 | -- Colin Watson <cjwatson@debian.org> Tue, 31 May 2005 01:33:33 +0100 | ||
688 | |||
689 | openssh (1:4.0p1-1) experimental; urgency=low | ||
690 | |||
691 | * New upstream release. | ||
692 | - Port-forwarding specifications now take optional bind addresses, and | ||
693 | the server allows client-specified bind addresses for remote port | ||
694 | forwardings when configured with "GatewayPorts clientspecified" | ||
695 | (closes: #87253, #192206). | ||
696 | - ssh and ssh-keyscan now support hashing of known_hosts files for | ||
697 | improved privacy (CAN-2005-2666). ssh-keygen has new options for | ||
698 | managing known_hosts files, which understand hashing. | ||
699 | - sftp supports command history and editing support using libedit | ||
700 | (closes: #287013). | ||
701 | - Have scp and sftp wait for the spawned ssh to exit before they exit | ||
702 | themselves, allowing ssh to restore terminal modes (closes: #257130). | ||
703 | - Improved the handling of bad data in authorized_keys files, | ||
704 | eliminating fatal errors on corrupt or very large keys; e.g. linefeeds | ||
705 | in keys only produce errors in auth.log now (closes: #220726). | ||
706 | - Add "command mode" to ssh connection multiplexing (closes: #303452). | ||
707 | - Mention $HOME/.hushlogin in sshd(8) FILES section (closes: #163933). | ||
708 | * Make gnome-ssh-askpass stay above other windows (thanks, Liyang HU; | ||
709 | closes: #296487). | ||
710 | * Remove obsolete and unnecessary ssh/forward_warning debconf note. | ||
711 | * Hurd build fixes (although sshd still doesn't work): | ||
712 | - Restore X forwarding fix from #102991, lost somewhere along the way. | ||
713 | - Link with -lcrypt. | ||
714 | - Link with -lpthread rather than -pthread. | ||
715 | - Don't build ssh-askpass-gnome on the Hurd, until GNOME is available to | ||
716 | satisfy build-dependencies. | ||
717 | * Drop workaround for #242462 on amd64; it's been fixed properly upstream. | ||
718 | * Enable HashKnownHosts by default. This only affects new entries; use | ||
719 | 'ssh-keygen -H' to convert an entire known_hosts file to hashed format. | ||
720 | * Note in ssh_config(5) that the SetupTimeOut option is Debian-specific | ||
721 | (closes: #307069). | ||
722 | * debconf template translations: | ||
723 | - Update Czech (thanks, Miroslav Kure; closes: #298744). | ||
724 | - Update Finnish (thanks, Matti Pöllä; closes: #303787). | ||
725 | - Synchronise Spanish with sarge branch (thanks, Javier | ||
726 | Fernández-Sanguino Peña; closes: #298536). | ||
727 | - Add Ukrainian (thanks, Eugeniy Meshcheryakov; closes: #301852). | ||
728 | |||
729 | -- Colin Watson <cjwatson@debian.org> Thu, 26 May 2005 11:23:18 +0100 | ||
730 | |||
731 | openssh (1:3.9p1-3) experimental; urgency=low | ||
732 | |||
733 | * Explain how to run sshd from inittab in README.Debian (closes: #147360). | ||
734 | * Add debian/watch file. | ||
735 | |||
736 | -- Colin Watson <cjwatson@debian.org> Fri, 18 Feb 2005 00:20:16 +0000 | ||
737 | |||
738 | openssh (1:3.9p1-2) experimental; urgency=low | ||
739 | |||
740 | * Remove pam_nologin from /etc/pam.d/ssh, as sshd's built-in support | ||
741 | appears to be sufficient and more useful (closes: #162996). | ||
742 | * Depend on debconf | debconf-2.0. | ||
743 | * Drop LoginGraceTime back to the upstream default of two minutes on new | ||
744 | installs (closes: #289573). | ||
745 | * debconf template translations from Ubuntu bug #1232: | ||
746 | - Update Greek (thanks, Logiotatidis George). | ||
747 | - Update Spanish (thanks, Santiago Erquicia). | ||
748 | |||
749 | -- Colin Watson <cjwatson@debian.org> Sat, 15 Jan 2005 12:37:54 +0000 | ||
750 | |||
751 | openssh (1:3.9p1-1) experimental; urgency=low | ||
752 | |||
753 | * New upstream release. | ||
754 | - PAM password authentication implemented again (closes: #238699, | ||
755 | #242119). | ||
756 | - Implemented the ability to pass selected environment variables between | ||
757 | the client and the server. | ||
758 | - Fix ssh-keyscan breakage when remote server doesn't speak SSH protocol | ||
759 | (closes: #228828). | ||
760 | - Fix res_query detection (closes: #242462). | ||
761 | - 'ssh -c' documentation improved (closes: #265627). | ||
762 | * Pass LANG and LC_* environment variables from the client by default, and | ||
763 | accept them to the server by default in new installs, although not on | ||
764 | upgrade (closes: #264024). | ||
765 | * Build ssh in binary-indep, not binary-arch (thanks, LaMont Jones). | ||
766 | * Expand on openssh-client package description (closes: #273831). | ||
767 | |||
768 | -- Colin Watson <cjwatson@debian.org> Tue, 4 Jan 2005 14:18:31 +0000 | ||
769 | |||
770 | openssh (1:3.8.1p1-14) experimental; urgency=low | ||
771 | |||
772 | * We use DH_COMPAT=2, so build-depend on debhelper (>= 2). | ||
773 | * Fix timing information leak allowing discovery of invalid usernames in | ||
774 | PAM keyboard-interactive authentication (backported from a patch by | ||
775 | Darren Tucker; closes: #281595). | ||
776 | * Make sure that there's a delay in PAM keyboard-interactive | ||
777 | authentication when PermitRootLogin is not set to yes and the correct | ||
778 | root password is entered (closes: #248747). | ||
779 | |||
780 | -- Colin Watson <cjwatson@debian.org> Sun, 28 Nov 2004 18:09:37 +0000 | ||
781 | |||
782 | openssh (1:3.8.1p1-13) experimental; urgency=low | ||
783 | |||
784 | * Enable threading for PAM, on Sam Hartman's advice (closes: #278394). | ||
785 | * debconf template translations: | ||
786 | - Update Dutch (thanks, cobaco; closes: #278715). | ||
787 | * Correct README.Debian's ForwardX11Trusted description (closes: #280190). | ||
788 | |||
789 | -- Colin Watson <cjwatson@debian.org> Fri, 12 Nov 2004 12:03:13 +0000 | ||
790 | |||
791 | openssh (1:3.8.1p1-12) experimental; urgency=low | ||
792 | |||
793 | * Preserve /etc/ssh/sshd_config ownership/permissions (closes: #276754). | ||
794 | * Shorten the version string from the form "OpenSSH_3.8.1p1 Debian | ||
795 | 1:3.8.1p1-8.sarge.1" to "OpenSSH_3.8.1p1 Debian-8.sarge.1", as some SSH | ||
796 | implementations apparently have problems with the long version string. | ||
797 | This is of course a bug in those implementations, but since the extent | ||
798 | of the problem is unknown it's best to play safe (closes: #275731). | ||
799 | * debconf template translations: | ||
800 | - Add Finnish (thanks, Matti Pöllä; closes: #265339). | ||
801 | - Update Danish (thanks, Morten Brix Pedersen; closes: #275895). | ||
802 | - Update French (thanks, Denis Barbier; closes: #276703). | ||
803 | - Update Japanese (thanks, Kenshi Muto; closes: #277438). | ||
804 | |||
805 | -- Colin Watson <cjwatson@debian.org> Sun, 24 Oct 2004 19:21:17 +0100 | ||
806 | |||
807 | openssh (1:3.8.1p1-11) experimental; urgency=high | ||
808 | |||
809 | * Move sshd_config(5) to openssh-server, where it belongs. | ||
810 | * If PasswordAuthentication is disabled, then offer to disable | ||
811 | ChallengeResponseAuthentication too. The current PAM code will attempt | ||
812 | password-style authentication if ChallengeResponseAuthentication is | ||
813 | enabled (closes: #250369). | ||
814 | * This will ask a question of anyone who installed fresh with 1:3.8p1-2 or | ||
815 | later and then upgraded. Sorry about that ... for this reason, the | ||
816 | default answer is to leave ChallengeResponseAuthentication enabled. | ||
817 | |||
818 | -- Colin Watson <cjwatson@debian.org> Wed, 6 Oct 2004 14:28:20 +0100 | ||
819 | |||
820 | openssh (1:3.8.1p1-10) experimental; urgency=low | ||
821 | |||
822 | * Don't install the ssh-askpass-gnome .desktop file by default; I've had | ||
823 | too many GNOME people tell me it's the wrong thing to be doing. I've | ||
824 | left it in /usr/share/doc/ssh-askpass-gnome/examples/ for now. | ||
825 | |||
826 | -- Colin Watson <cjwatson@debian.org> Wed, 25 Aug 2004 18:18:14 +0100 | ||
827 | |||
828 | openssh (1:3.8.1p1-9) experimental; urgency=low | ||
829 | |||
830 | * Split the ssh binary package into openssh-client and openssh-server | ||
831 | (closes: #39741). openssh-server depends on openssh-client for some | ||
832 | common functionality; it didn't seem worth creating yet another package | ||
833 | for this. openssh-client is priority standard, openssh-server optional. | ||
834 | * New transitional ssh package, priority optional, depending on | ||
835 | openssh-client and openssh-server. May be removed once nothing depends | ||
836 | on it. | ||
837 | * When upgrading from ssh to openssh-{client,server}, it's very difficult | ||
838 | for the maintainer scripts to find out what version we're upgrading from | ||
839 | without dodgy dpkg hackery. I've therefore taken the opportunity to move | ||
840 | a couple of debconf notes into NEWS files, namely ssh/ssh2_keys_merged | ||
841 | and ssh/user_environment_tell. | ||
842 | * Add a heuristic to try to make sure the sshd_config upgrade to >= 3.7 | ||
843 | happens even though we don't know what version we're upgrading from. | ||
844 | * Remove /etc/ssh/sshd_not_to_be_run on purge of openssh-server. For now | ||
845 | (until sarge+2) it's still honoured to avoid breaking existing | ||
846 | configurations, but the right approach is now to remove the | ||
847 | openssh-server package if you don't want to run the server. Add a NEWS | ||
848 | item to that effect. | ||
849 | |||
850 | -- Colin Watson <cjwatson@debian.org> Mon, 2 Aug 2004 20:48:54 +0100 | ||
851 | |||
852 | openssh (1:3.8.1p1-8.sarge.4) unstable; urgency=high | ||
853 | |||
854 | * Fix timing information leak allowing discovery of invalid usernames in | ||
855 | PAM keyboard-interactive authentication (backported from a patch by | ||
856 | Darren Tucker; closes: #281595). | ||
857 | * Make sure that there's a delay in PAM keyboard-interactive | ||
858 | authentication when PermitRootLogin is not set to yes and the correct | ||
859 | root password is entered (closes: #248747). | ||
860 | |||
861 | -- Colin Watson <cjwatson@debian.org> Sun, 28 Nov 2004 12:37:16 +0000 | ||
862 | |||
863 | openssh (1:3.8.1p1-8.sarge.3) unstable; urgency=low | ||
864 | |||
865 | * Enable threading for PAM, on Sam Hartman's advice (closes: #278394). | ||
866 | * debconf template translations: | ||
867 | - Update Dutch (thanks, cobaco; closes: #278715). | ||
868 | * Correct README.Debian's ForwardX11Trusted description (closes: #280190). | ||
869 | |||
870 | -- Colin Watson <cjwatson@debian.org> Fri, 12 Nov 2004 10:31:12 +0000 | ||
871 | |||
872 | openssh (1:3.8.1p1-8.sarge.2) unstable; urgency=low | ||
873 | |||
874 | * Preserve /etc/ssh/sshd_config ownership/permissions (closes: #276754). | ||
875 | * Shorten the version string from the form "OpenSSH_3.8.1p1 Debian | ||
876 | 1:3.8.1p1-8.sarge.1" to "OpenSSH_3.8.1p1 Debian-8.sarge.1", as some SSH | ||
877 | implementations apparently have problems with the long version string. | ||
878 | This is of course a bug in those implementations, but since the extent | ||
879 | of the problem is unknown it's best to play safe (closes: #275731). | ||
880 | * debconf template translations: | ||
881 | - Add Finnish (thanks, Matti Pöllä; closes: #265339). | ||
882 | - Update Danish (thanks, Morten Brix Pedersen; closes: #275895). | ||
883 | - Update French (thanks, Denis Barbier; closes: #276703). | ||
884 | - Update Japanese (thanks, Kenshi Muto; closes: #277438). | ||
885 | |||
886 | -- Colin Watson <cjwatson@debian.org> Sun, 24 Oct 2004 17:57:14 +0100 | ||
887 | |||
888 | openssh (1:3.8.1p1-8.sarge.1) unstable; urgency=high | ||
889 | |||
890 | * If PasswordAuthentication is disabled, then offer to disable | ||
891 | ChallengeResponseAuthentication too. The current PAM code will attempt | ||
892 | password-style authentication if ChallengeResponseAuthentication is | ||
893 | enabled (closes: #250369). | ||
894 | * This will ask a question of anyone who installed fresh with 1:3.8p1-2 or | ||
895 | later and then upgraded. Sorry about that ... for this reason, the | ||
896 | default answer is to leave ChallengeResponseAuthentication enabled. | ||
897 | |||
898 | -- Colin Watson <cjwatson@debian.org> Wed, 6 Oct 2004 14:21:55 +0100 | ||
899 | |||
900 | openssh (1:3.8.1p1-8) unstable; urgency=high | ||
901 | |||
902 | * Matthew Vernon: | ||
903 | - Add a GPL exception to the licensing terms of the Debian patch | ||
904 | (closes: #211644). | ||
905 | |||
906 | -- Colin Watson <cjwatson@debian.org> Thu, 29 Jul 2004 13:28:47 +0100 | ||
907 | |||
908 | openssh (1:3.8.1p1-7) unstable; urgency=low | ||
909 | |||
910 | * Re-enable shadow password support in openssh-server-udeb, at Bastian | ||
911 | Blank's request (closes: #260800). | ||
912 | |||
913 | -- Colin Watson <cjwatson@debian.org> Thu, 22 Jul 2004 10:56:06 +0100 | ||
914 | |||
915 | openssh (1:3.8.1p1-6) unstable; urgency=low | ||
916 | |||
917 | * Implement hack in | ||
918 | http://lists.debian.org/debian-boot/2004/07/msg01207.html to get | ||
919 | openssh-client-udeb to show up as a retrievable debian-installer | ||
920 | component. | ||
921 | * Generate host keys in postinst only if the relevant HostKey directives | ||
922 | are found in sshd_config (closes: #87946). | ||
923 | |||
924 | -- Colin Watson <cjwatson@debian.org> Wed, 21 Jul 2004 15:14:46 +0100 | ||
925 | |||
926 | openssh (1:3.8.1p1-5) unstable; urgency=medium | ||
927 | |||
928 | * Update German debconf template translation (thanks, Helge Kreutzmann; | ||
929 | closes: #252226). | ||
930 | * Remove Suggests: dnsutils, as it was only needed for | ||
931 | make-ssh-known-hosts (#93265), which has been replaced by ssh-keyscan. | ||
932 | * Disable shadow password support in openssh-server-udeb. | ||
933 | * Fix non-portable shell constructs in maintainer scripts, Makefile, and | ||
934 | ssh-copy-id (thanks, David Weinehall; closes: #258517). | ||
935 | * Apply patch from Darren Tucker to make the PAM authentication SIGCHLD | ||
936 | handler kill the PAM thread if its waitpid() call returns 0, as well as | ||
937 | the previous check for -1 (closes: #252676). | ||
938 | * Add scp and sftp to openssh-client-udeb. It might not be very 'u' any | ||
939 | more; oh well. | ||
940 | |||
941 | -- Colin Watson <cjwatson@debian.org> Sat, 10 Jul 2004 13:57:27 +0100 | ||
942 | |||
943 | openssh (1:3.8.1p1-4) unstable; urgency=medium | ||
944 | |||
945 | * Kill off PAM thread if privsep slave dies (closes: #248125). | ||
946 | |||
947 | -- Colin Watson <cjwatson@debian.org> Fri, 28 May 2004 17:58:45 -0300 | ||
948 | |||
949 | openssh (1:3.8.1p1-3) unstable; urgency=low | ||
950 | |||
951 | * Add ssh-keygen to openssh-server-udeb. | ||
952 | |||
953 | -- Colin Watson <cjwatson@debian.org> Thu, 20 May 2004 16:31:52 +0100 | ||
954 | |||
955 | openssh (1:3.8.1p1-2) unstable; urgency=low | ||
956 | |||
957 | * Add Catalan debconf template translation (thanks, Aleix Badia i Bosch; | ||
958 | closes: #248748). | ||
959 | * openssh-client-udeb and openssh-server-udeb depend on libnss-files-udeb | ||
960 | (not yet uploaded). | ||
961 | * Restore ssh-askpass-gnome binary, lost by mistake. | ||
962 | * Don't link against libnsl in udeb builds. | ||
963 | |||
964 | -- Colin Watson <cjwatson@debian.org> Thu, 20 May 2004 11:15:58 +0100 | ||
965 | |||
966 | openssh (1:3.8.1p1-1) unstable; urgency=low | ||
967 | |||
968 | * New upstream release. | ||
969 | - Use a longer buffer for tty names in utmp (closes: #247538). | ||
970 | * Make sure there's a newline at the end of sshd_config before adding | ||
971 | 'UsePAM yes' (closes: #244829). | ||
972 | * Generate a new .orig.tar.gz without RFC.nroff, and remove | ||
973 | /usr/share/doc/ssh/RFC.gz (closes: #211640). It isn't DFSG-free and only | ||
974 | documents the obsolete SSH1 protocol, not to mention that it was never a | ||
975 | real RFC but only an Internet-Draft. It's available from | ||
976 | http://www.free.lp.se/bamse/draft-ylonen-ssh-protocol-00.txt if you want | ||
977 | it for some reason. | ||
978 | * Add openssh-client-udeb and openssh-server-udeb binary packages for use | ||
979 | in debian-installer. They still need libnss_files to be supplied in udeb | ||
980 | form by glibc. | ||
981 | * Work around lack of res_query weak alias in libresolv on amd64 (see | ||
982 | #242462, awaiting real fix upstream). | ||
983 | * Fix grammar in sshd(8) (closes: #238753). | ||
984 | * Add .desktop file and icon for ssh-askpass-gnome (closes: #232333). | ||
985 | * Update Polish debconf template translation (thanks, Emil Nowak; | ||
986 | closes: #242808). | ||
987 | * Add Turkish debconf template translation (thanks, Recai OktaÅŸ; | ||
988 | closes: #246068). | ||
989 | |||
990 | -- Colin Watson <cjwatson@debian.org> Tue, 11 May 2004 23:38:10 +0100 | ||
991 | |||
992 | openssh (1:3.8p1-3) unstable; urgency=low | ||
993 | |||
994 | * Remove deprecated ReverseMappingCheck option from newly generated | ||
995 | sshd_config files (closes: #239987). | ||
996 | * Build everything apart from contrib in a subdirectory, to allow for | ||
997 | multiple builds. | ||
998 | * Some older kernels are missing setresuid() and setresgid(), so don't try | ||
999 | to use them. setreuid() and setregid() will do well enough for our | ||
1000 | purposes (closes: #239999). | ||
1001 | |||
1002 | -- Colin Watson <cjwatson@debian.org> Mon, 5 Apr 2004 21:23:43 +0100 | ||
1003 | |||
1004 | openssh (1:3.8p1-2) unstable; urgency=medium | ||
1005 | |||
1006 | * Disable PasswordAuthentication for new installations (closes: #236810). | ||
1007 | * Turn off the new ForwardX11Trusted by default, returning to the | ||
1008 | semantics of 3.7 and earlier, since it seems immature and causes far too | ||
1009 | many problems with existing setups. See README.Debian for details | ||
1010 | (closes: #237021). | ||
1011 | |||
1012 | -- Colin Watson <cjwatson@debian.org> Wed, 10 Mar 2004 10:33:07 +0000 | ||
1013 | |||
1014 | openssh (1:3.8p1-1) unstable; urgency=low | ||
1015 | |||
1016 | * New upstream release (closes: #232281): | ||
1017 | - New PAM implementation based on that in FreeBSD. This runs PAM session | ||
1018 | modules before dropping privileges (closes: #132681, #150968). | ||
1019 | - Since PAM session modules are run as root, we can turn pam_limits back | ||
1020 | on by default, and it no longer spits out "Operation not permitted" to | ||
1021 | syslog (closes: #171673). | ||
1022 | - Password expiry works again (closes: #153235). | ||
1023 | - 'ssh -q' suppresses login banner (closes: #134589). | ||
1024 | - sshd doesn't lie to PAM about invalid usernames (closes: #157078). | ||
1025 | - ssh-add prints key comment on each prompt (closes: #181869). | ||
1026 | - Punctuation formatting fixed in man pages (closes: #191131). | ||
1027 | - EnableSSHKeysign documented in ssh_config(5) (closes: #224457). | ||
1028 | * Add 'UsePAM yes' to /etc/ssh/sshd_config on upgrade from versions older | ||
1029 | than this, to maintain the standard Debian sshd configuration. | ||
1030 | * Comment out PAMAuthenticationViaKbdInt and RhostsAuthentication in | ||
1031 | sshd_config on upgrade. Neither option is supported any more. | ||
1032 | * Privilege separation and PAM are now properly supported together, so | ||
1033 | remove both debconf questions related to them and simply set it | ||
1034 | unconditionally in newly generated sshd_config files (closes: #228838). | ||
1035 | * ServerAliveInterval implemented upstream, so ProtocolKeepAlives is now a | ||
1036 | compatibility alias. The semantics differ slightly, though; see | ||
1037 | ssh_config(5) for details. | ||
1038 | * Implement SSH1 support for ServerAliveInterval using SSH_MSG_IGNORE. As | ||
1039 | documented in ssh_config(5), it's not as good as the SSH2 version. | ||
1040 | * Remove -fno-builtin-log, -DHAVE_MMAP_ANON_SHARED, and | ||
1041 | -D__FILE_OFFSET_BITS=64 compiler options, which are no longer necessary. | ||
1042 | * Update config.guess and config.sub from autotools-dev 20040105.1. | ||
1043 | * Darren Tucker: | ||
1044 | - Reset signal status when starting pam auth thread, prevent hanging | ||
1045 | during PAM keyboard-interactive authentications. | ||
1046 | - Fix a non-security-critical segfault in PAM authentication. | ||
1047 | * Add debconf template translations: | ||
1048 | - Greek (thanks, Konstantinos Margaritis; closes: #232843). | ||
1049 | - Italian (thanks, Renato Gini; closes: #234777). | ||
1050 | |||
1051 | -- Colin Watson <cjwatson@debian.org> Sat, 6 Mar 2004 18:43:44 +0000 | ||
1052 | |||
1053 | openssh (1:3.6.1p2-12) unstable; urgency=low | ||
1054 | |||
1055 | * Update Spanish debconf template translation (thanks, Javier | ||
1056 | Fernández-Sanguino Peña; closes: #228242). | ||
1057 | * Add debconf template translations: | ||
1058 | - Czech (thanks, Miroslav Kure; closes: #230110). | ||
1059 | - Simplified Chinese (thanks, Hiei Xu; closes: #230726). | ||
1060 | |||
1061 | -- Colin Watson <cjwatson@debian.org> Wed, 11 Feb 2004 09:37:57 +0000 | ||
1062 | |||
1063 | openssh (1:3.6.1p2-11) unstable; urgency=low | ||
1064 | |||
1065 | * Comment out pam_limits in default configuration, for now at least | ||
1066 | (closes: #198254). | ||
1067 | * Use invoke-rc.d (if it exists) to run the init script. | ||
1068 | * Backport format string bug fix in sshconnect.c (closes: #225238). | ||
1069 | * ssh-copy-id exits if ssh fails (closes: #215252). | ||
1070 | |||
1071 | -- Colin Watson <cjwatson@debian.org> Sun, 4 Jan 2004 18:59:21 +0000 | ||
1072 | |||
1073 | openssh (1:3.6.1p2-10) unstable; urgency=low | ||
1074 | |||
1075 | * Use --retry in init script when restarting rather than sleeping, to make | ||
1076 | sure the old process is dead (thanks, Herbert Xu; closes: #212117). | ||
1077 | Depend on dpkg (>= 1.9.0) for start-stop-daemon's --retry option. | ||
1078 | * Update debconf template translations: | ||
1079 | - Brazilian Portuguese (thanks, Andre Luis Lopes; closes: #219844). | ||
1080 | - Danish (thanks, Morten Brix Pedersen; closes: #217964). | ||
1081 | - Japanese (thanks, Kenshi Muto; closes: #212497). | ||
1082 | - Russian (thanks, Ilgiz Kalmetev). | ||
1083 | - Spanish (thanks, Carlos Valdivia Yagüe; closes: #211832). | ||
1084 | * Add Dutch debconf template translation (thanks, cobaco; | ||
1085 | closes: #215372). | ||
1086 | * Update config.guess and config.sub from autotools-dev 20031007.1 | ||
1087 | (closes: #217696). | ||
1088 | * Implement New World Order for PAM configuration, including | ||
1089 | /etc/pam.d/common-* from /etc/pam.d/ssh (closes: #212959). | ||
1090 | - To backport this release to woody, you need to set DEB_BUILD_SSH_WOODY | ||
1091 | in your environment. See README.Debian. | ||
1092 | * Add more commentary to /etc/pam.d/ssh. | ||
1093 | |||
1094 | -- Colin Watson <cjwatson@debian.org> Sun, 16 Nov 2003 01:14:16 +0000 | ||
1095 | |||
1096 | openssh (1:3.6.1p2-9) unstable; urgency=high | ||
1097 | |||
1098 | * Merge even more buffer allocation fixes from upstream (CAN-2003-0682; | ||
1099 | closes: #211434). | ||
1100 | |||
1101 | -- Colin Watson <cjwatson@debian.org> Fri, 19 Sep 2003 10:25:25 +0100 | ||
1102 | |||
1103 | openssh (1:3.6.1p2-8) unstable; urgency=high | ||
1104 | |||
1105 | * Merge more buffer allocation fixes from new upstream version 3.7.1p1 | ||
1106 | (closes: #211324). | ||
1107 | |||
1108 | -- Colin Watson <cjwatson@debian.org> Wed, 17 Sep 2003 03:07:19 +0100 | ||
1109 | |||
1110 | openssh (1:3.6.1p2-7) unstable; urgency=high | ||
1111 | |||
1112 | * Update debconf template translations: | ||
1113 | - French (thanks, Christian Perrier; closes: #208801). | ||
1114 | - Japanese (thanks, Kenshi Muto; closes: #210380). | ||
1115 | * Some small improvements to the English templates courtesy of Christian | ||
1116 | Perrier. I've manually unfuzzied a few translations where it was | ||
1117 | obvious, on Christian's advice, but the others will have to be updated. | ||
1118 | * Document how to generate an RSA1 host key (closes: #141703). | ||
1119 | * Incorporate NMU fix for early buffer expansion vulnerability, | ||
1120 | CAN-2003-0693 (closes: #211205). Thanks to Michael Stone. | ||
1121 | |||
1122 | -- Colin Watson <cjwatson@debian.org> Tue, 16 Sep 2003 14:32:28 +0100 | ||
1123 | |||
1124 | openssh (1:3.6.1p2-6.0) unstable; urgency=high | ||
1125 | |||
1126 | * SECURITY: fix for CAN-2003-0693, buffer allocation error | ||
1127 | |||
1128 | -- Michael Stone <mstone@debian.org> Tue, 16 Sep 2003 08:27:07 -0400 | ||
1129 | |||
1130 | openssh (1:3.6.1p2-6) unstable; urgency=medium | ||
1131 | |||
1132 | * Use a more CVS-friendly means of setting SSH_VERSION. | ||
1133 | * Update Brazilian Portuguese debconf template translation (thanks, Andre | ||
1134 | Luis Lopes; closes: #208036). | ||
1135 | * Don't run 'sshd -t' in init script if the server isn't to be run | ||
1136 | (closes: #197576). | ||
1137 | * Fix login delay, spurious auth.log entry, and PermitRootLogin | ||
1138 | information leakage due to PAM issues with upstream's recent security | ||
1139 | update (thanks, Darren Tucker; closes: #99168, #192207, #193546). | ||
1140 | * Policy version 3.6.1: recode this changelog to UTF-8. | ||
1141 | |||
1142 | -- Colin Watson <cjwatson@debian.org> Wed, 3 Sep 2003 19:14:02 +0100 | ||
1143 | |||
1144 | openssh (1:3.6.1p2-5) unstable; urgency=low | ||
1145 | |||
1146 | * Disable cmsg_type check for file descriptor passing when running on | ||
1147 | Linux 2.0 (closes: #150976). Remove comments about non-functional | ||
1148 | privilege separation on 2.0 from ssh/privsep_ask and ssh/privsep_tell | ||
1149 | debconf questions and from README.Debian, since it should all now work. | ||
1150 | * Fix "defails" typo in generated sshd_config (closes: #206484). | ||
1151 | * Backport upstream patch to strip trailing whitespace (including | ||
1152 | newlines) from configuration directives (closes: #192079). | ||
1153 | |||
1154 | -- Colin Watson <cjwatson@debian.org> Wed, 27 Aug 2003 02:19:57 +0100 | ||
1155 | |||
1156 | openssh (1:3.6.1p2-4) unstable; urgency=low | ||
1157 | |||
1158 | * getent can get just one key; no need to use grep (thanks, James Troup). | ||
1159 | * Move /usr/local/bin to the front of the default path, following | ||
1160 | /etc/login.defs (closes: #201150). | ||
1161 | * Remove specifics of problematic countries from package description | ||
1162 | (closes: #197040). | ||
1163 | * Update Spanish debconf template translation (thanks, Carlos Valdivia | ||
1164 | Yagüe; closes: #198456). | ||
1165 | * Backport upstream patch to pass monitor signals through to child | ||
1166 | (closes: #164797). | ||
1167 | |||
1168 | -- Colin Watson <cjwatson@debian.org> Sun, 27 Jul 2003 17:31:15 +0100 | ||
1169 | |||
1170 | openssh (1:3.6.1p2-3) unstable; urgency=low | ||
1171 | |||
1172 | * Update French debconf template translation (thanks, Christian Perrier; | ||
1173 | closes: #194323). | ||
1174 | * Version the adduser dependency for --no-create-home (closes: #195756). | ||
1175 | * Add a version of moduli(5), namely revision 1.7 of | ||
1176 | http://www.openbsd.org/cgi-bin/cvsweb/src/share/man/man5/moduli.5 with | ||
1177 | '/etc/moduli' changed to '/etc/ssh/moduli' throughout (closes: #196061). | ||
1178 | |||
1179 | -- Colin Watson <cjwatson@debian.org> Mon, 9 Jun 2003 02:51:35 +0100 | ||
1180 | |||
1181 | openssh (1:3.6.1p2-2) unstable; urgency=low | ||
1182 | |||
1183 | * Force /etc/default/ssh to be non-executable, since dpkg apparently | ||
1184 | doesn't deal with permissions changes on conffiles (closes: #192966). | ||
1185 | * Use debconf 0.5's seen flag rather than the deprecated isdefault. | ||
1186 | * Add GPL location to copyright file. | ||
1187 | * Remove debian/postinst.old. | ||
1188 | * Switch to po-debconf, with some careful manual use of po2debconf to | ||
1189 | ensure that the source package continues to build smoothly on woody | ||
1190 | (closes: #183986). | ||
1191 | * Update debconf template translations: | ||
1192 | - Brazilian Portugese (thanks, Andre Luis Lopes; see #183986). | ||
1193 | - Japanese (thanks, Tomohiro KUBOTA; closes: #192429). | ||
1194 | * Compile with -fno-builtin-log for now, otherwise gcc-3.3 complains | ||
1195 | "log.h:59: warning: conflicting types for built-in function `log'". The | ||
1196 | OpenSSH log() function has been renamed in upstream CVS. | ||
1197 | |||
1198 | -- Colin Watson <cjwatson@debian.org> Mon, 19 May 2003 01:52:38 +0100 | ||
1199 | |||
1200 | openssh (1:3.6.1p2-1) unstable; urgency=medium | ||
1201 | |||
1202 | * New upstream release, including fix for PAM user-discovery security hole | ||
1203 | (closes: #191681). | ||
1204 | * Fix ChallengeResponseAuthentication default in generated sshd_config | ||
1205 | (closes: #106037). | ||
1206 | * Put newlines after full stops in man page documentation for | ||
1207 | ProtocolKeepAlives and SetupTimeOut. | ||
1208 | * Policy version 3.5.9: support DEB_BUILD_OPTIONS=noopt, build | ||
1209 | gnome-ssh-askpass with -g and -Wall flags. | ||
1210 | * Really ask ssh/new_config debconf question before trying to fetch its | ||
1211 | value (closes: #188721). | ||
1212 | * On purge, remove only the files we know about in /etc/ssh rather than | ||
1213 | the whole thing, and remove the directory if that leaves it empty | ||
1214 | (closes: #176679). | ||
1215 | * ssh has depended on debconf for some time now with no complaints, so: | ||
1216 | - Simplify the postinst by relying on debconf being present. (The absent | ||
1217 | case was buggy anyway.) | ||
1218 | - Get rid of "if you have not installed debconf" text in README.Debian, | ||
1219 | and generally update the "/usr/bin/ssh not SUID" entry. | ||
1220 | * More README.Debian work: | ||
1221 | - Reorganize into "UPGRADE ISSUES" and "OTHER ISSUES", in an effort to | ||
1222 | make it easier for people to find the former. The upgrade issues | ||
1223 | should probably be sorted by version somehow. | ||
1224 | - Document X11UseLocalhost under "X11 Forwarding" (closes: #150913). | ||
1225 | * Fix setting of IP flags for interactive sessions (upstream bug #541). | ||
1226 | |||
1227 | -- Colin Watson <cjwatson@debian.org> Mon, 5 May 2003 17:47:40 +0100 | ||
1228 | |||
1229 | openssh (1:3.6.1p1-1) unstable; urgency=low | ||
1230 | |||
1231 | * New upstream release (thanks, Laurence J. Lane). | ||
1232 | * debian/control: ssh-askpass-gnome is now Section: gnome, following the | ||
1233 | override file. | ||
1234 | |||
1235 | -- Colin Watson <cjwatson@debian.org> Wed, 2 Apr 2003 00:51:02 +0100 | ||
1236 | |||
1237 | openssh (1:3.6p1-1) unstable; urgency=low | ||
1238 | |||
1239 | * New upstream release. | ||
1240 | - Workaround applied upstream for a bug in the interaction of glibc's | ||
1241 | getaddrinfo() with the Linux 2.2 kernel (closes: #155814). | ||
1242 | - As such, it should now be safe to remove --with-ipv4-default, so | ||
1243 | starting sshd with -6 is no longer necessary (closes: #79861 and lots | ||
1244 | of other merged bugs). | ||
1245 | - ssh-copy-id prints usage when run without arguments (closes: #71376). | ||
1246 | - scp exits 1 if ssh fails (closes: #138400). | ||
1247 | - sshd writes to utmp's ut_addr_v6 field in IPv6 mode (closes: #167867). | ||
1248 | - 'ssh-add -c' causes ssh-agent to ask the user each time a key is used | ||
1249 | (closes: #109795). | ||
1250 | * Install /etc/default/ssh non-executable (closes: #185537). | ||
1251 | |||
1252 | -- Colin Watson <cjwatson@debian.org> Mon, 31 Mar 2003 23:00:59 +0100 | ||
1253 | |||
1254 | openssh (1:3.5p1-5) unstable; urgency=low | ||
1255 | |||
1256 | * Add /etc/default/ssh (closes: #161049). | ||
1257 | * Run the init script under 'set -e' (closes: #175010). | ||
1258 | * Change the default superuser path to include /sbin, /usr/sbin, and | ||
1259 | /usr/local/sbin (closes: #128235, #151267). Using login.defs would be | ||
1260 | nice, but that belongs to another package. Without a defined API to | ||
1261 | retrieve its settings, parsing it is off-limits. | ||
1262 | * Build ssh-askpass-gnome with GNOME 2. The source package should still | ||
1263 | support building on stable with GNOME 1, using the alternate | ||
1264 | libgnome-dev build-dependency (thanks, Colin Walters; closes: #167582). | ||
1265 | |||
1266 | -- Colin Watson <cjwatson@debian.org> Sun, 9 Mar 2003 20:12:10 +0000 | ||
1267 | |||
1268 | openssh (1:3.5p1-4) unstable; urgency=low | ||
1269 | |||
1270 | * Point rlogin and rcp alternatives at slogin and scp respectively rather | ||
1271 | than ssh (closes: #121103, #151666). Fix alternative removal to match; | ||
1272 | previously it was completely wrong anyway. | ||
1273 | * Find out whether /etc/ssh/sshd_not_to_be_run exists and set the debconf | ||
1274 | question's default using that information, rather than using debconf as | ||
1275 | a registry. Other solutions may be better in the long run, but this is | ||
1276 | at least correct (thanks, Matthew Woodcraft; closes: #84725). | ||
1277 | * Stop using pam_lastlog, as it doesn't currently work well as a session | ||
1278 | module when privilege separation is enabled; it can usually read | ||
1279 | /var/log/lastlog but can't write to it. Instead, just use sshd's | ||
1280 | built-in support, already enabled by default (closes: #151297, #169938). | ||
1281 | * Use 'ssh-keygen -q' rather than redirecting output to /dev/null. | ||
1282 | * Add a "this may take some time" warning when creating host keys on | ||
1283 | installation (part of #110094). | ||
1284 | * When restarting via the init script, check for sshd_not_to_be_run after | ||
1285 | stopping sshd (idea from Tomas Pospisek; closes: #149850). | ||
1286 | * Append /usr/sbin:/sbin to the init script's $PATH, just in case of | ||
1287 | strangeness (closes: #115138). | ||
1288 | * Fix a dpkg-statoverride call to redirect stdout to /dev/null, not | ||
1289 | stderr. | ||
1290 | * Correct copyright file typo: "orignal" -> "original" (closes: #176490). | ||
1291 | * Rebuild with libssl0.9.7 (closes: #176983). | ||
1292 | * We're up to policy version 3.5.6. DEB_BUILD_OPTIONS stuff still needs to | ||
1293 | be looked at. | ||
1294 | |||
1295 | -- Colin Watson <cjwatson@debian.org> Sat, 18 Jan 2003 01:37:23 +0000 | ||
1296 | |||
1297 | openssh (1:3.5p1-3) unstable; urgency=low | ||
1298 | |||
1299 | * Happy new year! | ||
1300 | * Use getent rather than id to find out whether the sshd user exists | ||
1301 | (closes: #150974). | ||
1302 | * Remove some duplication from the postinst's ssh-keysign setuid code. | ||
1303 | * Replace db_text with db_input throughout debian/config. (db_text has | ||
1304 | been a compatibility wrapper since debconf 0.1.5.) | ||
1305 | * Warn about PermitUserEnvironment on upgrade (closes: #167895). | ||
1306 | * Use 'make install-nokeys', and disable unused debhelper commands, | ||
1307 | thereby forward-porting the last pieces of Zack Weinberg's patch | ||
1308 | (closes: #68341). | ||
1309 | * Move the man page for gnome-ssh-askpass from the ssh package to | ||
1310 | ssh-askpass-gnome (closes: #174449). | ||
1311 | * Build with -DLOGIN_NO_ENDOPT, since Debian's /bin/login doesn't accept | ||
1312 | '--' to terminate the list of options (closes: #171554). | ||
1313 | * Add Jonathan Amery's ssh-argv0 script (closes: #111341). | ||
1314 | * Update Danish debconf template (thanks, Morten Brix Pedersen; | ||
1315 | closes: #174757). | ||
1316 | * Document setgid ssh-agent's effect on certain environment variables in | ||
1317 | README.Debian (closes: #167974). | ||
1318 | * Document interoperability problems between scp and ssh.com's server in | ||
1319 | README.Debian, and suggest some workarounds (closes: #174662). | ||
1320 | |||
1321 | -- Colin Watson <cjwatson@debian.org> Wed, 1 Jan 2003 14:18:30 +0000 | ||
1322 | |||
1323 | openssh (1:3.5p1-2) unstable; urgency=low | ||
1324 | |||
1325 | * Mention in the ssh package description that it provides both ssh and | ||
1326 | sshd (closes: #99680). | ||
1327 | * Create a system group for ssh-agent, not a user group (closes: #167669). | ||
1328 | |||
1329 | -- Colin Watson <cjwatson@debian.org> Mon, 4 Nov 2002 13:43:53 +0000 | ||
1330 | |||
1331 | openssh (1:3.5p1-1) unstable; urgency=low | ||
1332 | |||
1333 | * New upstream release. | ||
1334 | - Fixes typo in ssh-add usage (closes: #152239). | ||
1335 | - Fixes 'PermitRootLogin forced-commands-only' (closes: #166184). | ||
1336 | - ~/.ssh/environment and environment= options in ~/.ssh/authorized_keys | ||
1337 | are deprecated for security reasons and will eventually go away. For | ||
1338 | now they can be re-enabled by setting 'PermitUserEnvironment yes' in | ||
1339 | sshd_config. | ||
1340 | - ssh-agent is installed setgid to prevent ptrace() attacks. The group | ||
1341 | actually doesn't matter, as it drops privileges immediately, but to | ||
1342 | avoid confusion the postinst creates a new 'ssh' group for it. | ||
1343 | * Obsolete patches: | ||
1344 | - Solar Designer's privsep+compression patch for Linux 2.2 (see | ||
1345 | 1:3.3p1-0.0woody1). | ||
1346 | - Hostbased auth ssh-keysign backport (see 1:3.4p1-4). | ||
1347 | |||
1348 | * Remove duplicated phrase in ssh_config(5) (closes: #152404). | ||
1349 | * Source the debconf confmodule at the top of the postrm rather than at | ||
1350 | the bottom, to avoid making future non-idempotency problems worse (see | ||
1351 | #151035). | ||
1352 | * Debconf templates: | ||
1353 | - Add Polish (thanks, Grzegorz Kusnierz). | ||
1354 | - Update French (thanks, Denis Barbier; closes: #132509). | ||
1355 | - Update Spanish (thanks, Carlos Valdivia Yagüe; closes: #164716). | ||
1356 | * Write a man page for gnome-ssh-askpass, and link it to ssh-askpass.1 if | ||
1357 | this is the selected ssh-askpass alternative (closes: #67775). | ||
1358 | |||
1359 | -- Colin Watson <cjwatson@debian.org> Sat, 26 Oct 2002 19:41:51 +0100 | ||
1360 | |||
1361 | openssh (1:3.4p1-4) unstable; urgency=low | ||
1362 | |||
1363 | * Allow ssh-krb5 in ssh-askpass-gnome's dependencies (closes: #129532). | ||
1364 | * Restore Russia to list of countries where encryption is problematic (see | ||
1365 | #148951 and http://www.average.org/freecrypto/). | ||
1366 | * Drop ssh-askpass-gnome's priority to optional, per the override file. | ||
1367 | * Drop the PAM special case for hurd-i386 (closes: #99157). | ||
1368 | * s/dile/idle/ in ssh_config(5) (closes: #118331). | ||
1369 | * Note in README.Debian that you need xauth from xbase-clients on the | ||
1370 | server for X11 forwarding (closes: #140269). | ||
1371 | * Use correct path to upstream README in copyright file (closes: #146037). | ||
1372 | * Document the units for ProtocolKeepAlives (closes: #159479). | ||
1373 | * Backport upstream patch to fix hostbased auth (closes: #117114). | ||
1374 | * Add -g to CFLAGS. | ||
1375 | |||
1376 | -- Colin Watson <cjwatson@debian.org> Sun, 13 Oct 2002 18:58:53 +0100 | ||
1377 | |||
1378 | openssh (1:3.4p1-3) unstable; urgency=low | ||
1379 | |||
1380 | * Add myself to Uploaders: and begin acting as temporary maintainer, at | ||
1381 | Matthew's request. (Normal service will resume in some months' time.) | ||
1382 | * Add sharutils to Build-Depends (closes: #138465). | ||
1383 | * Stop creating the /usr/doc/ssh symlink. | ||
1384 | |||
1385 | * Fix some debconf template typos (closes: #160358). | ||
1386 | * Split debconf templates into one file per language. | ||
1387 | * Add debconf template translations: | ||
1388 | - Brazilian Portuguese (thanks, Andre Luis Lopes; closes: #106173). | ||
1389 | - Danish (thanks, Claus Hindsgaul; closes: #126607). | ||
1390 | - Japanese (thanks, Tomohiro KUBOTA; closes: #137427). | ||
1391 | - Russian (thanks, Ilgiz Kalmetev; closes: #136610). | ||
1392 | - Spanish (thanks, Carlos Valdivia Yagüe; closes: #129041). | ||
1393 | * Update debconf template translations: | ||
1394 | - French (thanks, Igor Genibel; closes: #151361). | ||
1395 | - German (thanks, Axel Noetzold; closes: #147069). | ||
1396 | * Some of these translations are fuzzy. Please send updates. | ||
1397 | |||
1398 | -- Colin Watson <cjwatson@debian.org> Sun, 13 Oct 2002 14:09:57 +0100 | ||
1399 | |||
1400 | openssh (1:3.4p1-2) unstable; urgency=high | ||
1401 | |||
1402 | * Get a security-fixed version into unstable | ||
1403 | * Also tidy README.Debian up a little | ||
1404 | |||
1405 | -- Matthew Vernon <matthew@debian.org> Fri, 28 Jun 2002 17:20:59 +0100 | ||
1406 | |||
1407 | openssh (1:3.4p1-1) testing; urgency=high | ||
1408 | |||
1409 | * Extend my tendrils back into this package (Closes: #150915, #151098) | ||
1410 | * thanks to the security team for their work | ||
1411 | * no thanks to ISS/Theo de Raadt for their handling of these bugs | ||
1412 | * save old sshd_configs to sshd_config.dpkg-old when auto-generating a | ||
1413 | new one | ||
1414 | * tell/ask the user about PriviledgeSeparation | ||
1415 | * /etc/init.d/ssh run will now create the chroot empty dir if necessary | ||
1416 | * Remove our previous statoverride on /usr/bin/ssh (only for people | ||
1417 | upgrading from a version where we'd put one in ourselves!) | ||
1418 | * Stop slandering Russia, since someone asked so nicely (Closes: #148951) | ||
1419 | * Reduce the sleep time in /etc/init.d/ssh during a restart | ||
1420 | |||
1421 | -- Matthew Vernon <matthew@debian.org> Fri, 28 Jun 2002 15:52:10 +0100 | ||
1422 | |||
1423 | openssh (1:3.4p1-0.0woody1) testing-security; urgency=high | ||
1424 | |||
1425 | * NMU by the security team. | ||
1426 | * New upstream version | ||
1427 | |||
1428 | -- Michael Stone <mstone@debian.org> Wed, 26 Jun 2002 15:40:38 -0400 | ||
1429 | |||
1430 | openssh (1:3.3p1-0.0woody4) testing-security; urgency=high | ||
1431 | |||
1432 | * NMU by the security team. | ||
1433 | * fix error when /etc/ssh/sshd_config exists on new install | ||
1434 | * check that user doesn't exist before running adduser | ||
1435 | * use openssl internal random unconditionally | ||
1436 | |||
1437 | -- Michael Stone <mstone@debian.org> Tue, 25 Jun 2002 19:44:39 -0400 | ||
1438 | |||
1439 | openssh (1:3.3p1-0.0woody3) testing-security; urgency=high | ||
1440 | |||
1441 | * NMU by the security team. | ||
1442 | * use correct home directory when sshd user is created | ||
1443 | |||
1444 | -- Michael Stone <mstone@debian.org> Tue, 25 Jun 2002 08:59:50 -0400 | ||
1445 | |||
1446 | openssh (1:3.3p1-0.0woody2) testing-security; urgency=high | ||
1447 | |||
1448 | * NMU by the security team. | ||
1449 | * Fix rsa1 key creation (Closes: #150949) | ||
1450 | * don't fail if sshd user removal fails | ||
1451 | * depends: on adduser (Closes: #150907) | ||
1452 | |||
1453 | -- Michael Stone <mstone@debian.org> Tue, 25 Jun 2002 08:59:50 -0400 | ||
1454 | |||
1455 | openssh (1:3.3p1-0.0woody1) testing-security; urgency=high | ||
1456 | |||
1457 | * NMU by the security team. | ||
1458 | * New upstream version. | ||
1459 | - Enable privilege separation by default. | ||
1460 | * Include patch from Solar Designer for privilege separation and | ||
1461 | compression on 2.2.x kernels. | ||
1462 | * Remove --disable-suid-ssh from configure. | ||
1463 | * Support setuid ssh-keysign binary instead of setuid ssh client. | ||
1464 | * Check sshd configuration before restarting. | ||
1465 | |||
1466 | -- Daniel Jacobowitz <dan@debian.org> Mon, 24 Jun 2002 13:43:44 -0400 | ||
1467 | |||
1468 | openssh (1:3.0.2p1-9) unstable; urgency=high | ||
1469 | |||
1470 | * Thanks to those who NMUd | ||
1471 | * The only change in this version is to debian/control - I've removed | ||
1472 | the bit that says you can't export it from the US - it would look | ||
1473 | pretty daft to say this about a package in main! Also, it's now OK | ||
1474 | to use crypto in France, so I've edited that comment slightly | ||
1475 | * Correct a path in README.Debian too (Closes: #138634) | ||
1476 | |||
1477 | -- Matthew Vernon <matthew@debian.org> Sun, 4 Apr 2002 09:52:59 +0100 | ||
1478 | |||
1479 | openssh (1:3.0.2p1-8.3) unstable; urgency=medium | ||
1480 | |||
1481 | * NMU | ||
1482 | * Really set urgency to medium this time (oops) | ||
1483 | * Fix priority to standard per override while I'm at it | ||
1484 | |||
1485 | -- Aaron M. Ucko <ucko@debian.org> Sun, 24 Mar 2002 09:00:08 -0500 | ||
1486 | |||
1487 | openssh (1:3.0.2p1-8.2) unstable; urgency=low | ||
1488 | |||
1489 | * NMU with maintainer's permission | ||
1490 | * Prepare for upcoming ssh-nonfree transitional packages per | ||
1491 | <http://lists.debian.org/debian-ssh/2002/debian-ssh-200203/msg00008.html> | ||
1492 | * Urgency medium because it would really be good to get this into woody | ||
1493 | before it releases | ||
1494 | * Fix sections to match override file | ||
1495 | * Reissued due to clash with non-US -> main move | ||
1496 | |||
1497 | -- Aaron M. Ucko <ucko@debian.org> Sat, 23 Mar 2002 21:21:52 -0500 | ||
1498 | |||
1499 | openssh (1:3.0.2p1-8.1) unstable; urgency=low | ||
1500 | |||
1501 | * NMU | ||
1502 | * Move from non-US to mani | ||
1503 | |||
1504 | -- LaMont Jones <lamont@debian.org> Thu, 21 Mar 2002 09:33:50 -0700 | ||
1505 | |||
1506 | openssh (1:3.0.2p1-8) unstable; urgency=critical | ||
1507 | |||
1508 | * Security fix - patch from upstream (Closes: #137209, #137210) | ||
1509 | * Undo the changes in the unreleased -7, since they appear to break | ||
1510 | things here. Accordingly, the code change is minimal, and I'm | ||
1511 | happy to get it into testing ASAP | ||
1512 | |||
1513 | -- Matthew Vernon <matthew@debian.org> Thu, 7 Mar 2002 14:25:23 +0000 | ||
1514 | |||
1515 | openssh (1:3.0.2p1-7) unstable; urgency=high | ||
1516 | |||
1517 | * Build to support IPv6 and IPv4 by default again | ||
1518 | |||
1519 | -- Matthew Vernon <matthew@debian.org> Sat, 2 Mar 2002 00:25:05 +0000 | ||
1520 | |||
1521 | openssh (1:3.0.2p1-6) unstable; urgency=high | ||
1522 | |||
1523 | * Correct error in the clean target (Closes: #130868) | ||
1524 | |||
1525 | -- Matthew Vernon <matthew@debian.org> Sat, 26 Jan 2002 00:32:00 +0000 | ||
1526 | |||
1527 | openssh (1:3.0.2p1-5) unstable; urgency=medium | ||
1528 | |||
1529 | * Include the Debian version in our identification, to make it easier to | ||
1530 | audit networks for patched versions in future | ||
1531 | |||
1532 | -- Matthew Vernon <matthew@debian.org> Mon, 21 Jan 2002 17:16:10 +0000 | ||
1533 | |||
1534 | openssh (1:3.0.2p1-4) unstable; urgency=medium | ||
1535 | |||
1536 | * If we're asked to not run sshd, stop any running sshd's first | ||
1537 | (Closes: #129327) | ||
1538 | |||
1539 | -- Matthew Vernon <matthew@debian.org> Wed, 16 Jan 2002 21:24:16 +0000 | ||
1540 | |||
1541 | openssh (1:3.0.2p1-3) unstable; urgency=high | ||
1542 | |||
1543 | * Fix /etc/pam.d/ssh to not set $MAIL (Closes: #128913) | ||
1544 | * Remove extra debconf suggestion (Closes: #128094) | ||
1545 | * Mmm. speedy bug-fixing :-) | ||
1546 | |||
1547 | -- Matthew Vernon <matthew@debian.org> Sat, 12 Jan 2002 17:23:58 +0000 | ||
1548 | |||
1549 | openssh (1:3.0.2p1-2) unstable; urgency=high | ||
1550 | |||
1551 | * Fix postinst to not automatically overwrite sshd_config (!) | ||
1552 | (Closes: #127842, #127867) | ||
1553 | * Add section in README.Debian about the PermitRootLogin setting | ||
1554 | |||
1555 | -- Matthew Vernon <matthew@debian.org> Sat, 5 Jan 2003 05:26:30 +0000 | ||
1556 | |||
1557 | openssh (1:3.0.2p1-1) unstable; urgency=high | ||
1558 | |||
1559 | * Incorporate fix from Colin's NMU | ||
1560 | * New upstream version (fixes the bug Wichert fixed) (Closes: #124035) | ||
1561 | * Capitalise IETF (Closes: #125379) | ||
1562 | * Refer to the correct sftp-server location (Closes: #126854, #126224) | ||
1563 | * Do what we're asked re SetUID ssh (Closes: #124065, #124154, #123247) | ||
1564 | * Ask people upgrading from potato if they want a new conffile | ||
1565 | (Closes: #125642) | ||
1566 | * Fix a typo in postinst (Closes: #122192, #122410, #123440) | ||
1567 | * Frob the default config a little (Closes: #122284, #125827, #125696, | ||
1568 | #123854) | ||
1569 | * Make /etc/init.d/ssh be more clear about ssh not running (Closes: | ||
1570 | #123552) | ||
1571 | * Fix typo in templates file (Closes: #123411) | ||
1572 | |||
1573 | -- Matthew Vernon <matthew@debian.org> Fri, 4 Jan 2002 16:01:52 +0000 | ||
1574 | |||
1575 | openssh (1:3.0.1p1-1.2) unstable; urgency=high | ||
1576 | |||
1577 | * Non-maintainer upload | ||
1578 | * Prevent local users from passing environment variables to the login | ||
1579 | process when UseLogin is enabled | ||
1580 | |||
1581 | -- Wichert Akkerman <wakkerma@debian.org> Mon, 3 Dec 2001 19:34:45 +0100 | ||
1582 | |||
1583 | openssh (1:3.0.1p1-1.1) unstable; urgency=low | ||
1584 | |||
1585 | * Non-maintainer upload, at Matthew's request. | ||
1586 | * Remove sa_restorer assignment to fix compilation on alpha, hppa, and | ||
1587 | ia64 (closes: #122086). | ||
1588 | |||
1589 | -- Colin Watson <cjwatson@debian.org> Sun, 2 Dec 2001 18:54:16 +0000 | ||
1590 | |||
1591 | openssh (1:3.0.1p1-1) unstable; urgency=high | ||
1592 | |||
1593 | * New upstream version (Closes: #113646, #113513, #114707, #118564) | ||
1594 | * Building with a libc that works (!) (Closes: #115228) | ||
1595 | * Patches forward-ported are -1/-2 options for scp, the improvement to | ||
1596 | 'waiting for forwarded connections to terminate...' | ||
1597 | * Fix /etc/init.d/ssh to stop sshd properly (Closes: #115228) | ||
1598 | * /etc/ssh/sshd_config is no longer a conffile but generated in the postinst | ||
1599 | * Remove suidregister leftover from postrm | ||
1600 | * Mention key we are making in the postinst | ||
1601 | * Default to not enable SSH protocol 1 support, since protocol 2 is | ||
1602 | much safer anyway. | ||
1603 | * New version of the vpn-fixes patch, from Ian Jackson | ||
1604 | * New handling of -q, and added new -qq option; thanks to Jon Amery | ||
1605 | * Experimental smartcard support not enabled, since I have no way of | ||
1606 | testing it. | ||
1607 | |||
1608 | -- Matthew Vernon <matthew@debian.org> Thu, 28 Nov 2001 17:43:01 +0000 | ||
1609 | |||
1610 | openssh (1:2.9p2-6) unstable; urgency=low | ||
1611 | |||
1612 | * check for correct file in /etc/init.d/ssh (Closes: #110876) | ||
1613 | * correct location of version 2 keys in ssh.1 (Closes: #110439) | ||
1614 | * call update-alternatives --quiet (Closes: #103314) | ||
1615 | * hack ssh-copy-id to chmod go-w (Closes: #95551) | ||
1616 | * TEMPORARY fix to provide largefile support using a -D in the cflags | ||
1617 | line. long-term, upstream will patch the autoconf stuff | ||
1618 | (Closes: #106809, #111849) | ||
1619 | * remove /etc/rc references in ssh-keygen.1 (Closes: #68350) | ||
1620 | * scp.1 patch from Adam McKenna to document -r properly (Closes: #76054) | ||
1621 | * Check for files containing a newline character (Closes: #111692) | ||
1622 | |||
1623 | -- Matthew Vernon <matthew@debian.org> Thu, 13 Sep 2001 16:47:36 +0100 | ||
1624 | |||
1625 | openssh (1:2.9p2-5) unstable; urgency=high | ||
1626 | |||
1627 | * Thanks to all the bug-fixers who helped! | ||
1628 | * remove sa_restorer assignment (Closes: #102837) | ||
1629 | * patch from Peter Benie to DTRT wrt X forwarding if the server refuses | ||
1630 | us access (Closes: #48297) | ||
1631 | * patch from upstream CVS to fix port forwarding (Closes: #107132) | ||
1632 | * patch from Jonathan Amery to document ssh-keygen behaviour | ||
1633 | (Closes:#106643, #107512) | ||
1634 | * patch to postinst from Jonathan Amery (Closes: #106411) | ||
1635 | * patch to manpage from Jonathan Amery (Closes: #107364) | ||
1636 | * patch from Matthew Vernon to make -q emit fatal errors as that is the | ||
1637 | documented behaviour (Closes: #64347) | ||
1638 | * patch from Ian Jackson to cause us to destroy a file when we scp it | ||
1639 | onto itself, rather than dumping bits of our memory into it, which was | ||
1640 | a security hole (see #51955) | ||
1641 | * patch from Jonathan Amery to document lack of Kerberos support | ||
1642 | (Closes: #103726) | ||
1643 | * patch from Matthew Vernon to make the 'waiting for connections to | ||
1644 | terminate' message more helpful (Closes: #50308) | ||
1645 | |||
1646 | -- Matthew Vernon <matthew@debian.org> Thu, 23 Aug 2001 02:14:09 +0100 | ||
1647 | |||
1648 | openssh (1:2.9p2-4) unstable; urgency=high | ||
1649 | |||
1650 | * Today's build of ssh is strawberry flavoured | ||
1651 | * Patch from mhp to reduce length of time sshd is stopped for (Closes: #106176) | ||
1652 | * Tidy up debconf template (Closes: #106152) | ||
1653 | * If called non-setuid, then setgid()'s failure should not be fatal (see | ||
1654 | #105854) | ||
1655 | |||
1656 | -- Matthew Vernon <matthew@debian.org> Sun, 22 Jul 2001 14:19:43 +0100 | ||
1657 | |||
1658 | openssh (1:2.9p2-3) unstable; urgency=low | ||
1659 | |||
1660 | * Patch from yours truly to add -1 and -2 options to scp (Closes: #106061) | ||
1661 | * Improve the IdentityFile section in the man page (Closes: #106038) | ||
1662 | |||
1663 | -- Matthew Vernon <matthew@debian.org> Sat, 21 Jul 2001 14:47:27 +0100 | ||
1664 | |||
1665 | openssh (1:2.9p2-2) unstable; urgency=low | ||
1666 | |||
1667 | * Document the protocol version 2 and IPV6 changes (Closes: #105845, #105868) | ||
1668 | * Make PrintLastLog 'no' by default (Closes: #105893) | ||
1669 | |||
1670 | -- Matthew Vernon <matthew@debian.org> Thu, 19 Jul 2001 18:36:41 +0100 | ||
1671 | |||
1672 | openssh (1:2.9p2-1) unstable; urgency=low | ||
1673 | |||
1674 | * new (several..) upstream version (Closes: #96726, #81856, #96335) | ||
1675 | * Hopefully, this will close some other bugs too | ||
1676 | |||
1677 | -- Matthew Vernon <matthew@debian.org> Tue, 17 Jul 2001 19:41:58 +0100 | ||
1678 | |||
1679 | openssh (1:2.5.2p2-3) unstable; urgency=low | ||
1680 | |||
1681 | * Taking Over this package | ||
1682 | * Patches from Robert Bihlmeyer for the Hurd (Closes: #102991) | ||
1683 | * Put PermitRootLogin back to yes (Closes: #67334, #67371, #78274) | ||
1684 | * Don't fiddle with conf-files any more (Closes: #69501) | ||
1685 | |||
1686 | -- Matthew Vernon <matthew@debian.org> Tue, 03 Jul 2001 02:58:13 +0100 | ||
1687 | |||
1688 | openssh (1:2.5.2p2-2.2) unstable; urgency=low | ||
1689 | |||
1690 | * NMU | ||
1691 | * Include Hurd compatibility patches from Robert Bihlmeyer (Closes: #76033) | ||
1692 | * Patch from Richard Kettlewell for protocolkeepalives (Closes: #99273) | ||
1693 | * Patch from Matthew Vernon for BannerTimeOut, batchmode, and | ||
1694 | documentation for protocolkeepalives. Makes ssh more generally useful | ||
1695 | for scripting uses (Closes: #82877, #99275) | ||
1696 | * Set a umask, so ourpidfile isn't world-writable (closes: #100012, | ||
1697 | #98286, #97391) | ||
1698 | |||
1699 | -- Matthew Vernon <matthew@debian.org> Thu, 28 Jun 2001 23:15:42 +0100 | ||
1700 | |||
1701 | openssh (1:2.5.2p2-2.1) unstable; urgency=low | ||
1702 | |||
1703 | * NMU | ||
1704 | * Remove duplicate Build-Depends for libssl096-dev and change it to | ||
1705 | depend on libssl-dev instaed. Also adding in virtual | real package | ||
1706 | style build-deps. (Closes: #93793, #75228) | ||
1707 | * Removing add-log entry (Closes: #79266) | ||
1708 | * This was a pam bug from a while back (Closes: #86908, #88457, #86843) | ||
1709 | * pam build-dep already exists (Closes: #93683) | ||
1710 | * libgnome-dev build-dep already exists (Closes: #93694) | ||
1711 | * No longer in non-free (Closes: #85401) | ||
1712 | * Adding in fr debconf translations (Closes: #83783) | ||
1713 | * Already suggests xbase-clients (Closes: #79741) | ||
1714 | * No need to suggest libpam-pwdb anymore (Closes: #81658) | ||
1715 | * Providing rsh-client (Closes: #79437) | ||
1716 | * hurd patch was already applied (Closes: #76033) | ||
1717 | * default set to no (Closes: #73682) | ||
1718 | * Adding in a suggests for dnsutils (Closes: #93265) | ||
1719 | * postinst bugs fixed (Closes: #88057, #88066, #88196, #88405, #88612) | ||
1720 | (Closes: #88774, #88196, #89556, #90123, #90228, #90833, #87814, #85465) | ||
1721 | * Adding in debconf dependency | ||
1722 | |||
1723 | -- Ivan E. Moore II <rkrusty@debian.org> Mon, 16 Apr 2001 14:11:04 +0100 | ||
1724 | |||
1725 | openssh (1:2.5.2p2-2) unstable; urgency=high | ||
1726 | |||
1727 | * disable the OpenSSL version check in entropy.c | ||
1728 | (closes: #93581, #93588, #93590, #93614, #93619, #93635, #93648) | ||
1729 | |||
1730 | -- Philip Hands <phil@uk.alcove.com> Wed, 11 Apr 2001 20:30:04 +0100 | ||
1731 | |||
1732 | openssh (1:2.5.2p2-1) unstable; urgency=low | ||
1733 | |||
1734 | * New upstream release | ||
1735 | * removed make-ssh-known-hosts, since ssh-keyscan does that job (closes: #86069, #87748) | ||
1736 | * fix double space indent in german templates (closes: #89493) | ||
1737 | * make postinst check for ssh_host_rsa_key | ||
1738 | * get rid of the last of the misguided debian/rules NMU debris :-/ | ||
1739 | |||
1740 | -- Philip Hands <phil@hands.com> Sat, 24 Mar 2001 20:59:33 +0000 | ||
1741 | |||
1742 | openssh (1:2.5.1p2-2) unstable; urgency=low | ||
1743 | |||
1744 | * rebuild with new debhelper (closes: #89558, #89536, #90225) | ||
1745 | * fix broken dpkg-statoverride test in postinst | ||
1746 | (closes: #89612, #90474, #90460, #89605) | ||
1747 | * NMU bug fixed but not closed in last upload (closes: #88206) | ||
1748 | |||
1749 | -- Philip Hands <phil@hands.com> Fri, 23 Mar 2001 16:11:33 +0000 | ||
1750 | |||
1751 | openssh (1:2.5.1p2-1) unstable; urgency=high | ||
1752 | |||
1753 | * New upstream release | ||
1754 | * fix typo in postinst (closes: #88110) | ||
1755 | * revert to setting PAM service name in debian/rules, backing out last | ||
1756 | NMU, which also (closes: #88101) | ||
1757 | * restore the pam lastlog/motd lines, lost during the NMUs, and sshd_config | ||
1758 | * restore printlastlog option patch | ||
1759 | * revert to using debhelper, which had been partially disabled in NMUs | ||
1760 | |||
1761 | -- Philip Hands <phil@hands.com> Tue, 13 Mar 2001 01:41:34 +0000 | ||
1762 | |||
1763 | openssh (1:2.5.1p1-1.8) unstable; urgency=high | ||
1764 | |||
1765 | * And now the old pam-bug s/sshd/ssh in ssh.c is also fixed | ||
1766 | |||
1767 | -- Christian Kurz <shorty@debian.org> Thu, 1 Mar 2001 19:48:01 +0100 | ||
1768 | |||
1769 | openssh (1:2.5.1p1-1.7) unstable; urgency=high | ||
1770 | |||
1771 | * And now we mark the correct binary as setuid, when a user requested | ||
1772 | to install it setuid. | ||
1773 | |||
1774 | -- Christian Kurz <shorty@debian.org> Thu, 1 Mar 2001 07:19:56 +0100 | ||
1775 | |||
1776 | openssh (1:2.5.1p1-1.6) unstable; urgency=high | ||
1777 | |||
1778 | * Fixes postinst to handle overrides that are already there. Damn, I | ||
1779 | should have noticed the bug earlier. | ||
1780 | |||
1781 | -- Christian Kurz <shorty@debian.org> Wed, 28 Feb 2001 22:35:00 +0100 | ||
1782 | |||
1783 | openssh (1:2.5.1p1-1.5) unstable; urgency=high | ||
1784 | |||
1785 | * Rebuild ssh with pam-support. | ||
1786 | |||
1787 | -- Christian Kurz <shorty@debian.org> Mon, 26 Feb 2001 21:55:51 +0100 | ||
1788 | |||
1789 | openssh (1:2.5.1p1-1.4) unstable; urgency=low | ||
1790 | |||
1791 | * Added Build-Depends on libssl096-dev. | ||
1792 | * Fixed sshd_config file to disallow root logins again. | ||
1793 | |||
1794 | -- Christian Kurz <shorty@debian.org> Sun, 25 Feb 2001 20:03:55 +0100 | ||
1795 | |||
1796 | openssh (1:2.5.1p1-1.3) unstable; urgency=low | ||
1797 | |||
1798 | * Fixed missing manpages for sftp.1 and ssh-keyscan.1 | ||
1799 | * Made package policy 3.5.2 compliant. | ||
1800 | |||
1801 | -- Christian Kurz <shorty@debian.org> Sun, 25 Feb 2001 15:46:26 +0100 | ||
1802 | |||
1803 | openssh (1:2.5.1p1-1.2) unstable; urgency=low | ||
1804 | |||
1805 | * Added Conflict with sftp, since we now provide our own sftp-client. | ||
1806 | * Added a fix for our broken dpkg-statoverride call in the | ||
1807 | 2.3.0p1-13. | ||
1808 | * Fixed some config pathes in the comments of sshd_config. | ||
1809 | * Removed ssh-key-exchange-vulnerability-patch since it's not needed | ||
1810 | anymore because upstream included the fix. | ||
1811 | |||
1812 | -- Christian Kurz <shorty@debian.org> Sun, 25 Feb 2001 13:46:58 +0100 | ||
1813 | |||
1814 | openssh (1:2.5.1p1-1.1) unstable; urgency=high | ||
1815 | |||
1816 | * Another NMU to get the new upstream version 2.5.1p1 into | ||
1817 | unstable. (Closes: #87123) | ||
1818 | * Corrected postinst to mark ssh as setuid. (Closes: #86391, #85766) | ||
1819 | * Key Exchange patch is already included by upstream. (Closes: #86015) | ||
1820 | * Upgrading should be possible now. (Closes: #85525, #85523) | ||
1821 | * Added --disable-suid-ssh as compile option, so ssh won't get installed | ||
1822 | suid per default. | ||
1823 | * Fixed postinst to run dpkg-statoverride only, when dpkg-statoverride | ||
1824 | is available and the mode of the binary should be 4755. And also added | ||
1825 | suggestion for a newer dpkg. | ||
1826 | (Closes: #85734, #85741, #86876) | ||
1827 | * sftp and ssh-keyscan will also be included from now on. (Closes: #79994) | ||
1828 | * scp now understands spaces in filenames (Closes: #53783, #58958, | ||
1829 | #66723) | ||
1830 | * ssh-keygen now supports showing DSA fingerprints. (Closes: #68623) | ||
1831 | * ssh doesn' t show motd anymore when switch -t is used. (Closes #69035) | ||
1832 | * ssh supports the usage of other dsa keys via the ssh command line | ||
1833 | options. (Closes: #81250) | ||
1834 | * Documentation in sshd_config fixed. (Closes: #81088) | ||
1835 | * primes file included by upstream and included now. (Closes: #82101) | ||
1836 | * scp now allows dots in the username. (Closes: #82477) | ||
1837 | * Spelling error in ssh-copy-id.1 corrected by upstream. (Closes: #78124) | ||
1838 | |||
1839 | -- Christian Kurz <shorty@debian.org> Sun, 25 Feb 2001 10:06:08 +0100 | ||
1840 | |||
1841 | openssh (1:2.3.0p1-1.13) unstable; urgency=low | ||
1842 | |||
1843 | * Config should now also be fixed with this hopefully last NMU. | ||
1844 | |||
1845 | -- Christian Kurz <shorty@debian.org> Sat, 10 Feb 2001 22:56:36 +0100 | ||
1846 | |||
1847 | openssh (1:2.3.0p1-1.12) unstable; urgency=high | ||
1848 | |||
1849 | * Added suggest for xbase-clients to control-file. (Closes #85227) | ||
1850 | * Applied patch from Markus Friedl to fix a vulnerability in | ||
1851 | the rsa keyexchange. | ||
1852 | * Fixed position of horizontal line. (Closes: #83613) | ||
1853 | * Fixed hopefully the grep problem in the config-file. (Closes: #78802) | ||
1854 | * Converted package from suidregister to dpkg-statoverride. | ||
1855 | |||
1856 | -- Christian Kurz <shorty@debian.org> Fri, 9 Feb 2001 19:43:55 +0100 | ||
1857 | |||
1858 | openssh (1:2.3.0p1-1.11) unstable; urgency=medium | ||
1859 | |||
1860 | * Fixed some typos in the german translation of the debconf | ||
1861 | template. | ||
1862 | |||
1863 | -- Christian Kurz <shorty@debian.org> Wed, 24 Jan 2001 18:22:38 +0100 | ||
1864 | |||
1865 | openssh (1:2.3.0p1-1.10) unstable; urgency=medium | ||
1866 | |||
1867 | * Fixed double printing of motd. (Closes: #82618) | ||
1868 | |||
1869 | -- Christian Kurz <shorty@debian.org> Tue, 23 Jan 2001 21:03:43 +0100 | ||
1870 | |||
1871 | openssh (1:2.3.0p1-1.9) unstable; urgency=high | ||
1872 | |||
1873 | * And the next NMU which includes the patch from Andrew Bartlett | ||
1874 | and Markus Friedl to fix the root privileges handling of openssh. | ||
1875 | (Closes: #82657) | ||
1876 | |||
1877 | -- Christian Kurz <shorty@debian.org> Wed, 17 Jan 2001 22:20:54 +0100 | ||
1878 | |||
1879 | openssh (1:2.3.0p1-1.8) unstable; urgency=high | ||
1880 | |||
1881 | * Applied fix from Ryan Murray to allow building on other architectures | ||
1882 | since the hurd patch was wrong. (Closes: #82471) | ||
1883 | |||
1884 | -- Christian Kurz <shorty@debian.org> Tue, 16 Jan 2001 22:45:51 +0100 | ||
1885 | |||
1886 | openssh (1:2.3.0p1-1.7) unstable; urgency=medium | ||
1887 | |||
1888 | * Fixed another typo on sshd_config | ||
1889 | |||
1890 | -- Christian Kurz <shorty@debian.org> Sun, 14 Jan 2001 19:01:31 +0100 | ||
1891 | |||
1892 | openssh (1:2.3.0p1-1.6) unstable; urgency=high | ||
1893 | |||
1894 | * Added Build-Dependency on groff (Closes: #81886) | ||
1895 | * Added Build-Depencency on debhelper (Closes: #82072) | ||
1896 | * Fixed entry for known_hosts in sshd_config (Closes: #82096) | ||
1897 | |||
1898 | -- Christian Kurz <shorty@debian.org> Thu, 11 Jan 2001 23:08:16 +0100 | ||
1899 | |||
1900 | openssh (1:2.3.0p1-1.5) unstable; urgency=high | ||
1901 | |||
1902 | * Fixed now also the problem with sshd used as default ipv4 and | ||
1903 | didn't use IPv6. This should be now fixed. | ||
1904 | |||
1905 | -- Christian Kurz <shorty@debian.org> Thu, 11 Jan 2001 21:25:55 +0100 | ||
1906 | |||
1907 | openssh (1:2.3.0p1-1.4) unstable; urgency=high | ||
1908 | |||
1909 | * Fixed buggy entry in postinst. | ||
1910 | |||
1911 | -- Christian Kurz <shorty@debian.org> Wed, 10 Jan 2001 23:12:16 +0100 | ||
1912 | |||
1913 | openssh (1:2.3.0p1-1.3) unstable; urgency=high | ||
1914 | |||
1915 | * After finishing the rewrite of the rules-file I had to notice that | ||
1916 | the manpage installation was broken. This should now work again. | ||
1917 | |||
1918 | -- Christian Kurz <shorty@debian.org> Wed, 10 Jan 2001 22:11:59 +0100 | ||
1919 | |||
1920 | openssh (1:2.3.0p1-1.2) unstable; urgency=high | ||
1921 | |||
1922 | * Fixed the screwed up build-dependency. | ||
1923 | * Removed --with-ipv4-default to support ipv6. | ||
1924 | * Changed makefile to use /etc/pam.d/ssh instead of /etc/pam.d/sshd. | ||
1925 | * Fixed location to sftp-server in config. | ||
1926 | * Since debian still relies on /etc/pam.d/ssh instead of moving to | ||
1927 | /etc/pam.d/sshd, I had to hack ssh.h to get ssh to use this name. | ||
1928 | * Fixed path to host key in sshd_config. | ||
1929 | |||
1930 | -- Christian Kurz <shorty@debian.org> Wed, 10 Jan 2001 08:23:47 +0100 | ||
1931 | |||
1932 | openssh (1:2.3.0p1-1.1) unstable; urgency=medium | ||
1933 | |||
1934 | * NMU with permission of Phil Hands. | ||
1935 | * New upstream release | ||
1936 | * Update Build-Depends to point to new libssl096. | ||
1937 | * This upstream release doesn't leak any information depending | ||
1938 | on the setting of PermitRootLogin (Closes: #59933) | ||
1939 | * New upstream release contains fix against forcing a client to | ||
1940 | do X/agent forwarding (Closes: #76788) | ||
1941 | * Changed template to contain correct path to the documentation | ||
1942 | (Closes: #67245) | ||
1943 | * Added --with-4in6 switch as compile option into debian/rules. | ||
1944 | * Added --with-ipv4-default as compile option into debian/rules. | ||
1945 | (Closes: #75037) | ||
1946 | * Changed default path to also contain /usr/local/bin and | ||
1947 | /usr/X11R6/bin (Closes: #62472,#54567,#62810) | ||
1948 | * Changed path to sftp-server in sshd_config to match the | ||
1949 | our package (Closes: #68347) | ||
1950 | * Replaced OpenBSDh with OpenBSD in the init-script. | ||
1951 | * Changed location to original source in copyright.head | ||
1952 | * Changed behaviour of init-script when invoked with the option | ||
1953 | restart (Closes: #68706,#72560) | ||
1954 | * Added a note about -L option of scp to README.Debian | ||
1955 | * ssh won't print now the motd if invoked with -t option | ||
1956 | (Closes: #59933) | ||
1957 | * RFC.nroff.gz get's now converted into RFC.gz. (Closes: #63867) | ||
1958 | * Added a note about tcp-wrapper support to README.Debian | ||
1959 | (Closes: #72807,#22190) | ||
1960 | * Removed two unneeded options from building process. | ||
1961 | * Added sshd.pam into debian dir and install it. | ||
1962 | * Commented out unnecessary call to dh_installinfo. | ||
1963 | * Added a line to sshd.pam so that limits will be paid attention | ||
1964 | to (Closes: #66904) | ||
1965 | * Restart Option has a Timeout of 10 seconds (Closes: 51264) | ||
1966 | * scp won't override files anymore (Closes: 51955) | ||
1967 | * Removed pam_lastlog module, so that the lastlog is now printed | ||
1968 | only once (Closes: #71742, #68335, #69592, #71495, #77781) | ||
1969 | * If password is expired, openssh now forces the user to change it. | ||
1970 | (Closes: #51747) | ||
1971 | * scp should now have no more problems with shell-init-files that | ||
1972 | produces ouput (Closes: #56280,#59873) | ||
1973 | * ssh now prints the motd correctly (Closes: #66926) | ||
1974 | * ssh upgrade should disable ssh daemon only if users has choosen | ||
1975 | to do so (Closes: #67478) | ||
1976 | * ssh can now be installed suid (Closes: #70879) | ||
1977 | * Modified debian/rules to support hurd. | ||
1978 | |||
1979 | -- Christian Kurz <shorty@debian.org> Wed, 27 Dec 2000 20:06:57 +0100 | ||
1980 | |||
1981 | openssh (1:2.2.0p1-1.1) unstable; urgency=medium | ||
1982 | |||
1983 | * Non-Maintainer Upload | ||
1984 | * Check for new returns in the new libc | ||
1985 | (closes: #72803, #74393, #72797, #71307, #71702) | ||
1986 | * Link against libssl095a (closes: #66304) | ||
1987 | * Correct check for PermitRootLogin (closes: #69448) | ||
1988 | |||
1989 | -- Ryan Murray <rmurray@debian.org> Wed, 18 Oct 2000 00:48:18 -0700 | ||
1990 | |||
1991 | openssh (1:2.2.0p1-1) unstable; urgency=low | ||
1992 | |||
1993 | * New upstream release | ||
1994 | |||
1995 | -- Philip Hands <phil@hands.com> Mon, 11 Sep 2000 14:49:43 +0100 | ||
1996 | |||
1997 | openssh (1:2.1.1p4-3) unstable; urgency=low | ||
1998 | |||
1999 | * add rsh alternatives | ||
2000 | * add -S option to scp (using Tommi Virtanen's patch) (closes: #63097) | ||
2001 | * do the IPV4_DEFAULT thing properly this time | ||
2002 | |||
2003 | -- Philip Hands <phil@hands.com> Fri, 11 Aug 2000 18:14:37 +0100 | ||
2004 | |||
2005 | openssh (1:2.1.1p4-2) unstable; urgency=low | ||
2006 | |||
2007 | * reinstate manpage .out patch from 1:1.2.3 | ||
2008 | * fix typo in postinst | ||
2009 | * only compile ssh with IPV4_DEFAULT | ||
2010 | * apply James Troup's patch to add a -o option to scp and updated manpage | ||
2011 | |||
2012 | -- Philip Hands <phil@hands.com> Sun, 30 Jul 2000 00:12:49 +0100 | ||
2013 | |||
2014 | openssh (1:2.1.1p4-1) unstable; urgency=low | ||
2015 | |||
2016 | * New upstream release | ||
2017 | |||
2018 | -- Philip Hands <phil@hands.com> Sat, 29 Jul 2000 14:46:16 +0100 | ||
2019 | |||
2020 | openssh (1:1.2.3-10) unstable; urgency=low | ||
2021 | |||
2022 | * add version to libpam-modules dependency, because old versions of | ||
2023 | pam_motd make it impossible to log in. | ||
2024 | |||
2025 | -- Philip Hands <phil@hands.com> Sat, 29 Jul 2000 13:28:22 +0100 | ||
2026 | |||
2027 | openssh (1:1.2.3-9) frozen unstable; urgency=low | ||
2028 | |||
2029 | * force location of /usr/bin/X11/xauth | ||
2030 | (closes: #64424, #66437, #66859) *RC* | ||
2031 | * typos in config (closes: #66779, #66780) | ||
2032 | * sshd_not_to_be_run could be assumed to be true, in error, if the config | ||
2033 | script died in an unusual way --- I've reversed this (closes: #66335) | ||
2034 | * Apply Zack Weinberg <zack@wolery.cumb.org>'s patch to ssh-askpass-ptk | ||
2035 | (closes: #65981) | ||
2036 | * change default for PermitRootLogin to "no" (closes: #66406) | ||
2037 | |||
2038 | -- Philip Hands <phil@hands.com> Tue, 11 Jul 2000 20:51:18 +0100 | ||
2039 | |||
2040 | openssh (1:1.2.3-8) frozen unstable; urgency=low | ||
2041 | |||
2042 | * get rid of Provides: rsh-server (this will mean that rstartd | ||
2043 | will need to change it's depends to deal with #63948, which I'm | ||
2044 | reopening) (closes: #66257) | ||
2045 | Given that this is also a trivial change, and is a reversal of a | ||
2046 | change that was mistakenly made after the freeze, I think this should | ||
2047 | also go into frozen. | ||
2048 | |||
2049 | -- Philip Hands <phil@hands.com> Wed, 28 Jun 2000 03:26:30 +0100 | ||
2050 | |||
2051 | openssh (1:1.2.3-7) frozen unstable; urgency=low | ||
2052 | |||
2053 | * check if debconf is installed before calling db_stop in postinst. | ||
2054 | This is required to allow ssh to be installed when debconf is not | ||
2055 | wanted, which probably makes it an RC upload (hopefully the last of | ||
2056 | too many). | ||
2057 | |||
2058 | -- Philip Hands <phil@hands.com> Wed, 28 Jun 2000 03:19:47 +0100 | ||
2059 | |||
2060 | openssh (1:1.2.3-6) frozen unstable; urgency=low | ||
2061 | |||
2062 | * fixed depressing little bug involving a line wrap looking like | ||
2063 | a blank line in the templates file *RC* | ||
2064 | (closes: #66090, #66078, #66083, #66182) | ||
2065 | |||
2066 | -- Philip Hands <phil@hands.com> Mon, 26 Jun 2000 00:45:05 +0100 | ||
2067 | |||
2068 | openssh (1:1.2.3-5) frozen unstable; urgency=low | ||
2069 | |||
2070 | * add code to prevent UseLogin exploit, although I think our PAM | ||
2071 | conditional code breaks UseLogin in a way that protects us from this | ||
2072 | exploit anyway. ;-) (closes: #65495) *RC* | ||
2073 | * Apply Zack Weinberg <zack@wolery.cumb.org>'s patch to fix keyboard | ||
2074 | grab vulnerability in ssh-askpass-gnome (closes: #64795) *RC* | ||
2075 | * stop redirection of sshd's file descriptors (introduced in 1:1.2.3-3) | ||
2076 | and use db_stop in the postinst to solve that problem instead | ||
2077 | (closes: #65104) | ||
2078 | * add Provides: rsh-server to ssh (closes: #63948) | ||
2079 | * provide config option not to run sshd | ||
2080 | |||
2081 | -- Philip Hands <phil@hands.com> Mon, 12 Jun 2000 23:05:11 +0100 | ||
2082 | |||
2083 | openssh (1:1.2.3-4) frozen unstable; urgency=low | ||
2084 | |||
2085 | * fixes #63436 which is *RC* | ||
2086 | * add 10 second pause in init.d restart (closes: #63844) | ||
2087 | * get rid of noenv in PAM mail line (closes: #63856) | ||
2088 | * fix host key path in make-ssh-known-hosts (closes: #63713) | ||
2089 | * change wording of SUID template (closes: #62788, #63436) | ||
2090 | |||
2091 | -- Philip Hands <phil@hands.com> Sat, 27 May 2000 11:18:06 +0100 | ||
2092 | |||
2093 | openssh (1:1.2.3-3) frozen unstable; urgency=low | ||
2094 | |||
2095 | * redirect sshd's file descriptors to /dev/null in init to | ||
2096 | prevent debconf from locking up during installation | ||
2097 | ** grave bug just submited by me ** | ||
2098 | |||
2099 | -- Philip Hands <phil@hands.com> Thu, 20 Apr 2000 17:10:59 +0100 | ||
2100 | |||
2101 | openssh (1:1.2.3-2) frozen unstable; urgency=low | ||
2102 | |||
2103 | * allow user to select SUID status of /usr/bin/ssh (closes: 62462) ** RC ** | ||
2104 | * suggest debconf | ||
2105 | * conflict with debconf{,-tiny} (<<0.2.17) so I can clean up the preinst | ||
2106 | |||
2107 | -- Philip Hands <phil@hands.com> Wed, 19 Apr 2000 17:49:15 +0100 | ||
2108 | |||
2109 | openssh (1:1.2.3-1) frozen unstable; urgency=low | ||
2110 | |||
2111 | * New upstream release | ||
2112 | * patch sshd to create extra xauth key required for localhost | ||
2113 | (closes: #49944) *** RC *** | ||
2114 | * FallbacktoRsh now defaults to ``no'' to match impression | ||
2115 | given in sshd_config | ||
2116 | * stop setting suid bit on ssh (closes: #58711, #58558) | ||
2117 | This breaks Rhosts authentication (which nobody uses) and allows | ||
2118 | the LD_PRELOAD trick to get socks working, so seems like a net benefit. | ||
2119 | |||
2120 | -- Philip Hands <phil@hands.com> Thu, 13 Apr 2000 20:01:54 +0100 | ||
2121 | |||
2122 | openssh (1:1.2.2-1.4) frozen unstable; urgency=low | ||
2123 | |||
2124 | * Recompile for frozen, contains fix for RC bug. | ||
2125 | |||
2126 | -- Tommi Virtanen <tv@debian.org> Tue, 29 Feb 2000 22:14:58 +0200 | ||
2127 | |||
2128 | openssh (1:1.2.2-1.3) unstable; urgency=low | ||
2129 | |||
2130 | * Integrated man page addition for PrintLastLog. | ||
2131 | This bug was filed on "openssh", and I ended up | ||
2132 | creating my own patch for this (closes: #59054) | ||
2133 | * Improved error message when ssh_exchange_identification | ||
2134 | gets EOF (closes: #58904) | ||
2135 | * Fixed typo (your -> you're) in debian/preinst. | ||
2136 | * Added else-clauses to config to make this upgradepath possible: | ||
2137 | oldssh -> openssh preinst fails due to upgrade_to_openssh=false | ||
2138 | -> ssh-nonfree -> openssh. Without these, debconf remembered | ||
2139 | the old answer, config didn't force asking it, and preinst always | ||
2140 | aborted (closes: #56596, #57782) | ||
2141 | * Moved setting upgrade_to_openssh isdefault flag to the place | ||
2142 | where preinst would abort. This means no double question to most | ||
2143 | users, people who currently suffer from "can't upgrade" may need | ||
2144 | to run apt-get install ssh twice. Did not do the same for | ||
2145 | use_old_init_script, as the situation is a bit different, and | ||
2146 | less common (closes: #54010, #56224) | ||
2147 | * Check for existance of ssh-keygen before attempting to use it in | ||
2148 | preinst, added warning for non-existant ssh-keygen in config. This | ||
2149 | happens when the old ssh is removed (say, due to ssh-nonfree getting | ||
2150 | installed). | ||
2151 | |||
2152 | -- Tommi Virtanen <tv@debian.org> Sun, 27 Feb 2000 21:36:43 +0200 | ||
2153 | |||
2154 | openssh (1:1.2.2-1.2) frozen unstable; urgency=low | ||
2155 | |||
2156 | * Non-maintainer upload. | ||
2157 | * Added configuration option PrintLastLog, default off due to PAM | ||
2158 | (closes: #54007, #55042) | ||
2159 | * ssh-askpass-{gnome,ptk} now provide ssh-askpass, making ssh's | ||
2160 | Suggests: line more accurate. Also closing related bugs fixed | ||
2161 | earlier, when default ssh-askpass moved to /usr/bin. | ||
2162 | (closes: #52403, #54741, #50607, #52298, #50967, #51661) | ||
2163 | * Patched to call vhangup, with autoconf detection and all | ||
2164 | (closes: #55379) | ||
2165 | * Added --with-ipv4-default workaround to a glibc bug causing | ||
2166 | slow DNS lookups, as per UPGRADING. Use -6 to really use | ||
2167 | IPv6 addresses. (closes: #57891, #58744, #58713, #57970) | ||
2168 | * Added noenv to PAM pam_mail line. Thanks to Ben Collins. | ||
2169 | (closes: #58429) | ||
2170 | * Added the UPGRADING file to the package. | ||
2171 | * Added frozen to the changelog line and recompiled before | ||
2172 | package was installed into the archive. | ||
2173 | |||
2174 | -- Tommi Virtanen <tv@debian.org> Fri, 25 Feb 2000 22:08:57 +0200 | ||
2175 | |||
2176 | openssh (1:1.2.2-1.1) frozen unstable; urgency=low | ||
2177 | |||
2178 | * Non-maintainer upload. | ||
2179 | * Integrated scp pipe buffer patch from Ben Collins | ||
2180 | <benc@debian.org>, should now work even if reading | ||
2181 | a pipe gives less than fstat st_blksize bytes. | ||
2182 | Should now work on Alpha and Sparc Linux (closes: #53697, #52071) | ||
2183 | * Made ssh depend on libssl09 (>= 0.9.4-3) (closes: #51393) | ||
2184 | * Integrated patch from Ben Collins <benc@debian.org> | ||
2185 | to do full shadow account locking and expiration | ||
2186 | checking (closes: #58165, #51747) | ||
2187 | |||
2188 | -- Tommi Virtanen <tv@debian.org> Tue, 22 Feb 2000 20:46:12 +0200 | ||
2189 | |||
2190 | openssh (1:1.2.2-1) frozen unstable; urgency=medium | ||
2191 | |||
2192 | * New upstream release (closes: #56870, #56346) | ||
2193 | * built against new libesd (closes: #56805) | ||
2194 | * add Colin Watson <cjw44@cam.ac.uk> =NULL patch | ||
2195 | (closes: #49902, #54894) | ||
2196 | * use socketpairs as suggested by Andrew Tridgell to eliminate rsync | ||
2197 | (and other) lockups | ||
2198 | * patch SSHD_PAM_SERVICE back into auth-pam.c, again :-/ | ||
2199 | (closes: #49902, #55872, #56959) | ||
2200 | * uncoment the * line in ssh_config (closes: #56444) | ||
2201 | |||
2202 | * #54894 & #49902 are release critical, so this should go in frozen | ||
2203 | |||
2204 | -- Philip Hands <phil@hands.com> Wed, 9 Feb 2000 04:52:04 +0000 | ||
2205 | |||
2206 | openssh (1:1.2.1pre24-1) unstable; urgency=low | ||
2207 | |||
2208 | * New upstream release | ||
2209 | |||
2210 | -- Philip Hands <phil@hands.com> Fri, 31 Dec 1999 02:47:24 +0000 | ||
2211 | |||
2212 | openssh (1:1.2.1pre23-1) unstable; urgency=low | ||
2213 | |||
2214 | * New upstream release | ||
2215 | * excape ? in /etc/init.d/ssh (closes: #53269) | ||
2216 | |||
2217 | -- Philip Hands <phil@hands.com> Wed, 29 Dec 1999 16:50:46 +0000 | ||
2218 | |||
2219 | openssh (1:1.2pre17-1) unstable; urgency=low | ||
2220 | |||
2221 | * New upstream release | ||
2222 | |||
2223 | -- Philip Hands <phil@hands.com> Thu, 9 Dec 1999 16:50:40 +0000 | ||
2224 | |||
2225 | openssh (1:1.2pre16-1) unstable; urgency=low | ||
2226 | |||
2227 | * New upstream release | ||
2228 | * upstream release (1.2pre14) (closes: #50299) | ||
2229 | * make ssh depend on libwrap0 (>= 7.6-1.1) (closes: #50973, #50776) | ||
2230 | * dispose of grep -q broken pipe message in config script (closes: #50855) | ||
2231 | * add make-ssh-known-hosts (closes: #50660) | ||
2232 | * add -i option to ssh-copy-id (closes: #50657) | ||
2233 | * add check for *LK* in password, indicating a locked account | ||
2234 | |||
2235 | -- Philip Hands <phil@hands.com> Wed, 8 Dec 1999 22:59:38 +0000 | ||
2236 | |||
2237 | openssh (1:1.2pre13-1) unstable; urgency=low | ||
2238 | |||
2239 | * New upstream release | ||
2240 | * make sshd.c use SSHD_PAM_SERVICE and define it as "ssh" in debian/rules | ||
2241 | * remove duplicate line in /etc/pam.d/ssh (closes: #50310) | ||
2242 | * mention ssh -A option in ssh.1 & ssh_config | ||
2243 | * enable forwarding to localhost in default ssh_config (closes: #50373) | ||
2244 | * tweak preinst to deal with debconf being `unpacked' | ||
2245 | * use --with-tcp-wrappers (closes: #49545) | ||
2246 | |||
2247 | -- Philip Hands <phil@hands.com> Sat, 20 Nov 1999 14:20:04 +0000 | ||
2248 | |||
2249 | openssh (1:1.2pre11-2) unstable; urgency=low | ||
2250 | |||
2251 | * oops, just realised that I forgot to strip out the unpleasant | ||
2252 | fiddling mentioned below (which turned not to be a fix anyway) | ||
2253 | |||
2254 | -- Philip Hands <phil@hands.com> Mon, 15 Nov 1999 01:35:23 +0000 | ||
2255 | |||
2256 | openssh (1:1.2pre11-1) unstable; urgency=low | ||
2257 | |||
2258 | * New upstream release (closes: #49722) | ||
2259 | * add 2>/dev/null to dispose of spurious message casused by grep -q | ||
2260 | (closes: #49876, #49604) | ||
2261 | * fix typo in debian/control (closes: #49841) | ||
2262 | * Do some unpleasant fiddling with upgraded keys in the preinst, which | ||
2263 | should make the keylength problem go away. (closes: #49676) | ||
2264 | * make pam_start in sshd use ``ssh'' as the service name (closes: #49956) | ||
2265 | * If /etc/ssh/NOSERVER exist, stop sshd from starting (closes: #47107) | ||
2266 | * apply Ben Collins <bcollins@debian.org>'s shadow patch | ||
2267 | * disable lastlogin and motd printing if using pam (closes: #49957) | ||
2268 | * add ssh-copy-id script and manpage | ||
2269 | |||
2270 | -- Philip Hands <phil@hands.com> Fri, 12 Nov 1999 01:03:38 +0000 | ||
2271 | |||
2272 | openssh (1:1.2pre9-1) unstable; urgency=low | ||
2273 | |||
2274 | * New upstream release | ||
2275 | * apply Chip Salzenberg <chip@valinux.com>'s SO_REUSEADDR patch | ||
2276 | to channels.c, to make forwarded ports instantly reusable | ||
2277 | * replace Pre-Depend: debconf with some check code in preinst | ||
2278 | * make the ssh-add ssh-askpass failure message more helpful | ||
2279 | * fix the ssh-agent getopts bug (closes: #49426) | ||
2280 | * fixed typo on Suggests: line (closes: #49704, #49571) | ||
2281 | * tidy up ssh package description (closes: #49642) | ||
2282 | * make ssh suid (closes: #49635) | ||
2283 | * in preinst upgrade code, ensure ssh_host_keys is mode 600 (closes: #49606) | ||
2284 | * disable agent forwarding by default, for the similar reasons as | ||
2285 | X forwarding (closes: #49586) | ||
2286 | |||
2287 | -- Philip Hands <phil@hands.com> Tue, 9 Nov 1999 09:57:47 +0000 | ||
2288 | |||
2289 | openssh (1:1.2pre7-4) unstable; urgency=low | ||
2290 | |||
2291 | * predepend on debconf (>= 0.2.17) should now allow preinst questions | ||
2292 | |||
2293 | -- Philip Hands <phil@hands.com> Sat, 6 Nov 1999 10:31:06 +0000 | ||
2294 | |||
2295 | openssh (1:1.2pre7-3) unstable; urgency=low | ||
2296 | |||
2297 | * add ssh-askpass package using Tommi Virtanen's perl-tk script | ||
2298 | * add ssh-preconfig package cludge | ||
2299 | * add usage hints to ssh-agent.1 | ||
2300 | |||
2301 | -- Philip Hands <phil@hands.com> Fri, 5 Nov 1999 00:38:33 +0000 | ||
2302 | |||
2303 | openssh (1:1.2pre7-2) unstable; urgency=low | ||
2304 | |||
2305 | * use pam patch from Ben Collins <bcollins@debian.org> | ||
2306 | * add slogin symlink to Makefile.in | ||
2307 | * change /usr/bin/login to LOGIN_PROGRAM define of /bin/login | ||
2308 | * sort out debconf usage | ||
2309 | * patch from Tommi Virtanen <tv@debian.org>'s makes ssh-add use ssh-askpass | ||
2310 | |||
2311 | -- Philip Hands <phil@hands.com> Thu, 4 Nov 1999 11:08:54 +0000 | ||
2312 | |||
2313 | openssh (1:1.2pre7-1) unstable; urgency=low | ||
2314 | |||
2315 | * New upstream release | ||
2316 | |||
2317 | -- Philip Hands <phil@hands.com> Tue, 2 Nov 1999 21:02:37 +0000 | ||
2318 | |||
2319 | openssh (1:1.2.0.pre6db1-2) unstable; urgency=low | ||
2320 | |||
2321 | * change the binary package name to ssh (the non-free branch of ssh has | ||
2322 | been renamed to ssh-nonfree) | ||
2323 | * make pam file comply with Debian standards | ||
2324 | * use an epoch to make sure openssh supercedes ssh-nonfree | ||
2325 | |||
2326 | -- Philip Hands <phil@hands.com> Sat, 30 Oct 1999 16:26:05 +0100 | ||
2327 | |||
2328 | openssh (1.2pre6db1-1) unstable; urgency=low | ||
2329 | |||
2330 | * New upstream source | ||
2331 | * sshd accepts logins now! | ||
2332 | |||
2333 | -- Dan Brosemer <odin@linuxfreak.com> Fri, 29 Oct 1999 11:13:38 -0500 | ||
2334 | |||
2335 | openssh (1.2.0.19991028-1) unstable; urgency=low | ||
2336 | |||
2337 | * New upstream source | ||
2338 | * Added test for -lnsl to configure script | ||
2339 | |||
2340 | -- Dan Brosemer <odin@linuxfreak.com> Thu, 28 Oct 1999 18:52:09 -0500 | ||
2341 | |||
2342 | openssh (1.2.0.19991027-3) unstable; urgency=low | ||
2343 | |||
2344 | * Initial release | ||
2345 | |||
2346 | -- Dan Brosemer <odin@linuxfreak.com> Wed, 27 Oct 1999 19:39:46 -0500 | ||
diff --git a/debian/compat b/debian/compat new file mode 100644 index 000000000..b8626c4cf --- /dev/null +++ b/debian/compat | |||
@@ -0,0 +1 @@ | |||
4 | |||
diff --git a/debian/control b/debian/control new file mode 100644 index 000000000..c9d8230b4 --- /dev/null +++ b/debian/control | |||
@@ -0,0 +1,122 @@ | |||
1 | Source: openssh | ||
2 | Section: net | ||
3 | Priority: standard | ||
4 | Maintainer: Debian OpenSSH Maintainers <debian-ssh@lists.debian.org> | ||
5 | Build-Depends: libwrap0-dev | libwrap-dev, zlib1g-dev (>= 1:1.2.3-1), libssl-dev (>= 0.9.8-1), libpam0g-dev | libpam-dev, libgnomeui-dev (>= 2.0.0) | libgnome-dev, libedit-dev, groff, debhelper (>= 5.0.22), sharutils, libselinux1-dev [alpha amd64 arm armeb hppa i386 ia64 lpia m68k mips mipsel powerpc ppc64 s390 sparc], libkrb5-dev | ||
6 | Standards-Version: 3.7.2 | ||
7 | Uploaders: Colin Watson <cjwatson@debian.org>, Matthew Vernon <matthew@debian.org> | ||
8 | |||
9 | Package: openssh-client | ||
10 | Architecture: any | ||
11 | Depends: ${shlibs:Depends}, ${debconf-depends}, adduser (>= 3.10), dpkg (>= 1.7.0), passwd | ||
12 | Conflicts: ssh (<< 1:3.8.1p1-9), sftp, rsh-client (<<0.16.1-1), ssh-krb5 (<< 1:4.3p2-7) | ||
13 | Replaces: ssh, ssh-krb5 | ||
14 | Suggests: ssh-askpass, xbase-clients, libpam-ssh, keychain | ||
15 | Provides: rsh-client, ssh-client | ||
16 | Description: secure shell client, an rlogin/rsh/rcp replacement | ||
17 | This is the portable version of OpenSSH, a free implementation of | ||
18 | the Secure Shell protocol as specified by the IETF secsh working | ||
19 | group. | ||
20 | . | ||
21 | Ssh (Secure Shell) is a program for logging into a remote machine | ||
22 | and for executing commands on a remote machine. | ||
23 | It provides secure encrypted communications between two untrusted | ||
24 | hosts over an insecure network. X11 connections and arbitrary TCP/IP | ||
25 | ports can also be forwarded over the secure channel. | ||
26 | It is intended as a replacement for rlogin, rsh and rcp, and can be | ||
27 | used to provide applications with a secure communication channel. | ||
28 | . | ||
29 | This package provides the ssh, scp and sftp clients, the ssh-agent | ||
30 | and ssh-add programs to make public key authentication more convenient, | ||
31 | and the ssh-keygen, ssh-keyscan, ssh-copy-id and ssh-argv0 utilities. | ||
32 | . | ||
33 | In some countries it may be illegal to use any encryption at all | ||
34 | without a special permit. | ||
35 | |||
36 | Package: openssh-server | ||
37 | Priority: optional | ||
38 | Architecture: any | ||
39 | Depends: ${shlibs:Depends}, ${debconf-depends}, ${pam-depends}, libpam-modules (>= 0.72-9), adduser (>= 3.9), dpkg (>= 1.9.0), openssh-client (= ${binary:Version}), lsb-base (>= 3.0-6) | ||
40 | Conflicts: ssh (<< 1:3.8.1p1-9), ssh-nonfree (<<2), ssh-socks, ssh2, sftp, rsh-client (<<0.16.1-1), ssh-krb5 (<< 1:4.3p2-7) | ||
41 | Replaces: ssh, openssh-client (<< 1:3.8.1p1-11), ssh-krb5 | ||
42 | Suggests: ssh-askpass, xbase-clients, rssh, molly-guard | ||
43 | Provides: ssh-server | ||
44 | Description: secure shell server, an rshd replacement | ||
45 | This is the portable version of OpenSSH, a free implementation of | ||
46 | the Secure Shell protocol as specified by the IETF secsh working | ||
47 | group. | ||
48 | . | ||
49 | Ssh (Secure Shell) is a program for logging into a remote machine | ||
50 | and for executing commands on a remote machine. | ||
51 | It provides secure encrypted communications between two untrusted | ||
52 | hosts over an insecure network. X11 connections and arbitrary TCP/IP | ||
53 | ports can also be forwarded over the secure channel. | ||
54 | It is intended as a replacement for rlogin, rsh and rcp, and can be | ||
55 | used to provide applications with a secure communication channel. | ||
56 | . | ||
57 | This package provides the sshd server. | ||
58 | . | ||
59 | In some countries it may be illegal to use any encryption at all | ||
60 | without a special permit. | ||
61 | |||
62 | Package: ssh | ||
63 | Priority: extra | ||
64 | Architecture: all | ||
65 | Depends: openssh-client, openssh-server | ||
66 | Description: secure shell client and server (metapackage) | ||
67 | This metapackage is a convenient way to install both the OpenSSH client | ||
68 | and the OpenSSH server. It provides nothing in and of itself, so you | ||
69 | may remove it if nothing depends on it. | ||
70 | |||
71 | Package: ssh-krb5 | ||
72 | Priority: extra | ||
73 | Architecture: all | ||
74 | Depends: openssh-client, openssh-server | ||
75 | Description: secure shell client and server (transitional package) | ||
76 | This is a transitional package depending on the regular Debian OpenSSH | ||
77 | client and server, which now support GSSAPI natively. It will add the | ||
78 | necessary GSSAPI options to the server configuration file. You can | ||
79 | remove it once the upgrade is complete and nothing depends on it. | ||
80 | |||
81 | Package: ssh-askpass-gnome | ||
82 | Section: gnome | ||
83 | Priority: optional | ||
84 | Architecture: any | ||
85 | Depends: ${shlibs:Depends}, openssh-client | ssh (>= 1:1.2pre7-4) | ssh-krb5 | ||
86 | Replaces: ssh (<< 1:3.5p1-3) | ||
87 | Provides: ssh-askpass | ||
88 | Description: interactive X program to prompt users for a passphrase for ssh-add | ||
89 | This has been split out of the main ssh package, so that the ssh will | ||
90 | not need to depend upon the Gnome libraries. | ||
91 | . | ||
92 | You probably want the ssh-askpass package instead, but this is | ||
93 | provided to add to your choice and/or confusion. | ||
94 | |||
95 | Package: openssh-client-udeb | ||
96 | XC-Package-Type: udeb | ||
97 | Section: debian-installer | ||
98 | Priority: optional | ||
99 | Architecture: any | ||
100 | Depends: ${shlibs:Depends}, libnss-files-udeb | ||
101 | XB-Installer-Menu-Item: 99900 | ||
102 | Description: secure shell client for the Debian installer | ||
103 | This is the portable version of OpenSSH, a free implementation of | ||
104 | the Secure Shell protocol as specified by the IETF secsh working | ||
105 | group. | ||
106 | . | ||
107 | This package provides the ssh client for use in debian-installer. | ||
108 | |||
109 | Package: openssh-server-udeb | ||
110 | XC-Package-Type: udeb | ||
111 | Section: debian-installer | ||
112 | Priority: optional | ||
113 | Architecture: any | ||
114 | Depends: ${shlibs:Depends}, libnss-files-udeb | ||
115 | Description: secure shell server for the Debian installer | ||
116 | This is the portable version of OpenSSH, a free implementation of | ||
117 | the Secure Shell protocol as specified by the IETF secsh working | ||
118 | group. | ||
119 | . | ||
120 | This package provides the sshd server for use in debian-installer. | ||
121 | Since it is expected to be used in specialized situations (e.g. S/390 | ||
122 | installs with no console), it does not provide any configuration. | ||
diff --git a/debian/copyright.head b/debian/copyright.head new file mode 100644 index 000000000..751f6eb26 --- /dev/null +++ b/debian/copyright.head | |||
@@ -0,0 +1,52 @@ | |||
1 | This package was debianized by Philip Hands <phil@hands.com> on 31 Oct 1999 | ||
2 | (with help from Dan Brosemer <odin@linuxfreak.com>) | ||
3 | |||
4 | It was downloaded from here: | ||
5 | ftp://ftp.fu-berlin.de/unix/security/openssh/openssh-2.3.0p1.tar.gz | ||
6 | |||
7 | worldwide mirrors are listed here: | ||
8 | http://www.openssh.com/ftp.html | ||
9 | |||
10 | The Debian specific parts of the package are mostly taken from the | ||
11 | original ssh package, which has since been renamed as ssh-nonfree. | ||
12 | |||
13 | The Debian patch is distributed under the terms of the GPL, which you | ||
14 | can find in /usr/share/common-licenses/GPL. | ||
15 | |||
16 | In addition, as a special exception, Matthew Vernon gives permission | ||
17 | to link the code of the Debian patch with any version of the OpenSSH | ||
18 | code which is distributed under a license identical to that listed in | ||
19 | the included Copyright file, and distribute linked combinations | ||
20 | including the two. You must obey the GNU General Public License in | ||
21 | all respects for all of the code used other than OpenSSH. If you | ||
22 | modify this file, you may extend this exception to your version of the | ||
23 | file, but you are not obligated to do so. If you do not wish to do | ||
24 | so, delete this exception statement from your version. | ||
25 | |||
26 | The upstream source for this package is a combination of the ssh | ||
27 | branch that is being maintained by the OpenBSD team (starting from | ||
28 | the last version of SSH that was distributed under a free license), | ||
29 | and porting work by Damien Miller <damien@ibs.com.au> to get it | ||
30 | working on Linux. Other people also contributed to this, and are | ||
31 | credited in /usr/share/doc/ssh/README. | ||
32 | |||
33 | This package contains Kerberos version 5 patches from | ||
34 | http://www.sxw.org.uk/computing/patches/openssh.html; this is Copyright | ||
35 | (c) 2001-2004 Simon Wilkinson and provided under the standard 2-term BSD | ||
36 | licence used elsewhere in OpenSSH. | ||
37 | |||
38 | Copyright: | ||
39 | |||
40 | Code in helper.[ch] is Copyright Internet Business Solutions and is | ||
41 | released under a X11-style license (see source file for details). | ||
42 | |||
43 | (A)RC4 code in rc4.[ch] is Copyright Damien Miller. It too is under a | ||
44 | X11-style license (see source file for details). | ||
45 | |||
46 | make-ssh-known-hosts is Copyright Tero Kivinen <Tero.Kivinen@hut.fi>, | ||
47 | and is distributed under the GPL (see source file for details). | ||
48 | |||
49 | The copyright for the original SSH version follows. It has been | ||
50 | modified with [comments] to reflect the changes that the OpenBSD folks | ||
51 | have made: | ||
52 | |||
diff --git a/debian/gnome-ssh-askpass.1 b/debian/gnome-ssh-askpass.1 new file mode 100644 index 000000000..b74c410a8 --- /dev/null +++ b/debian/gnome-ssh-askpass.1 | |||
@@ -0,0 +1,51 @@ | |||
1 | .TH GNOME-SSH-ASKPASS 1 | ||
2 | .SH NAME | ||
3 | gnome\-ssh\-askpass \- prompts a user for a passphrase using GNOME | ||
4 | .SH SYNOPSIS | ||
5 | .B gnome\-ssh\-askpass | ||
6 | .SH DESCRIPTION | ||
7 | .B gnome\-ssh\-askpass | ||
8 | is a GNOME-based passphrase dialog for use with OpenSSH. | ||
9 | It is intended to be called by the | ||
10 | .BR ssh\-add (1) | ||
11 | program and not invoked directly. | ||
12 | It allows | ||
13 | .BR ssh\-add (1) | ||
14 | to obtain a passphrase from a user, even if not connected to a terminal | ||
15 | (assuming that an X display is available). | ||
16 | This happens automatically in the case where | ||
17 | .B ssh\-add | ||
18 | is invoked from one's | ||
19 | .B ~/.xsession | ||
20 | or as one of the GNOME startup programs, for example. | ||
21 | .PP | ||
22 | In order to be called automatically by | ||
23 | .BR ssh\-add , | ||
24 | .B gnome\-ssh\-askpass | ||
25 | should be installed as | ||
26 | .IR /usr/bin/ssh\-askpass . | ||
27 | .SH "ENVIRONMENT VARIABLES" | ||
28 | The following environment variables are recognized: | ||
29 | .TP | ||
30 | .I GNOME_SSH_ASKPASS_GRAB_SERVER | ||
31 | Causes | ||
32 | .B gnome\-ssh\-askpass | ||
33 | to grab the X server before asking for a passphrase. | ||
34 | .TP | ||
35 | .I GNOME_SSH_ASKPASS_GRAB_POINTER | ||
36 | Causes | ||
37 | .B gnome\-ssh\-askpass | ||
38 | to grab the mouse pointer using | ||
39 | .IR gdk_pointer_grab () | ||
40 | before asking for a passphrase. | ||
41 | .PP | ||
42 | Regardless of whether either of these environment variables is set, | ||
43 | .B gnome\-ssh\-askpass | ||
44 | will grab the keyboard using | ||
45 | .IR gdk_keyboard_grab (). | ||
46 | .SH AUTHOR | ||
47 | This manual page was written by Colin Watson <cjwatson@debian.org> | ||
48 | for the Debian system (but may be used by others). | ||
49 | It was based on that for | ||
50 | .B x11\-ssh\-askpass | ||
51 | by Philip Hands. | ||
diff --git a/debian/moduli.5 b/debian/moduli.5 new file mode 100644 index 000000000..b3997658b --- /dev/null +++ b/debian/moduli.5 | |||
@@ -0,0 +1,152 @@ | |||
1 | .\" $OpenBSD: moduli.5,v 1.7 2003/03/06 20:48:35 jmc Exp $ | ||
2 | .\" | ||
3 | .\" Copyright 1997, 2000 William Allen Simpson <wsimpson@greendragon.com> | ||
4 | .\" All rights reserved. | ||
5 | .\" | ||
6 | .\" Redistribution and use in source and binary forms, with or without | ||
7 | .\" modification, are permitted provided that the following conditions | ||
8 | .\" are met: | ||
9 | .\" 1. Redistributions of source code must retain the above copyright | ||
10 | .\" notice, this list of conditions and the following disclaimer. | ||
11 | .\" 2. Redistributions in binary form must reproduce the above copyright | ||
12 | .\" notice, this list of conditions and the following disclaimer in the | ||
13 | .\" documentation and/or other materials provided with the distribution. | ||
14 | .\" 3. All advertising materials mentioning features or use of this software | ||
15 | .\" must display the following acknowledgement: | ||
16 | .\" This product includes software designed by William Allen Simpson. | ||
17 | .\" 4. The name of the author may not be used to endorse or promote products | ||
18 | .\" derived from this software without specific prior written permission. | ||
19 | .\" | ||
20 | .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR | ||
21 | .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES | ||
22 | .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. | ||
23 | .\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
24 | .\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | ||
25 | .\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
26 | .\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
27 | .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
28 | .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | ||
29 | .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
30 | .\" | ||
31 | .\" Manual page, using -mandoc macros | ||
32 | .\" | ||
33 | .Dd July 28, 1997 | ||
34 | .Dt MODULI 5 | ||
35 | .Os | ||
36 | .Sh NAME | ||
37 | .Nm moduli | ||
38 | .Nd system moduli file | ||
39 | .Sh DESCRIPTION | ||
40 | The | ||
41 | .Pa /etc/ssh/moduli | ||
42 | file contains the system-wide Diffie-Hellman prime moduli for | ||
43 | .Xr sshd 8 . | ||
44 | .Pp | ||
45 | Each line in this file contains the following fields: | ||
46 | Time, Type, Tests, Tries, Size, Generator, Modulus. | ||
47 | The fields are separated by white space (tab or blank). | ||
48 | .Pp | ||
49 | .Fa Time : yyyymmddhhmmss . | ||
50 | Specifies the system time that the line was appended to the file. | ||
51 | The value 00000000000000 means unknown (historic). | ||
52 | .\"The file is sorted in ascending order. | ||
53 | .Pp | ||
54 | .Fa Type : decimal . | ||
55 | Specifies the internal structure of the prime modulus. | ||
56 | .Pp | ||
57 | .Bl -tag -width indent -offset indent -compact | ||
58 | .It 0 : | ||
59 | unknown; | ||
60 | often learned from peer during protocol operation, | ||
61 | and saved for later analysis. | ||
62 | .It 1 : | ||
63 | unstructured; | ||
64 | a common large number. | ||
65 | .It 2 : | ||
66 | safe (p = 2q + 1); | ||
67 | meets basic structural requirements. | ||
68 | .It 3 : | ||
69 | Schnorr. | ||
70 | .It 4 : | ||
71 | Sophie-Germaine (q = (p-1)/2); | ||
72 | usually generated in the process of testing safe or strong primes. | ||
73 | .It 5 : | ||
74 | strong; | ||
75 | useful for RSA public key generation. | ||
76 | .El | ||
77 | .Pp | ||
78 | .Fa Tests : decimal (bit field) . | ||
79 | Specifies the methods used in checking for primality. | ||
80 | Usually, more than one test is used. | ||
81 | .Pp | ||
82 | .Bl -tag -width indent -offset indent -compact | ||
83 | .It 0 : | ||
84 | not tested; | ||
85 | often learned from peer during protocol operation, | ||
86 | and saved for later analysis. | ||
87 | .It 1 : | ||
88 | composite; | ||
89 | failed one or more tests. | ||
90 | In this case, the highest bit specifies the test that failed. | ||
91 | .It 2 : | ||
92 | sieve; | ||
93 | checked for division by a range of smaller primes. | ||
94 | .It 4 : | ||
95 | Miller-Rabin. | ||
96 | .It 8 : | ||
97 | Jacobi. | ||
98 | .It 16 : | ||
99 | Elliptic Curve. | ||
100 | .El | ||
101 | .Pp | ||
102 | .Fa Tries : decimal . | ||
103 | Depends on the value of the highest valid Test bit, | ||
104 | where the method specified is: | ||
105 | .Pp | ||
106 | .Bl -tag -width indent -offset indent -compact | ||
107 | .It 0 : | ||
108 | not tested | ||
109 | (always zero). | ||
110 | .It 1 : | ||
111 | composite | ||
112 | (irrelevant). | ||
113 | .It 2 : | ||
114 | sieve; | ||
115 | number of primes sieved. | ||
116 | Commonly on the order of 32,000,000. | ||
117 | .It 4 : | ||
118 | Miller-Rabin; | ||
119 | number of M-R iterations. | ||
120 | Commonly on the order of 32 to 64. | ||
121 | .It 8 : | ||
122 | Jacobi; | ||
123 | unknown | ||
124 | (always zero). | ||
125 | .It 16 : | ||
126 | Elliptic Curve; | ||
127 | unused | ||
128 | (always zero). | ||
129 | .El | ||
130 | .Pp | ||
131 | .Fa Size : decimal . | ||
132 | Specifies the number of significant bits. | ||
133 | .Pp | ||
134 | .Fa Generator : hex string . | ||
135 | Specifies the best generator for a Diffie-Hellman exchange. | ||
136 | 0 = unknown or variable, | ||
137 | 2, 3, 5, etc. | ||
138 | .Pp | ||
139 | .Fa Modulus : hex string . | ||
140 | The prime modulus. | ||
141 | .Pp | ||
142 | The file is searched for moduli that meet the appropriate | ||
143 | Time, Size and Generator criteria. | ||
144 | When more than one meet the criteria, | ||
145 | the selection should be weighted toward newer moduli, | ||
146 | without completely disqualifying older moduli. | ||
147 | .Sh FILES | ||
148 | .Bl -tag -width /etc/ssh/moduli -compact | ||
149 | .It Pa /etc/ssh/moduli | ||
150 | .El | ||
151 | .Sh SEE ALSO | ||
152 | .Xr sshd 8 | ||
diff --git a/debian/openssh-client-udeb.dirs b/debian/openssh-client-udeb.dirs new file mode 100644 index 000000000..e77248175 --- /dev/null +++ b/debian/openssh-client-udeb.dirs | |||
@@ -0,0 +1 @@ | |||
usr/bin | |||
diff --git a/debian/openssh-client-udeb.isinstallable b/debian/openssh-client-udeb.isinstallable new file mode 100644 index 000000000..7591b6245 --- /dev/null +++ b/debian/openssh-client-udeb.isinstallable | |||
@@ -0,0 +1,10 @@ | |||
1 | #! /bin/sh | ||
2 | |||
3 | # This is a hack to arrange for openssh-client-udeb to show up as a | ||
4 | # retrievable debian-installer component in expert mode (due to the | ||
5 | # Installer-Menu-Item: control field) while not actually appearing on the | ||
6 | # d-i main menu. See: | ||
7 | # | ||
8 | # http://lists.debian.org/debian-boot/2004/07/msg01207.html | ||
9 | |||
10 | exit 1 | ||
diff --git a/debian/openssh-client.config b/debian/openssh-client.config new file mode 100644 index 000000000..736e464ed --- /dev/null +++ b/debian/openssh-client.config | |||
@@ -0,0 +1,26 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | action=$1 | ||
4 | version=$2 | ||
5 | |||
6 | # Source debconf library. | ||
7 | . /usr/share/debconf/confmodule | ||
8 | db_version 2.0 | ||
9 | |||
10 | if [ -d /etc/ssh-nonfree ] && [ ! -d /etc/ssh ]; then | ||
11 | version=1.2.27 | ||
12 | cp -a /etc/ssh-nonfree /etc/ssh | ||
13 | fi | ||
14 | |||
15 | # Was ssh-keysign's setuid bit turned off using the obsolete debconf | ||
16 | # question? If so, turn this into a statoverride. (Ugh.) | ||
17 | if 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 | ||
24 | fi | ||
25 | |||
26 | exit 0 | ||
diff --git a/debian/openssh-client.dirs b/debian/openssh-client.dirs new file mode 100644 index 000000000..1da8fba83 --- /dev/null +++ b/debian/openssh-client.dirs | |||
@@ -0,0 +1 @@ | |||
usr/share/lintian/overrides | |||
diff --git a/debian/openssh-client.lintian b/debian/openssh-client.lintian new file mode 100644 index 000000000..8c4bd1751 --- /dev/null +++ b/debian/openssh-client.lintian | |||
@@ -0,0 +1,2 @@ | |||
1 | openssh-client: setuid-binary usr/lib/openssh/ssh-keysign 4755 root/root | ||
2 | openssh-client: no-debconf-templates | ||
diff --git a/debian/openssh-client.postinst b/debian/openssh-client.postinst new file mode 100644 index 000000000..3e33aeb82 --- /dev/null +++ b/debian/openssh-client.postinst | |||
@@ -0,0 +1,115 @@ | |||
1 | #!/bin/sh -e | ||
2 | |||
3 | action="$1" | ||
4 | oldversion="$2" | ||
5 | |||
6 | . /usr/share/debconf/confmodule | ||
7 | db_version 2.0 | ||
8 | |||
9 | umask 022 | ||
10 | |||
11 | if [ "$action" != configure ] | ||
12 | then | ||
13 | exit 0 | ||
14 | fi | ||
15 | |||
16 | |||
17 | fix_rsh_diversion() { | ||
18 | # get rid of mistaken rsh diversion (circa 1.2.27-1) | ||
19 | |||
20 | if [ -L /usr/bin/rsh ] && | ||
21 | dpkg-divert --list '/usr/bin/rsh.real/rsh' | grep -q ' ssh$' ; then | ||
22 | for cmd in rlogin rsh rcp ; do | ||
23 | [ -L /usr/bin/$cmd ] && rm /usr/bin/$cmd | ||
24 | dpkg-divert --package ssh --remove --rename \ | ||
25 | --divert /usr/bin/rsh.real/$cmd /usr/bin/$cmd | ||
26 | |||
27 | [ -L /usr/man/man1/$cmd.1.gz ] && rm /usr/man/man1/$$cmd.1.gz | ||
28 | dpkg-divert --package ssh --remove --rename \ | ||
29 | --divert /usr/man/man1/$cmd.real.1.gz /usr/man/man1/$cmd.1.gz | ||
30 | done | ||
31 | |||
32 | rmdir /usr/bin/rsh.real | ||
33 | fi | ||
34 | } | ||
35 | |||
36 | create_alternatives() { | ||
37 | # Create alternatives for the various r* tools. | ||
38 | # Make sure we don't change existing alternatives that a user might have | ||
39 | # changed, but clean up after some old alternatives that mistakenly pointed | ||
40 | # rlogin and rcp to ssh. | ||
41 | update-alternatives --quiet --remove rlogin /usr/bin/ssh | ||
42 | update-alternatives --quiet --remove rcp /usr/bin/ssh | ||
43 | for cmd in rsh rlogin rcp; do | ||
44 | scmd="s${cmd#r}" | ||
45 | if ! update-alternatives --display "$cmd" | \ | ||
46 | grep -q "$scmd"; then | ||
47 | update-alternatives --quiet --install "/usr/bin/$cmd" "$cmd" "/usr/bin/$scmd" 20 \ | ||
48 | --slave "/usr/share/man/man1/$cmd.1.gz" "$cmd.1.gz" "/usr/share/man/man1/$scmd.1.gz" | ||
49 | fi | ||
50 | done | ||
51 | } | ||
52 | |||
53 | set_ssh_permissions() { | ||
54 | if dpkg --compare-versions "$oldversion" lt-nl 1:3.4p1-1 ; then | ||
55 | if [ -x /usr/sbin/dpkg-statoverride ] ; then | ||
56 | if dpkg-statoverride --list /usr/bin/ssh >/dev/null; then | ||
57 | dpkg-statoverride --remove /usr/bin/ssh >/dev/null | ||
58 | fi | ||
59 | fi | ||
60 | fi | ||
61 | |||
62 | # libexecdir changed, so migrate old statoverrides. | ||
63 | if [ -x /usr/sbin/dpkg-statoverride ] && | ||
64 | override="$(dpkg-statoverride --list /usr/lib/ssh-keysign)"; then | ||
65 | override_user="${override%% *}" | ||
66 | override="${override#* }" | ||
67 | override_group="${override%% *}" | ||
68 | override="${override#* }" | ||
69 | override_mode="${override%% *}" | ||
70 | if dpkg-statoverride --update --add \ | ||
71 | "$override_user" "$override_group" "$override_mode" \ | ||
72 | /usr/lib/openssh/ssh-keysign; then | ||
73 | dpkg-statoverride --remove /usr/lib/ssh-keysign || true | ||
74 | fi | ||
75 | fi | ||
76 | } | ||
77 | |||
78 | fix_ssh_group() { | ||
79 | # Try to remove non-system group mistakenly created by 1:3.5p1-1. | ||
80 | # set_ssh_agent_permissions() below will re-create it properly. | ||
81 | if getent group ssh >/dev/null; then | ||
82 | delgroup --quiet ssh || true | ||
83 | fi | ||
84 | } | ||
85 | |||
86 | set_ssh_agent_permissions() { | ||
87 | if ! getent group ssh >/dev/null; then | ||
88 | addgroup --system --quiet ssh | ||
89 | fi | ||
90 | if ! [ -x /usr/sbin/dpkg-statoverride ] || \ | ||
91 | ! dpkg-statoverride --list /usr/bin/ssh-agent >/dev/null ; then | ||
92 | chgrp ssh /usr/bin/ssh-agent | ||
93 | chmod 2755 /usr/bin/ssh-agent | ||
94 | fi | ||
95 | } | ||
96 | |||
97 | commit_transfer_conffile () { | ||
98 | CONFFILE="$1" | ||
99 | if [ -e "$CONFFILE.moved-by-preinst" ]; then | ||
100 | rm -f "$CONFFILE.moved-by-preinst" | ||
101 | fi | ||
102 | } | ||
103 | |||
104 | |||
105 | fix_rsh_diversion | ||
106 | create_alternatives | ||
107 | set_ssh_permissions | ||
108 | if [ "$2" = "1:3.5p1-1" ]; then | ||
109 | fix_ssh_group | ||
110 | fi | ||
111 | set_ssh_agent_permissions | ||
112 | commit_transfer_conffile /etc/ssh/moduli | ||
113 | commit_transfer_conffile /etc/ssh/ssh_config | ||
114 | |||
115 | exit 0 | ||
diff --git a/debian/openssh-client.postrm b/debian/openssh-client.postrm new file mode 100644 index 000000000..4d52a7beb --- /dev/null +++ b/debian/openssh-client.postrm | |||
@@ -0,0 +1,32 @@ | |||
1 | #!/bin/sh -e | ||
2 | |||
3 | #DEBHELPER# | ||
4 | |||
5 | abort_transfer_conffile () { | ||
6 | CONFFILE="$1" | ||
7 | if [ -e "$CONFFILE.moved-by-preinst" ]; then | ||
8 | echo >&2 "Aborting ownership transfer of conffile $CONFFILE ..." | ||
9 | mv -f "$CONFFILE.moved-by-preinst" "$CONFFILE" | ||
10 | return 0 | ||
11 | fi | ||
12 | } | ||
13 | |||
14 | case $1 in | ||
15 | abort-install|abort-upgrade) | ||
16 | abort_transfer_conffile /etc/ssh/moduli | ||
17 | abort_transfer_conffile /etc/ssh/ssh_config | ||
18 | ;; | ||
19 | purge) | ||
20 | # Remove all non-conffiles that ssh might create, so that we | ||
21 | # can smoothly remove /etc/ssh if and only if the user | ||
22 | # hasn't dropped some other files in there. Conffiles have | ||
23 | # already been removed at this point. | ||
24 | rm -f /etc/ssh/moduli /etc/ssh/primes | ||
25 | rm -f /etc/ssh/ssh_known_hosts /etc/ssh/ssh_known_hosts2 | ||
26 | rmdir --ignore-fail-on-non-empty /etc/ssh | ||
27 | |||
28 | delgroup --quiet ssh > /dev/null || true | ||
29 | ;; | ||
30 | esac | ||
31 | |||
32 | exit 0 | ||
diff --git a/debian/openssh-client.preinst b/debian/openssh-client.preinst new file mode 100644 index 000000000..0b29c051d --- /dev/null +++ b/debian/openssh-client.preinst | |||
@@ -0,0 +1,49 @@ | |||
1 | #! /bin/sh -e | ||
2 | |||
3 | ETC_SSH_MODULI=@ETC_SSH_MODULI@ | ||
4 | |||
5 | ETC_SSH_SSH_CONFIG=@ETC_SSH_SSH_CONFIG@ | ||
6 | |||
7 | action="$1" | ||
8 | version="$2" | ||
9 | |||
10 | prepare_transfer_conffile () { | ||
11 | CONFFILE="$1" | ||
12 | TEXT="$2" | ||
13 | MODE="$3" | ||
14 | [ "$CONFFILES" ] || return 0 | ||
15 | [ -e "$CONFFILE" ] || return 0 | ||
16 | |||
17 | md5sum="$(md5sum "$CONFFILE" |sed -e 's/ .*//')" | ||
18 | old_md5sum="$(echo "$CONFFILES" | awk '$1 == "'"$CONFFILE"'" { print $2 }')" | ||
19 | if [ "$md5sum" = "$old_md5sum" ]; then | ||
20 | echo >&2 "Transferring ownership of conffile $CONFFILE ..." | ||
21 | # We have to write out the desired new text of the conffile, | ||
22 | # which is tricky in the preinst, hence the nasty way we | ||
23 | # have to hardcode the text here. Fortunately, this is only | ||
24 | # necessary with sarge's dpkg and older. | ||
25 | if echo "$TEXT" | head -n1 | grep -q '^@.*@$'; then | ||
26 | echo >&2 'Unsubstituted conffile text! Please report this bug.' | ||
27 | exit 1 | ||
28 | fi | ||
29 | printf '%s' "$TEXT" >"$CONFFILE.dpkg-new" | ||
30 | chmod "$MODE" "$CONFFILE.dpkg-new" | ||
31 | mv -f "$CONFFILE" "$CONFFILE.moved-by-preinst" | ||
32 | mv -f "$CONFFILE.dpkg-new" "$CONFFILE" | ||
33 | return 0 | ||
34 | fi | ||
35 | } | ||
36 | |||
37 | case $action in | ||
38 | install|upgrade) | ||
39 | if dpkg --compare-versions "$version" lt 0; then | ||
40 | CONFFILES="$(dpkg-query -W -f '${Conffiles}\n' ssh 2>/dev/null | sed 's/^ *//')" | ||
41 | prepare_transfer_conffile /etc/ssh/moduli "$ETC_SSH_MODULI" 0644 | ||
42 | prepare_transfer_conffile /etc/ssh/ssh_config "$ETC_SSH_SSH_CONFIG" 0644 | ||
43 | fi | ||
44 | ;; | ||
45 | esac | ||
46 | |||
47 | #DEBHELPER# | ||
48 | |||
49 | exit 0 | ||
diff --git a/debian/openssh-client.prerm b/debian/openssh-client.prerm new file mode 100644 index 000000000..2d631cb9c --- /dev/null +++ b/debian/openssh-client.prerm | |||
@@ -0,0 +1,39 @@ | |||
1 | #! /bin/sh | ||
2 | # prerm script for ssh | ||
3 | # | ||
4 | # see: dh_installdeb(1) | ||
5 | |||
6 | set -e | ||
7 | |||
8 | # summary of how this script can be called: | ||
9 | # * <prerm> `remove' | ||
10 | # * <old-prerm> `upgrade' <new-version> | ||
11 | # * <new-prerm> `failed-upgrade' <old-version> | ||
12 | # * <conflictor's-prerm> `remove' `in-favour' <package> <new-version> | ||
13 | # * <deconfigured's-prerm> `deconfigure' `in-favour' | ||
14 | # <package-being-installed> <version> `removing' | ||
15 | # <conflicting-package> <version> | ||
16 | # for details, see /usr/share/doc/packaging-manual/ | ||
17 | |||
18 | case "$1" in | ||
19 | remove|deconfigure) | ||
20 | update-alternatives --quiet --remove rsh /usr/bin/ssh | ||
21 | update-alternatives --quiet --remove rlogin /usr/bin/slogin | ||
22 | update-alternatives --quiet --remove rcp /usr/bin/scp | ||
23 | ;; | ||
24 | upgrade) | ||
25 | ;; | ||
26 | failed-upgrade) | ||
27 | ;; | ||
28 | *) | ||
29 | echo "prerm called with unknown argument \`$1'" >&2 | ||
30 | exit 0 | ||
31 | ;; | ||
32 | esac | ||
33 | |||
34 | # dh_installdeb will replace this with shell code automatically | ||
35 | # generated by other debhelper scripts. | ||
36 | |||
37 | #DEBHELPER# | ||
38 | |||
39 | exit 0 | ||
diff --git a/debian/openssh-server-udeb.dirs b/debian/openssh-server-udeb.dirs new file mode 100644 index 000000000..f2b0bd9da --- /dev/null +++ b/debian/openssh-server-udeb.dirs | |||
@@ -0,0 +1,3 @@ | |||
1 | usr/bin | ||
2 | usr/sbin | ||
3 | var/run/sshd | ||
diff --git a/debian/openssh-server.config b/debian/openssh-server.config new file mode 100644 index 000000000..f8ba7c7f7 --- /dev/null +++ b/debian/openssh-server.config | |||
@@ -0,0 +1,76 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | action=$1 | ||
4 | version=$2 | ||
5 | |||
6 | # Source debconf library. | ||
7 | . /usr/share/debconf/confmodule | ||
8 | db_version 2.0 | ||
9 | |||
10 | |||
11 | get_config_option() { | ||
12 | option="$1" | ||
13 | |||
14 | [ -f /etc/ssh/sshd_config ] || return | ||
15 | |||
16 | # TODO: actually only one '=' allowed after option | ||
17 | perl -ne 'print if s/^[[:space:]]*'"$option"'[[:space:]=]+//i' \ | ||
18 | /etc/ssh/sshd_config 2>/dev/null | ||
19 | } | ||
20 | |||
21 | |||
22 | if [ -e /etc/init.d/ssh ] && ! grep -q pidfile /etc/init.d/ssh | ||
23 | then | ||
24 | db_fset ssh/use_old_init_script seen false | ||
25 | db_input medium ssh/use_old_init_script || true | ||
26 | db_go | ||
27 | |||
28 | db_get ssh/use_old_init_script | ||
29 | [ "$RET" = "false" ] && exit 0 | ||
30 | else | ||
31 | db_set ssh/use_old_init_script true | ||
32 | db_fset ssh/use_old_init_script seen true | ||
33 | fi | ||
34 | |||
35 | if [ -e /etc/ssh/sshd_config ] | ||
36 | then | ||
37 | if dpkg --compare-versions "$version" lt-nl 1:1.3 ; | ||
38 | then db_input medium ssh/new_config || true | ||
39 | db_go | ||
40 | fi | ||
41 | |||
42 | # An empty version means we're upgrading from before the package split, | ||
43 | # so check. | ||
44 | if dpkg --compare-versions "$version" lt 1:3.8.1p1-11 | ||
45 | then | ||
46 | passwordauth="$(get_config_option PasswordAuthentication)" | ||
47 | crauth="$(get_config_option ChallengeResponseAuthentication)" | ||
48 | if [ "$passwordauth" = no ] && \ | ||
49 | ([ -z "$crauth" ] || [ "$crauth" = yes ]) | ||
50 | then | ||
51 | db_input critical ssh/disable_cr_auth || true | ||
52 | fi | ||
53 | fi | ||
54 | fi | ||
55 | |||
56 | key=/etc/ssh/ssh_host_key | ||
57 | export key | ||
58 | if [ -n "$version" ] && [ -f $key ] && [ ! -x /usr/bin/ssh-keygen ] && | ||
59 | dpkg --compare-versions "$version" lt 1.2.28 | ||
60 | then | ||
61 | # make sure that keys get updated to get rid of IDEA; preinst | ||
62 | # actually does the work, but if the old ssh-keygen is not found, | ||
63 | # it can't do that -- thus, we tell the user that he must create | ||
64 | # a new host key. | ||
65 | echo -en '\0\0' | 3<&0 sh -c \ | ||
66 | 'dd if=$key bs=1 skip=32 count=2 2>/dev/null | cmp -s - /dev/fd/3' || { | ||
67 | # this means that bytes 32&33 of the key were not both zero, in which | ||
68 | # case the key is encrypted, which we need to fix | ||
69 | db_input high ssh/encrypted_host_key_but_no_keygen || true | ||
70 | } | ||
71 | fi | ||
72 | |||
73 | |||
74 | db_go | ||
75 | |||
76 | exit 0 | ||
diff --git a/debian/openssh-server.default b/debian/openssh-server.default new file mode 100644 index 000000000..304042224 --- /dev/null +++ b/debian/openssh-server.default | |||
@@ -0,0 +1,5 @@ | |||
1 | # Default settings for openssh-server. This file is sourced by /bin/sh from | ||
2 | # /etc/init.d/ssh. | ||
3 | |||
4 | # Options to pass to sshd | ||
5 | SSHD_OPTS= | ||
diff --git a/debian/openssh-server.dirs b/debian/openssh-server.dirs new file mode 100644 index 000000000..7cc4c0d84 --- /dev/null +++ b/debian/openssh-server.dirs | |||
@@ -0,0 +1,8 @@ | |||
1 | etc/init.d | ||
2 | etc/default | ||
3 | etc/network/if-up.d | ||
4 | usr/lib/openssh | ||
5 | usr/sbin | ||
6 | usr/share/man/man5 | ||
7 | usr/share/man/man8 | ||
8 | var/run/sshd | ||
diff --git a/debian/openssh-server.if-up b/debian/openssh-server.if-up new file mode 100644 index 000000000..c44a4d257 --- /dev/null +++ b/debian/openssh-server.if-up | |||
@@ -0,0 +1,30 @@ | |||
1 | #! /bin/sh | ||
2 | # Reload the OpenSSH server when an interface comes up, to allow it to start | ||
3 | # listening on new addresses. | ||
4 | |||
5 | set -e | ||
6 | |||
7 | # Don't bother to restart sshd when lo is configured. | ||
8 | if [ "$IFACE" = lo ]; then | ||
9 | exit 0 | ||
10 | fi | ||
11 | |||
12 | # Only run from ifup. | ||
13 | if [ "$MODE" != start ]; then | ||
14 | exit 0 | ||
15 | fi | ||
16 | |||
17 | # OpenSSH only cares about inet and inet6. Get thee gone, strange people | ||
18 | # still using ipx. | ||
19 | if [ "$ADDRFAM" != inet ] && [ "$ADDRFAM" != inet6 ]; then | ||
20 | exit 0 | ||
21 | fi | ||
22 | |||
23 | # Is /usr mounted? | ||
24 | if [ ! -e /usr/sbin/sshd ]; then | ||
25 | exit 0 | ||
26 | fi | ||
27 | |||
28 | /etc/init.d/ssh reload >/dev/null 2>&1 || true | ||
29 | |||
30 | exit 0 | ||
diff --git a/debian/openssh-server.init b/debian/openssh-server.init new file mode 100644 index 000000000..59f45edd0 --- /dev/null +++ b/debian/openssh-server.init | |||
@@ -0,0 +1,154 @@ | |||
1 | #! /bin/sh | ||
2 | |||
3 | ### BEGIN INIT INFO | ||
4 | # Provides: sshd | ||
5 | # Required-Start: $network $local_fs $remote_fs | ||
6 | # Required-Stop: | ||
7 | # Default-Start: 2 3 4 5 | ||
8 | # Default-Stop: 0 1 6 | ||
9 | # Short-Description: OpenBSD Secure Shell server | ||
10 | ### END INIT INFO | ||
11 | |||
12 | set -e | ||
13 | |||
14 | # /etc/init.d/ssh: start and stop the OpenBSD "secure shell(tm)" daemon | ||
15 | |||
16 | test -x /usr/sbin/sshd || exit 0 | ||
17 | ( /usr/sbin/sshd -\? 2>&1 | grep -q OpenSSH ) 2>/dev/null || exit 0 | ||
18 | |||
19 | if test -f /etc/default/ssh; then | ||
20 | . /etc/default/ssh | ||
21 | fi | ||
22 | |||
23 | . /lib/lsb/init-functions | ||
24 | |||
25 | # Are we running from init? | ||
26 | run_by_init() { | ||
27 | ([ "$previous" ] && [ "$runlevel" ]) || [ "$runlevel" = S ] | ||
28 | } | ||
29 | |||
30 | check_for_no_start() { | ||
31 | # forget it if we're trying to start, and /etc/ssh/sshd_not_to_be_run exists | ||
32 | if [ -e /etc/ssh/sshd_not_to_be_run ]; then | ||
33 | if [ "$1" = log_end_msg ]; then | ||
34 | log_end_msg 0 | ||
35 | fi | ||
36 | if ! run_by_init; then | ||
37 | log_action_msg "OpenBSD Secure Shell server not in use (/etc/ssh/sshd_not_to_be_run)" | ||
38 | fi | ||
39 | exit 0 | ||
40 | fi | ||
41 | } | ||
42 | |||
43 | check_dev_null() { | ||
44 | if [ ! -c /dev/null ]; then | ||
45 | if [ "$1" = log_end_msg ]; then | ||
46 | log_end_msg 1 || true | ||
47 | fi | ||
48 | if ! run_by_init; then | ||
49 | log_action_msg "/dev/null is not a character device!" | ||
50 | fi | ||
51 | exit 1 | ||
52 | fi | ||
53 | } | ||
54 | |||
55 | check_privsep_dir() { | ||
56 | # Create the PrivSep empty dir if necessary | ||
57 | if [ ! -d /var/run/sshd ]; then | ||
58 | mkdir /var/run/sshd | ||
59 | chmod 0755 /var/run/sshd | ||
60 | fi | ||
61 | } | ||
62 | |||
63 | check_config() { | ||
64 | if [ ! -e /etc/ssh/sshd_not_to_be_run ]; then | ||
65 | /usr/sbin/sshd -t || exit 1 | ||
66 | fi | ||
67 | } | ||
68 | |||
69 | export PATH="${PATH:+$PATH:}/usr/sbin:/sbin" | ||
70 | |||
71 | case "$1" in | ||
72 | start) | ||
73 | check_for_no_start | ||
74 | check_dev_null | ||
75 | log_daemon_msg "Starting OpenBSD Secure Shell server" "sshd" | ||
76 | check_privsep_dir | ||
77 | if start-stop-daemon --start --quiet --oknodo --pidfile /var/run/sshd.pid --exec /usr/sbin/sshd -- $SSHD_OPTS; then | ||
78 | log_end_msg 0 | ||
79 | else | ||
80 | log_end_msg 1 | ||
81 | fi | ||
82 | ;; | ||
83 | stop) | ||
84 | log_daemon_msg "Stopping OpenBSD Secure Shell server" "sshd" | ||
85 | if start-stop-daemon --stop --quiet --oknodo --pidfile /var/run/sshd.pid; then | ||
86 | log_end_msg 0 | ||
87 | else | ||
88 | log_end_msg 1 | ||
89 | fi | ||
90 | ;; | ||
91 | |||
92 | reload|force-reload) | ||
93 | check_for_no_start | ||
94 | check_config | ||
95 | log_daemon_msg "Reloading OpenBSD Secure Shell server's configuration" "sshd" | ||
96 | if start-stop-daemon --stop --signal 1 --quiet --oknodo --pidfile /var/run/sshd.pid --exec /usr/sbin/sshd; then | ||
97 | log_end_msg 0 | ||
98 | else | ||
99 | log_end_msg 1 | ||
100 | fi | ||
101 | ;; | ||
102 | |||
103 | restart) | ||
104 | check_privsep_dir | ||
105 | check_config | ||
106 | log_daemon_msg "Restarting OpenBSD Secure Shell server" "sshd" | ||
107 | start-stop-daemon --stop --quiet --oknodo --retry 30 --pidfile /var/run/sshd.pid | ||
108 | check_for_no_start log_end_msg | ||
109 | check_dev_null log_end_msg | ||
110 | if start-stop-daemon --start --quiet --oknodo --pidfile /var/run/sshd.pid --exec /usr/sbin/sshd -- $SSHD_OPTS; then | ||
111 | log_end_msg 0 | ||
112 | else | ||
113 | log_end_msg 1 | ||
114 | fi | ||
115 | ;; | ||
116 | |||
117 | try-restart) | ||
118 | check_privsep_dir | ||
119 | check_config | ||
120 | log_daemon_msg "Restarting OpenBSD Secure Shell server" "sshd" | ||
121 | set +e | ||
122 | start-stop-daemon --stop --quiet --retry 30 --pidfile /var/run/sshd.pid | ||
123 | RET="$?" | ||
124 | set -e | ||
125 | case $RET in | ||
126 | 0) | ||
127 | # old daemon stopped | ||
128 | check_for_no_start log_end_msg | ||
129 | check_dev_null log_end_msg | ||
130 | if start-stop-daemon --start --quiet --oknodo --pidfile /var/run/sshd.pid --exec /usr/sbin/sshd -- $SSHD_OPTS; then | ||
131 | log_end_msg 0 | ||
132 | else | ||
133 | log_end_msg 1 | ||
134 | fi | ||
135 | ;; | ||
136 | 1) | ||
137 | # daemon not running | ||
138 | log_progress_msg "(not running)" | ||
139 | log_end_msg 0 | ||
140 | ;; | ||
141 | *) | ||
142 | # failed to stop | ||
143 | log_progress_msg "(failed to stop)" | ||
144 | log_end_msg 1 | ||
145 | ;; | ||
146 | esac | ||
147 | ;; | ||
148 | |||
149 | *) | ||
150 | log_action_msg "Usage: /etc/init.d/ssh {start|stop|reload|force-reload|restart|try-restart}" | ||
151 | exit 1 | ||
152 | esac | ||
153 | |||
154 | exit 0 | ||
diff --git a/debian/openssh-server.links b/debian/openssh-server.links new file mode 100644 index 000000000..d9bb08420 --- /dev/null +++ b/debian/openssh-server.links | |||
@@ -0,0 +1,2 @@ | |||
1 | usr/lib/openssh/sftp-server usr/lib/sftp-server | ||
2 | usr/share/doc/openssh-client usr/share/doc/openssh-server | ||
diff --git a/debian/openssh-server.postinst b/debian/openssh-server.postinst new file mode 100644 index 000000000..e73d3957c --- /dev/null +++ b/debian/openssh-server.postinst | |||
@@ -0,0 +1,399 @@ | |||
1 | #!/bin/sh -e | ||
2 | |||
3 | action="$1" | ||
4 | oldversion="$2" | ||
5 | |||
6 | . /usr/share/debconf/confmodule | ||
7 | db_version 2.0 | ||
8 | |||
9 | umask 022 | ||
10 | |||
11 | if [ "$action" != configure ] | ||
12 | then | ||
13 | exit 0 | ||
14 | fi | ||
15 | |||
16 | |||
17 | fix_doc_symlink() { | ||
18 | if [ ! -L /usr/share/doc/openssh-server ] && \ | ||
19 | dpkg --compare-versions "$oldversion" lt-nl 1:4.1p1-5; then | ||
20 | rm -rf /usr/share/doc/openssh-server | ||
21 | ln -s openssh-client /usr/share/doc/openssh-server | ||
22 | fi | ||
23 | } | ||
24 | |||
25 | check_idea_key() { | ||
26 | # check for old host_key files using IDEA, which openssh does not | ||
27 | # support | ||
28 | if [ -f /etc/ssh/ssh_host_key ] ; then | ||
29 | cp -a /etc/ssh/ssh_host_key /etc/ssh/ssh_host_key.check_idea | ||
30 | if ssh-keygen -p -N '' -f /etc/ssh/ssh_host_key.check_idea 2>&1 | \ | ||
31 | grep -q 'unknown cipher' 2>/dev/null; then | ||
32 | mv /etc/ssh/ssh_host_key /etc/ssh/ssh_host_key.old | ||
33 | mv /etc/ssh/ssh_host_key.pub /etc/ssh/ssh_host_key.pub.old | ||
34 | fi | ||
35 | rm -f /etc/ssh/ssh_host_key.check_idea | ||
36 | fi | ||
37 | } | ||
38 | |||
39 | |||
40 | get_config_option() { | ||
41 | option="$1" | ||
42 | |||
43 | [ -f /etc/ssh/sshd_config ] || return | ||
44 | |||
45 | # TODO: actually only one '=' allowed after option | ||
46 | perl -lne 's/\s+/ /g; print if s/^\s*'"$option"'[[:space:]=]+//i' \ | ||
47 | /etc/ssh/sshd_config | ||
48 | } | ||
49 | |||
50 | |||
51 | set_config_option() { | ||
52 | option="$1" | ||
53 | value="$2" | ||
54 | |||
55 | perl -le ' | ||
56 | $option = $ARGV[0]; $value = $ARGV[1]; $done = 0; | ||
57 | while (<STDIN>) { | ||
58 | chomp; | ||
59 | (my $match = $_) =~ s/\s+/ /g; | ||
60 | if ($match =~ s/^\s*\Q$option\E\s+.*/$option $value/) { | ||
61 | $_ = $match; | ||
62 | $done = 1; | ||
63 | } | ||
64 | print; | ||
65 | } | ||
66 | print "$option $value" unless $done;' \ | ||
67 | "$option" "$value" \ | ||
68 | < /etc/ssh/sshd_config > /etc/ssh/sshd_config.dpkg-new | ||
69 | chown --reference /etc/ssh/sshd_config /etc/ssh/sshd_config.dpkg-new | ||
70 | chmod --reference /etc/ssh/sshd_config /etc/ssh/sshd_config.dpkg-new | ||
71 | mv /etc/ssh/sshd_config.dpkg-new /etc/ssh/sshd_config | ||
72 | } | ||
73 | |||
74 | |||
75 | disable_config_option() { | ||
76 | option="$1" | ||
77 | |||
78 | value="$(get_config_option "$option")" | ||
79 | [ "$value" ] || return 0 | ||
80 | |||
81 | perl -le ' | ||
82 | $option = $ARGV[0]; | ||
83 | while (<STDIN>) { | ||
84 | chomp; | ||
85 | (my $match = $_) =~ s/\s+/ /g; | ||
86 | # TODO: actually only one "=" allowed after option | ||
87 | if ($match =~ s/^(\s*\Q$option\E[[:space:]=]+.*)/#$1/i) { | ||
88 | $_ = $match; | ||
89 | } | ||
90 | print; | ||
91 | }' \ | ||
92 | "$option" \ | ||
93 | < /etc/ssh/sshd_config > /etc/ssh/sshd_config.dpkg-new | ||
94 | chown --reference /etc/ssh/sshd_config /etc/ssh/sshd_config.dpkg-new | ||
95 | chmod --reference /etc/ssh/sshd_config /etc/ssh/sshd_config.dpkg-new | ||
96 | mv /etc/ssh/sshd_config.dpkg-new /etc/ssh/sshd_config | ||
97 | } | ||
98 | |||
99 | |||
100 | remove_obsolete_gssapi() { | ||
101 | disable_config_option GSSAPINoMICAuthentication | ||
102 | disable_config_option GSSUseSessionCCache | ||
103 | disable_config_option GSSAPIUseSessionCredCache | ||
104 | } | ||
105 | |||
106 | |||
107 | host_keys_required() { | ||
108 | hostkeys="$(get_config_option HostKey)" | ||
109 | if [ "$hostkeys" ]; then | ||
110 | echo "$hostkeys" | ||
111 | else | ||
112 | # No HostKey directives at all, so the server picks some | ||
113 | # defaults depending on the setting of Protocol. | ||
114 | protocol="$(get_config_option Protocol)" | ||
115 | [ "$protocol" ] || protocol=1,2 | ||
116 | if echo "$protocol" | grep 1 >/dev/null; then | ||
117 | echo /etc/ssh/ssh_host_key | ||
118 | fi | ||
119 | if echo "$protocol" | grep 2 >/dev/null; then | ||
120 | echo /etc/ssh/ssh_host_rsa_key | ||
121 | echo /etc/ssh/ssh_host_dsa_key | ||
122 | fi | ||
123 | fi | ||
124 | } | ||
125 | |||
126 | |||
127 | create_key() { | ||
128 | msg="$1" | ||
129 | shift | ||
130 | hostkeys="$1" | ||
131 | shift | ||
132 | file="$1" | ||
133 | shift | ||
134 | |||
135 | if echo "$hostkeys" | grep -x "$file" >/dev/null && \ | ||
136 | [ ! -f "$file" ] ; then | ||
137 | echo -n $msg | ||
138 | ssh-keygen -q -f "$file" -N '' "$@" | ||
139 | echo | ||
140 | if type restorecon >/dev/null 2>&1; then | ||
141 | restorecon "$file.pub" | ||
142 | fi | ||
143 | fi | ||
144 | } | ||
145 | |||
146 | |||
147 | create_keys() { | ||
148 | hostkeys="$(host_keys_required)" | ||
149 | |||
150 | create_key "Creating SSH1 key; this may take some time ..." \ | ||
151 | "$hostkeys" /etc/ssh/ssh_host_key -t rsa1 | ||
152 | |||
153 | create_key "Creating SSH2 RSA key; this may take some time ..." \ | ||
154 | "$hostkeys" /etc/ssh/ssh_host_rsa_key -t rsa | ||
155 | create_key "Creating SSH2 DSA key; this may take some time ..." \ | ||
156 | "$hostkeys" /etc/ssh/ssh_host_dsa_key -t dsa | ||
157 | } | ||
158 | |||
159 | |||
160 | check_password_auth() { | ||
161 | passwordauth="$(get_config_option PasswordAuthentication)" | ||
162 | crauth="$(get_config_option ChallengeResponseAuthentication)" | ||
163 | if [ "$passwordauth" = no ] && \ | ||
164 | ([ -z "$crauth" ] || [ "$crauth" = yes ]); then | ||
165 | db_get ssh/disable_cr_auth | ||
166 | if [ "$RET" = true ]; then | ||
167 | set_config_option ChallengeResponseAuthentication no | ||
168 | fi | ||
169 | fi | ||
170 | } | ||
171 | |||
172 | |||
173 | move_subsystem_sftp() { | ||
174 | subsystem_sftp="$(get_config_option 'Subsystem sftp')" | ||
175 | if [ "$subsystem_sftp" = /usr/lib/sftp-server ] || \ | ||
176 | [ "$subsystem_sftp" = /usr/libexec/sftp-server ]; then | ||
177 | set_config_option 'Subsystem sftp' /usr/lib/openssh/sftp-server | ||
178 | fi | ||
179 | } | ||
180 | |||
181 | |||
182 | create_sshdconfig() { | ||
183 | if [ -e /etc/ssh/sshd_config ] ; then | ||
184 | if dpkg --compare-versions "$oldversion" lt-nl 1:1.3 ; then | ||
185 | db_get ssh/new_config | ||
186 | if [ "$RET" = "false" ] ; then return 0; fi | ||
187 | else | ||
188 | # Upgrade sshd configuration from a sane version. | ||
189 | |||
190 | if (dpkg --compare-versions "$oldversion" lt-nl 1:3.8p1-1 && \ | ||
191 | ! grep -iq ^UsePAM /etc/ssh/sshd_config) || \ | ||
192 | grep -Eiq '^(PAMAuthenticationViaKbdInt|RhostsAuthentication)' \ | ||
193 | /etc/ssh/sshd_config ; then | ||
194 | # Upgrade from pre-3.7: UsePAM needed to maintain standard | ||
195 | # Debian configuration. | ||
196 | # Note that --compare-versions is sadly not reliable enough | ||
197 | # here due to the package split of ssh into openssh-client | ||
198 | # and openssh-server. The extra grep for some deprecated | ||
199 | # options should with any luck be a good enough heuristic. | ||
200 | echo -n 'Upgrading sshd_config (old version in .dpkg-old) ...' | ||
201 | cp -a /etc/ssh/sshd_config /etc/ssh/sshd_config.dpkg-old | ||
202 | perl -pe 's/^(PAMAuthenticationViaKbdInt|RhostsAuthentication)\b/#$1/i' \ | ||
203 | /etc/ssh/sshd_config > /etc/ssh/sshd_config.dpkg-new | ||
204 | echo >> /etc/ssh/sshd_config.dpkg-new | ||
205 | echo 'UsePAM yes' >> /etc/ssh/sshd_config.dpkg-new | ||
206 | chown --reference /etc/ssh/sshd_config \ | ||
207 | /etc/ssh/sshd_config.dpkg-new | ||
208 | chmod --reference /etc/ssh/sshd_config \ | ||
209 | /etc/ssh/sshd_config.dpkg-new | ||
210 | mv /etc/ssh/sshd_config.dpkg-new /etc/ssh/sshd_config | ||
211 | echo | ||
212 | fi | ||
213 | |||
214 | # An empty version means we're upgrading from before the | ||
215 | # package split, so check. | ||
216 | if dpkg --compare-versions "$oldversion" lt 1:3.8.1p1-11; then | ||
217 | check_password_auth | ||
218 | fi | ||
219 | |||
220 | # libexecdir changed, so fix up 'Subsystem sftp'. | ||
221 | if dpkg --compare-versions "$oldversion" lt 1:4.1p1-1; then | ||
222 | move_subsystem_sftp | ||
223 | fi | ||
224 | |||
225 | # Remove obsolete GSSAPI options. | ||
226 | if dpkg --compare-versions "$oldversion" lt 1:4.3p2-8; then | ||
227 | remove_obsolete_gssapi | ||
228 | fi | ||
229 | |||
230 | return 0 | ||
231 | fi | ||
232 | fi | ||
233 | |||
234 | #Preserve old sshd_config before generating a new one | ||
235 | if [ -e /etc/ssh/sshd_config ] ; then | ||
236 | mv /etc/ssh/sshd_config /etc/ssh/sshd_config.dpkg-old | ||
237 | fi | ||
238 | |||
239 | cat <<EOF > /etc/ssh/sshd_config | ||
240 | # Package generated configuration file | ||
241 | # See the sshd(8) manpage for details | ||
242 | |||
243 | # What ports, IPs and protocols we listen for | ||
244 | Port 22 | ||
245 | # Use these options to restrict which interfaces/protocols sshd will bind to | ||
246 | #ListenAddress :: | ||
247 | #ListenAddress 0.0.0.0 | ||
248 | Protocol 2 | ||
249 | # HostKeys for protocol version 2 | ||
250 | HostKey /etc/ssh/ssh_host_rsa_key | ||
251 | HostKey /etc/ssh/ssh_host_dsa_key | ||
252 | #Privilege Separation is turned on for security | ||
253 | UsePrivilegeSeparation yes | ||
254 | |||
255 | # Lifetime and size of ephemeral version 1 server key | ||
256 | KeyRegenerationInterval 3600 | ||
257 | ServerKeyBits 768 | ||
258 | |||
259 | # Logging | ||
260 | SyslogFacility AUTH | ||
261 | LogLevel INFO | ||
262 | |||
263 | # Authentication: | ||
264 | LoginGraceTime 120 | ||
265 | PermitRootLogin yes | ||
266 | StrictModes yes | ||
267 | |||
268 | RSAAuthentication yes | ||
269 | PubkeyAuthentication yes | ||
270 | #AuthorizedKeysFile %h/.ssh/authorized_keys | ||
271 | |||
272 | # Don't read the user's ~/.rhosts and ~/.shosts files | ||
273 | IgnoreRhosts yes | ||
274 | # For this to work you will also need host keys in /etc/ssh_known_hosts | ||
275 | RhostsRSAAuthentication no | ||
276 | # similar for protocol version 2 | ||
277 | HostbasedAuthentication no | ||
278 | # Uncomment if you don't trust ~/.ssh/known_hosts for RhostsRSAAuthentication | ||
279 | #IgnoreUserKnownHosts yes | ||
280 | |||
281 | # To enable empty passwords, change to yes (NOT RECOMMENDED) | ||
282 | PermitEmptyPasswords no | ||
283 | |||
284 | # Change to yes to enable challenge-response passwords (beware issues with | ||
285 | # some PAM modules and threads) | ||
286 | ChallengeResponseAuthentication no | ||
287 | |||
288 | # Change to no to disable tunnelled clear text passwords | ||
289 | #PasswordAuthentication yes | ||
290 | |||
291 | # Kerberos options | ||
292 | #KerberosAuthentication no | ||
293 | #KerberosGetAFSToken no | ||
294 | #KerberosOrLocalPasswd yes | ||
295 | #KerberosTicketCleanup yes | ||
296 | |||
297 | # GSSAPI options | ||
298 | #GSSAPIAuthentication no | ||
299 | #GSSAPICleanupCredentials yes | ||
300 | |||
301 | X11Forwarding yes | ||
302 | X11DisplayOffset 10 | ||
303 | PrintMotd no | ||
304 | PrintLastLog yes | ||
305 | TCPKeepAlive yes | ||
306 | #UseLogin no | ||
307 | |||
308 | #MaxStartups 10:30:60 | ||
309 | #Banner /etc/issue.net | ||
310 | |||
311 | # Allow client to pass locale environment variables | ||
312 | AcceptEnv LANG LC_* | ||
313 | |||
314 | Subsystem sftp /usr/lib/openssh/sftp-server | ||
315 | |||
316 | UsePAM yes | ||
317 | EOF | ||
318 | } | ||
319 | |||
320 | fix_statoverride() { | ||
321 | # Remove an erronous override for sshd (we should have overridden ssh) | ||
322 | if [ -x /usr/sbin/dpkg-statoverride ]; then | ||
323 | if dpkg-statoverride --list /usr/sbin/sshd >/dev/null ; then | ||
324 | dpkg-statoverride --remove /usr/sbin/sshd | ||
325 | fi | ||
326 | fi | ||
327 | } | ||
328 | |||
329 | fix_sshd_shell() { | ||
330 | if getent passwd sshd | grep -q ':/bin/false$'; then | ||
331 | usermod -s /usr/sbin/nologin sshd || true | ||
332 | fi | ||
333 | } | ||
334 | |||
335 | setup_sshd_user() { | ||
336 | if ! getent passwd sshd >/dev/null; then | ||
337 | adduser --quiet --system --no-create-home --home /var/run/sshd --shell /usr/sbin/nologin sshd | ||
338 | fi | ||
339 | } | ||
340 | |||
341 | fix_conffile_permissions() { | ||
342 | # Clean up after executable /etc/default/ssh in 1:3.5p1-5. dpkg | ||
343 | # doesn't do this for us; see bug #192981. | ||
344 | chmod 644 /etc/default/ssh | ||
345 | } | ||
346 | |||
347 | remove_old_init_links() { | ||
348 | # Yes, this only works with the SysV init script layout. I know. | ||
349 | # The important thing is that it doesn't actually *break* with | ||
350 | # file-rc ... | ||
351 | if [ -e /etc/rc2.d/S20ssh ]; then | ||
352 | update-rc.d -f ssh remove >/dev/null 2>&1 | ||
353 | fi | ||
354 | rm -f /etc/rc0.d/K20ssh /etc/rc6.d/K20ssh | ||
355 | } | ||
356 | |||
357 | setup_init() { | ||
358 | if [ -x /etc/init.d/ssh ]; then | ||
359 | update-rc.d ssh start 16 2 3 4 5 . stop 84 1 . >/dev/null | ||
360 | if [ -x /usr/sbin/invoke-rc.d ]; then | ||
361 | invoke-rc.d ssh restart | ||
362 | else | ||
363 | /etc/init.d/ssh restart | ||
364 | fi | ||
365 | fi | ||
366 | } | ||
367 | |||
368 | commit_transfer_conffile () { | ||
369 | CONFFILE="$1" | ||
370 | if [ -e "$CONFFILE.moved-by-preinst" ]; then | ||
371 | rm -f "$CONFFILE.moved-by-preinst" | ||
372 | fi | ||
373 | } | ||
374 | |||
375 | |||
376 | fix_doc_symlink | ||
377 | create_sshdconfig | ||
378 | check_idea_key | ||
379 | create_keys | ||
380 | fix_statoverride | ||
381 | if dpkg --compare-versions "$2" lt 1:4.3p2-3; then | ||
382 | fix_sshd_shell | ||
383 | fi | ||
384 | setup_sshd_user | ||
385 | if dpkg --compare-versions "$2" lt 1:3.6.1p2-2; then | ||
386 | fix_conffile_permissions | ||
387 | fi | ||
388 | if dpkg --compare-versions "$2" lt 1:4.6p1-1; then | ||
389 | remove_old_init_links | ||
390 | fi | ||
391 | setup_init | ||
392 | commit_transfer_conffile /etc/default/ssh | ||
393 | commit_transfer_conffile /etc/init.d/ssh | ||
394 | commit_transfer_conffile /etc/pam.d/ssh | ||
395 | |||
396 | |||
397 | db_stop | ||
398 | |||
399 | exit 0 | ||
diff --git a/debian/openssh-server.postrm b/debian/openssh-server.postrm new file mode 100644 index 000000000..32471c718 --- /dev/null +++ b/debian/openssh-server.postrm | |||
@@ -0,0 +1,40 @@ | |||
1 | #!/bin/sh -e | ||
2 | |||
3 | #DEBHELPER# | ||
4 | |||
5 | abort_transfer_conffile () { | ||
6 | CONFFILE="$1" | ||
7 | if [ -e "$CONFFILE.moved-by-preinst" ]; then | ||
8 | echo >&2 "Aborting ownership transfer of conffile $CONFFILE ..." | ||
9 | mv -f "$CONFFILE.moved-by-preinst" "$CONFFILE" | ||
10 | return 0 | ||
11 | fi | ||
12 | } | ||
13 | |||
14 | case $1 in | ||
15 | abort-install|abort-upgrade) | ||
16 | abort_transfer_conffile /etc/default/ssh | ||
17 | abort_transfer_conffile /etc/init.d/ssh | ||
18 | abort_transfer_conffile /etc/pam.d/ssh | ||
19 | ;; | ||
20 | purge) | ||
21 | # Remove all non-conffiles that ssh might create, so that we | ||
22 | # can smoothly remove /etc/ssh if and only if the user | ||
23 | # hasn't dropped some other files in there. Conffiles have | ||
24 | # already been removed at this point. | ||
25 | rm -f /etc/ssh/ssh_host_key /etc/ssh/ssh_host_key.pub | ||
26 | rm -f /etc/ssh/ssh_host_rsa_key /etc/ssh/ssh_host_rsa_key.pub | ||
27 | rm -f /etc/ssh/ssh_host_dsa_key /etc/ssh/ssh_host_dsa_key.pub | ||
28 | rm -f /etc/ssh/sshd_config | ||
29 | rm -f /etc/ssh/sshd_not_to_be_run | ||
30 | rmdir --ignore-fail-on-non-empty /etc/ssh | ||
31 | |||
32 | update-rc.d ssh remove >/dev/null | ||
33 | |||
34 | if type deluser >/dev/null 2>&1; then | ||
35 | deluser --quiet sshd > /dev/null || true | ||
36 | fi | ||
37 | ;; | ||
38 | esac | ||
39 | |||
40 | exit 0 | ||
diff --git a/debian/openssh-server.preinst b/debian/openssh-server.preinst new file mode 100644 index 000000000..87871bdaa --- /dev/null +++ b/debian/openssh-server.preinst | |||
@@ -0,0 +1,122 @@ | |||
1 | #!/bin/sh -e | ||
2 | |||
3 | ETC_DEFAULT_SSH=@ETC_DEFAULT_SSH@ | ||
4 | |||
5 | ETC_INIT_D_SSH=@ETC_INIT_D_SSH@ | ||
6 | |||
7 | ETC_PAM_D_SSH=@ETC_PAM_D_SSH@ | ||
8 | |||
9 | action=$1 | ||
10 | version=$2 | ||
11 | |||
12 | prepare_transfer_conffile () { | ||
13 | CONFFILE="$1" | ||
14 | TEXT="$2" | ||
15 | MODE="$3" | ||
16 | [ "$CONFFILES" ] || return 0 | ||
17 | [ -e "$CONFFILE" ] || return 0 | ||
18 | |||
19 | md5sum="$(md5sum "$CONFFILE" |sed -e 's/ .*//')" | ||
20 | old_md5sum="$(echo "$CONFFILES" | awk '$1 == "'"$CONFFILE"'" { print $2 }')" | ||
21 | if [ "$md5sum" = "$old_md5sum" ]; then | ||
22 | echo >&2 "Transferring ownership of conffile $CONFFILE ..." | ||
23 | # We have to write out the desired new text of the conffile, | ||
24 | # which is tricky in the preinst, hence the nasty way we | ||
25 | # have to hardcode the text here. Fortunately, this is only | ||
26 | # necessary with sarge's dpkg and older. | ||
27 | if echo "$TEXT" | head -n1 | grep -q '^@.*@$'; then | ||
28 | echo >&2 'Unsubstituted conffile text! Please report this bug.' | ||
29 | exit 1 | ||
30 | fi | ||
31 | printf '%s' "$TEXT" >"$CONFFILE.dpkg-new" | ||
32 | chmod "$MODE" "$CONFFILE.dpkg-new" | ||
33 | mv -f "$CONFFILE" "$CONFFILE.moved-by-preinst" | ||
34 | mv -f "$CONFFILE.dpkg-new" "$CONFFILE" | ||
35 | return 0 | ||
36 | fi | ||
37 | } | ||
38 | |||
39 | if [ -d /etc/ssh-nonfree ] && [ ! -d /etc/ssh ]; then | ||
40 | version=1.2.27 | ||
41 | fi | ||
42 | |||
43 | if [ "$action" = upgrade ] || [ "$action" = install ] | ||
44 | then | ||
45 | # check if debconf is missing | ||
46 | if ! test -f /usr/share/debconf/confmodule | ||
47 | then | ||
48 | cat <<EOF | ||
49 | |||
50 | WARNING: ssh's pre-configuration script relies on debconf to tell you | ||
51 | about some problems that might prevent you from logging in if you are | ||
52 | upgrading from the old, Non-free version of ssh. | ||
53 | |||
54 | If this is a new installation, you don't need to worry about this. | ||
55 | Just go ahead and install ssh (make sure to read .../ssh/README.Debian). | ||
56 | |||
57 | If you are upgrading, but you have alternative ways of logging into | ||
58 | the machine (i.e. you're sitting in front of it, or you have telnetd | ||
59 | running), then you also don't need to worry too much, because you can | ||
60 | fix it up afterwards if there's a problem. | ||
61 | |||
62 | If you're upgrading from an older (non-free) version of ssh, and ssh | ||
63 | is the only way you have to access this machine, then you should | ||
64 | probably abort the installation of ssh, install debconf, and then | ||
65 | retry the installation of ssh. | ||
66 | |||
67 | EOF | ||
68 | echo -n "Do you want to install SSH anyway [yN]: " | ||
69 | read input | ||
70 | expr "$input" : '[Yy]' >/dev/null || exit 1 | ||
71 | |||
72 | # work around for missing debconf | ||
73 | db_get() { : ; } | ||
74 | RET=true | ||
75 | if [ -d /etc/ssh-nonfree ] && [ ! -d /etc/ssh ]; then | ||
76 | cp -a /etc/ssh-nonfree /etc/ssh | ||
77 | fi | ||
78 | else | ||
79 | # Source debconf library. | ||
80 | . /usr/share/debconf/confmodule | ||
81 | db_version 2.0 | ||
82 | fi | ||
83 | |||
84 | db_get ssh/use_old_init_script | ||
85 | if [ "$RET" = "false" ]; then | ||
86 | echo "ssh config: Aborting because ssh/use_old_init_script = false" >&2 | ||
87 | exit 1 | ||
88 | fi | ||
89 | |||
90 | # deal with upgrading from pre-OpenSSH versions | ||
91 | key=/etc/ssh/ssh_host_key | ||
92 | export key | ||
93 | if [ -n "$version" ] && [ -x /usr/bin/ssh-keygen ] && [ -f $key ] && | ||
94 | dpkg --compare-versions "$version" lt 1.2.28 | ||
95 | then | ||
96 | # make sure that keys get updated to get rid of IDEA | ||
97 | # | ||
98 | # N.B. this only works because we've still got the old | ||
99 | # nonfree ssh-keygen at this point | ||
100 | # | ||
101 | # First, check if we need to bother | ||
102 | echo -en '\0\0' | 3<&0 sh -c \ | ||
103 | 'dd if=$key bs=1 skip=32 count=2 2>/dev/null | cmp -s - /dev/fd/3' || { | ||
104 | # this means that bytes 32&33 of the key were not both zero, in which | ||
105 | # case the key is encrypted, which we need to fix | ||
106 | chmod 600 $key | ||
107 | ssh-keygen -u -f $key >/dev/null | ||
108 | if type restorecon >/dev/null 2>&1; then | ||
109 | restorecon "$key.pub" | ||
110 | fi | ||
111 | } | ||
112 | fi | ||
113 | |||
114 | if dpkg --compare-versions "$version" lt 0; then | ||
115 | CONFFILES="$(dpkg-query -W -f '${Conffiles}\n' ssh 2>/dev/null | sed 's/^ *//')" | ||
116 | prepare_transfer_conffile /etc/default/ssh "$ETC_DEFAULT_SSH" 0644 | ||
117 | prepare_transfer_conffile /etc/init.d/ssh "$ETC_INIT_D_SSH" 0755 | ||
118 | prepare_transfer_conffile /etc/pam.d/ssh "$ETC_PAM_D_SSH" 0644 | ||
119 | fi | ||
120 | fi | ||
121 | |||
122 | #DEBHELPER# | ||
diff --git a/debian/openssh-server.prerm b/debian/openssh-server.prerm new file mode 100644 index 000000000..9c3313aac --- /dev/null +++ b/debian/openssh-server.prerm | |||
@@ -0,0 +1,48 @@ | |||
1 | #! /bin/sh | ||
2 | # prerm script for ssh | ||
3 | # | ||
4 | # see: dh_installdeb(1) | ||
5 | |||
6 | set -e | ||
7 | |||
8 | # summary of how this script can be called: | ||
9 | # * <prerm> `remove' | ||
10 | # * <old-prerm> `upgrade' <new-version> | ||
11 | # * <new-prerm> `failed-upgrade' <old-version> | ||
12 | # * <conflictor's-prerm> `remove' `in-favour' <package> <new-version> | ||
13 | # * <deconfigured's-prerm> `deconfigure' `in-favour' | ||
14 | # <package-being-installed> <version> `removing' | ||
15 | # <conflicting-package> <version> | ||
16 | # for details, see /usr/share/doc/packaging-manual/ | ||
17 | |||
18 | case "$1" in | ||
19 | remove|deconfigure) | ||
20 | if [ -x /etc/init.d/ssh ]; then | ||
21 | if [ -x /usr/sbin/invoke-rc.d ]; then | ||
22 | invoke-rc.d ssh stop | ||
23 | else | ||
24 | /etc/init.d/ssh stop | ||
25 | fi | ||
26 | fi | ||
27 | ;; | ||
28 | upgrade) | ||
29 | # remove symlink on downgrade to when it was a directory | ||
30 | if [ -L /usr/share/doc/openssh-server ] && \ | ||
31 | dpkg --compare-versions "$2" lt-nl 1:4.1p1-5; then | ||
32 | rm -f /usr/share/doc/openssh-server | ||
33 | fi | ||
34 | ;; | ||
35 | failed-upgrade) | ||
36 | ;; | ||
37 | *) | ||
38 | echo "prerm called with unknown argument \`$1'" >&2 | ||
39 | exit 0 | ||
40 | ;; | ||
41 | esac | ||
42 | |||
43 | # dh_installdeb will replace this with shell code automatically | ||
44 | # generated by other debhelper scripts. | ||
45 | |||
46 | #DEBHELPER# | ||
47 | |||
48 | exit 0 | ||
diff --git a/debian/openssh-server.ssh.pam b/debian/openssh-server.ssh.pam new file mode 100644 index 000000000..9b7695184 --- /dev/null +++ b/debian/openssh-server.ssh.pam | |||
@@ -0,0 +1,39 @@ | |||
1 | # PAM configuration for the Secure Shell service | ||
2 | |||
3 | # Read environment variables from /etc/environment and | ||
4 | # /etc/security/pam_env.conf. | ||
5 | auth required pam_env.so # [1] | ||
6 | # In Debian 4.0 (etch), locale-related environment variables were moved to | ||
7 | # /etc/default/locale, so read that as well. | ||
8 | auth required pam_env.so envfile=/etc/default/locale | ||
9 | |||
10 | # Standard Un*x authentication. | ||
11 | @include common-auth | ||
12 | |||
13 | # Disallow non-root logins when /etc/nologin exists. | ||
14 | account required pam_nologin.so | ||
15 | |||
16 | # Uncomment and edit /etc/security/access.conf if you need to set complex | ||
17 | # access limits that are hard to express in sshd_config. | ||
18 | # account required pam_access.so | ||
19 | |||
20 | # Standard Un*x authorization. | ||
21 | @include common-account | ||
22 | |||
23 | # Standard Un*x session setup and teardown. | ||
24 | @include common-session | ||
25 | |||
26 | # Print the message of the day upon successful login. | ||
27 | session optional pam_motd.so # [1] | ||
28 | |||
29 | # Print the status of the user's mailbox upon successful login. | ||
30 | session optional pam_mail.so standard noenv # [1] | ||
31 | |||
32 | # Set up user limits from /etc/security/limits.conf. | ||
33 | session required pam_limits.so | ||
34 | |||
35 | # Set up SELinux capabilities (need modified pam) | ||
36 | # session required pam_selinux.so multiple | ||
37 | |||
38 | # Standard Un*x password updating. | ||
39 | @include common-password | ||
diff --git a/debian/openssh-server.templates.master b/debian/openssh-server.templates.master new file mode 100644 index 000000000..2cc62f8f1 --- /dev/null +++ b/debian/openssh-server.templates.master | |||
@@ -0,0 +1,64 @@ | |||
1 | # These templates have been reviewed by the debian-l10n-english | ||
2 | # team | ||
3 | # | ||
4 | # If modifications/additions/rewording are needed, please ask | ||
5 | # for an advice to debian-l10n-english@lists.debian.org | ||
6 | # | ||
7 | # Even minor modifications require translation updates and such | ||
8 | # changes should be coordinated with translators and reviewers. | ||
9 | # | ||
10 | Template: ssh/new_config | ||
11 | Type: boolean | ||
12 | Default: true | ||
13 | _Description: Generate a new configuration file for OpenSSH? | ||
14 | This version of OpenSSH has a considerably changed configuration file from | ||
15 | the version shipped in Debian 'Potato', which you appear to be upgrading | ||
16 | from. This package can now generate a new configuration file | ||
17 | (/etc/ssh/sshd.config), which will work with the new server version, but | ||
18 | will not contain any customizations you made with the old version. | ||
19 | . | ||
20 | Please note that this new configuration file will set the value of | ||
21 | 'PermitRootLogin' to 'yes' (meaning that anyone knowing the root password | ||
22 | can ssh directly in as root). Please read the README.Debian file for | ||
23 | more details about this design choice. | ||
24 | . | ||
25 | It is strongly recommended that you choose to generate a new | ||
26 | configuration file now. | ||
27 | |||
28 | Template: ssh/use_old_init_script | ||
29 | Type: boolean | ||
30 | Default: false | ||
31 | _Description: Do you want to risk killing active SSH sessions? | ||
32 | The currently installed version of /etc/init.d/ssh is likely to kill | ||
33 | all running sshd instances. If you are doing this upgrade via an SSH | ||
34 | session, you're likely to be disconnected and leave the upgrade | ||
35 | procedure unfinished. | ||
36 | . | ||
37 | This can be fixed by manually adding "--pidfile /var/run/sshd.pid" to | ||
38 | the start-stop-daemon line in the stop section of the file. | ||
39 | |||
40 | Template: ssh/encrypted_host_key_but_no_keygen | ||
41 | Type: note | ||
42 | _Description: New host key mandatory | ||
43 | The current host key, in /etc/ssh/ssh_host_key, is encrypted with the | ||
44 | IDEA algorithm. OpenSSH can not handle this host key file, and the | ||
45 | ssh-keygen utility from the old (non-free) SSH installation does not | ||
46 | appear to be available. | ||
47 | . | ||
48 | You need to manually generate a new host key. | ||
49 | |||
50 | Template: ssh/disable_cr_auth | ||
51 | Type: boolean | ||
52 | Default: false | ||
53 | _Description: Disable challenge-response authentication? | ||
54 | Password authentication appears to be disabled in the current OpenSSH | ||
55 | server configuration. In order to prevent users from logging in using | ||
56 | passwords (perhaps using only public key authentication instead) with | ||
57 | recent versions of OpenSSH, you must disable challenge-response | ||
58 | authentication, or else ensure that your PAM configuration does not allow | ||
59 | Unix password file authentication. | ||
60 | . | ||
61 | If you disable challenge-response authentication, then users will not be | ||
62 | able to log in using passwords. If you leave it enabled (the default | ||
63 | answer), then the 'PasswordAuthentication no' option will have no useful | ||
64 | effect unless you also adjust your PAM configuration in /etc/pam.d/ssh. | ||
diff --git a/debian/po/POTFILES.in b/debian/po/POTFILES.in new file mode 100644 index 000000000..a45424a6b --- /dev/null +++ b/debian/po/POTFILES.in | |||
@@ -0,0 +1 @@ | |||
[type: gettext/rfc822deb] openssh-server.templates.master | |||
diff --git a/debian/po/bg.po b/debian/po/bg.po new file mode 100644 index 000000000..9932205d1 --- /dev/null +++ b/debian/po/bg.po | |||
@@ -0,0 +1,150 @@ | |||
1 | # translation of bg.po to Bulgarian | ||
2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER | ||
3 | # This file is distributed under the same license as the PACKAGE package. | ||
4 | # | ||
5 | # Damyan Ivanov <dam@modsoftsys.com>, 2007. | ||
6 | msgid "" | ||
7 | msgstr "" | ||
8 | "Project-Id-Version: openssh\n" | ||
9 | "Report-Msgid-Bugs-To: debian-ssh@lists.debian.org\n" | ||
10 | "POT-Creation-Date: 2007-08-19 15:36+0100\n" | ||
11 | "PO-Revision-Date: 2007-04-24 11:29+0300\n" | ||
12 | "Last-Translator: Damyan Ivanov <dam@modsoftsys.com>\n" | ||
13 | "Language-Team: Bulgarian <dict@fsa-bg.org>\n" | ||
14 | "MIME-Version: 1.0\n" | ||
15 | "Content-Type: text/plain; charset=UTF-8\n" | ||
16 | "Content-Transfer-Encoding: 8bit\n" | ||
17 | "X-Generator: KBabel 1.11.4\n" | ||
18 | |||
19 | #. Type: boolean | ||
20 | #. Description | ||
21 | #: ../openssh-server.templates.master:1001 | ||
22 | msgid "Generate a new configuration file for OpenSSH?" | ||
23 | msgstr "Създаване на нов файл Ñ Ð½Ð°Ñтройки за OpenSSH?" | ||
24 | |||
25 | #. Type: boolean | ||
26 | #. Description | ||
27 | #: ../openssh-server.templates.master:1001 | ||
28 | msgid "" | ||
29 | "This version of OpenSSH has a considerably changed configuration file from " | ||
30 | "the version shipped in Debian 'Potato', which you appear to be upgrading " | ||
31 | "from. This package can now generate a new configuration file (/etc/ssh/sshd." | ||
32 | "config), which will work with the new server version, but will not contain " | ||
33 | "any customizations you made with the old version." | ||
34 | msgstr "" | ||
35 | "Файлът Ñ Ð½Ð°Ñтройки в тази верÑÐ¸Ñ Ð½Ð° OpenSSH е Ñилно променен в Ñравнение Ñ " | ||
36 | "верÑиÑта в Debian 'Potato', коÑто изглежда Ñе обновÑва. Може да бъде " | ||
37 | "Ñъздаден нов файл Ñ Ð½Ð°Ñтройки (/etc/ssh/sshd.config), който ще работи Ñ " | ||
38 | "новата верÑиÑ, но нÑма да Ñъдържа евентуални промени от ÑÑ‚Ð°Ñ€Ð¸Ñ Ñ„Ð°Ð¹Ð»." | ||
39 | |||
40 | #. Type: boolean | ||
41 | #. Description | ||
42 | #: ../openssh-server.templates.master:1001 | ||
43 | msgid "" | ||
44 | "Please note that this new configuration file will set the value of " | ||
45 | "'PermitRootLogin' to 'yes' (meaning that anyone knowing the root password " | ||
46 | "can ssh directly in as root). Please read the README.Debian file for more " | ||
47 | "details about this design choice." | ||
48 | msgstr "" | ||
49 | "ÐовиÑÑ‚ файл ще Ñъдържа 'PermitRootLogin yes' (разрешавайки отдалечен доÑтъп " | ||
50 | "през ssh за админиÑÑ‚Ñ€Ð°Ñ‚Ð¸Ð²Ð½Ð¸Ñ Ð¿Ð¾Ñ‚Ñ€ÐµÐ±Ð¸Ñ‚ÐµÐ» root). ПодробноÑти за причините за " | ||
51 | "тази наÑтройка има във файла README.Debian." | ||
52 | |||
53 | #. Type: boolean | ||
54 | #. Description | ||
55 | #: ../openssh-server.templates.master:1001 | ||
56 | msgid "" | ||
57 | "It is strongly recommended that you choose to generate a new configuration " | ||
58 | "file now." | ||
59 | msgstr "Препоръчва Ñе да изберете Ñъздаването на нов файл Ñ Ð½Ð°Ñтройки." | ||
60 | |||
61 | #. Type: boolean | ||
62 | #. Description | ||
63 | #: ../openssh-server.templates.master:2001 | ||
64 | msgid "Do you want to risk killing active SSH sessions?" | ||
65 | msgstr "Да Ñе прекъÑнат ли текущите връзки по SSH?" | ||
66 | |||
67 | #. Type: boolean | ||
68 | #. Description | ||
69 | #: ../openssh-server.templates.master:2001 | ||
70 | msgid "" | ||
71 | "The currently installed version of /etc/init.d/ssh is likely to kill all " | ||
72 | "running sshd instances. If you are doing this upgrade via an SSH session, " | ||
73 | "you're likely to be disconnected and leave the upgrade procedure unfinished." | ||
74 | msgstr "" | ||
75 | "ВерÑиÑта на /etc/init.d/ssh, коÑто е инÑталирана в момента е много вероÑтно " | ||
76 | "да прекъÑне активните връзки. Ðко извършвате обновÑването отдалечено има " | ||
77 | "опаÑноÑÑ‚ връзката да Ñе разпадне и процеÑÑŠÑ‚ да не завърши нормално." | ||
78 | |||
79 | #. Type: boolean | ||
80 | #. Description | ||
81 | #: ../openssh-server.templates.master:2001 | ||
82 | msgid "" | ||
83 | "This can be fixed by manually adding \"--pidfile /var/run/sshd.pid\" to the " | ||
84 | "start-stop-daemon line in the stop section of the file." | ||
85 | msgstr "" | ||
86 | "Това може да бъде поправено ръчно Ñ Ð´Ð¾Ð±Ð°Ð²Ñнето на „--pidfile /var/run/sshd." | ||
87 | "pid“ към командата start-stop-daemon в раздела „stop“ на файла." | ||
88 | |||
89 | #. Type: note | ||
90 | #. Description | ||
91 | #: ../openssh-server.templates.master:3001 | ||
92 | msgid "New host key mandatory" | ||
93 | msgstr "Ðеобходим е нов ключ за хоÑта" | ||
94 | |||
95 | #. Type: note | ||
96 | #. Description | ||
97 | #: ../openssh-server.templates.master:3001 | ||
98 | msgid "" | ||
99 | "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " | ||
100 | "algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " | ||
101 | "utility from the old (non-free) SSH installation does not appear to be " | ||
102 | "available." | ||
103 | msgstr "" | ||
104 | "Ð’ момента ключа на хоÑта в /etc/ssh/ssh_host_key е шифриран Ñ Ð°Ð»Ð³Ð¾Ñ€Ð¸Ñ‚ÑŠÐ¼Ð° " | ||
105 | "IDEA. OpenSSH не може да работи Ñ Ñ‚Ð¾Ð·Ð¸ файл, а програмата ssh-keygen от " | ||
106 | "Ñтарата инÑÑ‚Ð°Ð»Ð°Ñ†Ð¸Ñ Ð½Ðµ е налична." | ||
107 | |||
108 | #. Type: note | ||
109 | #. Description | ||
110 | #: ../openssh-server.templates.master:3001 | ||
111 | msgid "You need to manually generate a new host key." | ||
112 | msgstr "Ðеобходимо е да Ñе генерира ръчно нов ключ за хоÑта." | ||
113 | |||
114 | #. Type: boolean | ||
115 | #. Description | ||
116 | #: ../openssh-server.templates.master:4001 | ||
117 | msgid "Disable challenge-response authentication?" | ||
118 | msgstr "Забрана на удоÑтоверÑването challenge-response?" | ||
119 | |||
120 | #. Type: boolean | ||
121 | #. Description | ||
122 | #: ../openssh-server.templates.master:4001 | ||
123 | msgid "" | ||
124 | "Password authentication appears to be disabled in the current OpenSSH server " | ||
125 | "configuration. In order to prevent users from logging in using passwords " | ||
126 | "(perhaps using only public key authentication instead) with recent versions " | ||
127 | "of OpenSSH, you must disable challenge-response authentication, or else " | ||
128 | "ensure that your PAM configuration does not allow Unix password file " | ||
129 | "authentication." | ||
130 | msgstr "" | ||
131 | "Изглежда че удоÑтоверÑването Ñ Ð¿Ð°Ñ€Ð¾Ð»Ð° е забранено в наÑтройката на OpenSSH " | ||
132 | "Ñървъра. За пълна забрана на използването на пароли за удоÑтоверÑване " | ||
133 | "(вероÑтно оÑтавÑйки Ñамо удоÑтоверÑването Ñ Ð¿ÑƒÐ±Ð»Ð¸Ñ‡ÐµÐ½ ключ) е необходимо да " | ||
134 | "бъде забранено удоÑтоверÑването „challenge-response“. Ð’ противен Ñлучай е " | ||
135 | "нужно да Ñе наÑтрои PAM да не позволÑва удоÑтоверÑване чрез файловете Ñ " | ||
136 | "пароли Ñтил Unix." | ||
137 | |||
138 | #. Type: boolean | ||
139 | #. Description | ||
140 | #: ../openssh-server.templates.master:4001 | ||
141 | msgid "" | ||
142 | "If you disable challenge-response authentication, then users will not be " | ||
143 | "able to log in using passwords. If you leave it enabled (the default " | ||
144 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
145 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
146 | msgstr "" | ||
147 | "Ðко удоÑтоверÑването chalenge-response е забрането, потребителите нÑма да " | ||
148 | "могат да използват пароли за удоÑтоверÑване. Ðко е разрешено (по " | ||
149 | "подразбиране), наÑтройката 'PasswordAuthentication no' нÑма да има ефект, " | ||
150 | "оÑвен ако не промените наÑтройките за PAM в /etc/pam.d/ssh." | ||
diff --git a/debian/po/ca.po b/debian/po/ca.po new file mode 100644 index 000000000..841efeaf7 --- /dev/null +++ b/debian/po/ca.po | |||
@@ -0,0 +1,323 @@ | |||
1 | # | ||
2 | # Catalan translation for openssh package. | ||
3 | # Copyright (C) 2007 Matthew Vernon. | ||
4 | # This file is distributed under the same license as the openssh package. | ||
5 | # | ||
6 | # Aleix Badia i Bosch <abadia@ica.es>, 2004 | ||
7 | # Jordà Polo <jorda@ettin.org>, 2007. | ||
8 | # | ||
9 | msgid "" | ||
10 | msgstr "" | ||
11 | "Project-Id-Version: 1:4.6p1-2\n" | ||
12 | "Report-Msgid-Bugs-To: debian-ssh@lists.debian.org\n" | ||
13 | "POT-Creation-Date: 2007-08-19 15:36+0100\n" | ||
14 | "PO-Revision-Date: 2007-06-30 01:13+0200\n" | ||
15 | "Last-Translator: Jordà Polo <jorda@ettin.org>\n" | ||
16 | "Language-Team: Català <debian-l10n-catalan@lists.debian.org>\n" | ||
17 | "MIME-Version: 1.0\n" | ||
18 | "Content-Type: text/plain; charset=UTF-8\n" | ||
19 | "Content-Transfer-Encoding: 8bit\n" | ||
20 | |||
21 | #. Type: boolean | ||
22 | #. Description | ||
23 | #: ../openssh-server.templates.master:1001 | ||
24 | msgid "Generate a new configuration file for OpenSSH?" | ||
25 | msgstr "Voleu generar un nou fitxer de configuració per a l'OpenSSH?" | ||
26 | |||
27 | #. Type: boolean | ||
28 | #. Description | ||
29 | #: ../openssh-server.templates.master:1001 | ||
30 | msgid "" | ||
31 | "This version of OpenSSH has a considerably changed configuration file from " | ||
32 | "the version shipped in Debian 'Potato', which you appear to be upgrading " | ||
33 | "from. This package can now generate a new configuration file (/etc/ssh/sshd." | ||
34 | "config), which will work with the new server version, but will not contain " | ||
35 | "any customizations you made with the old version." | ||
36 | msgstr "" | ||
37 | "Els fitxers de configuració de l'OpenSSH s'han modificat considerablement " | ||
38 | "respecte als de Debian «Potato», versió des de la qual sembla que esteu " | ||
39 | "actualitzant. Aquest paquet pot generar ara un nou fitxer de configuració (/" | ||
40 | "etc/sshd/sshd.config), que funcionarà amb la nova versió del servidor però " | ||
41 | "no contindrà els parà metres de configuració personalitzats de la versió " | ||
42 | "anterior." | ||
43 | |||
44 | #. Type: boolean | ||
45 | #. Description | ||
46 | #: ../openssh-server.templates.master:1001 | ||
47 | msgid "" | ||
48 | "Please note that this new configuration file will set the value of " | ||
49 | "'PermitRootLogin' to 'yes' (meaning that anyone knowing the root password " | ||
50 | "can ssh directly in as root). Please read the README.Debian file for more " | ||
51 | "details about this design choice." | ||
52 | msgstr "" | ||
53 | "Tingueu en compte que el nou fitxer de configuració establirà el valor de " | ||
54 | "«PermitRootLogin» a «yes» (és a dir, qualsevol que conegui la contrasenya de " | ||
55 | "root podrà connectar-se directament mitjançant ssh). Si us plau, llegiu el " | ||
56 | "fitxer README.Debian per a més detalls sobre aquesta opció." | ||
57 | |||
58 | #. Type: boolean | ||
59 | #. Description | ||
60 | #: ../openssh-server.templates.master:1001 | ||
61 | msgid "" | ||
62 | "It is strongly recommended that you choose to generate a new configuration " | ||
63 | "file now." | ||
64 | msgstr "" | ||
65 | "És molt recomanable que trieu generar el nou fitxer de configuració ara." | ||
66 | |||
67 | #. Type: boolean | ||
68 | #. Description | ||
69 | #: ../openssh-server.templates.master:2001 | ||
70 | msgid "Do you want to risk killing active SSH sessions?" | ||
71 | msgstr "Voleu arriscar-vos a aturar les sessions SSH actives?" | ||
72 | |||
73 | #. Type: boolean | ||
74 | #. Description | ||
75 | #: ../openssh-server.templates.master:2001 | ||
76 | msgid "" | ||
77 | "The currently installed version of /etc/init.d/ssh is likely to kill all " | ||
78 | "running sshd instances. If you are doing this upgrade via an SSH session, " | ||
79 | "you're likely to be disconnected and leave the upgrade procedure unfinished." | ||
80 | msgstr "" | ||
81 | "És possible que la versió de «/etc/init.d/ssh» que teniu instal·lada " | ||
82 | "actualment aturi les instà ncies de l'sshd que s'estan executant. Si esteu " | ||
83 | "actualitzant des d'una sessió SSH, és possible que es talli la connexió i " | ||
84 | "quedi el procés d'actualització a mitges." | ||
85 | |||
86 | #. Type: boolean | ||
87 | #. Description | ||
88 | #: ../openssh-server.templates.master:2001 | ||
89 | msgid "" | ||
90 | "This can be fixed by manually adding \"--pidfile /var/run/sshd.pid\" to the " | ||
91 | "start-stop-daemon line in the stop section of the file." | ||
92 | msgstr "" | ||
93 | "Ho podeu arreglar afegint «--pidfile /var/run/sshd.pid» a la lÃnia «start-" | ||
94 | "stop-daemon» de la secció «stop» del mateix fitxer." | ||
95 | |||
96 | #. Type: note | ||
97 | #. Description | ||
98 | #: ../openssh-server.templates.master:3001 | ||
99 | msgid "New host key mandatory" | ||
100 | msgstr "Nova clau obligatòria" | ||
101 | |||
102 | #. Type: note | ||
103 | #. Description | ||
104 | #: ../openssh-server.templates.master:3001 | ||
105 | msgid "" | ||
106 | "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " | ||
107 | "algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " | ||
108 | "utility from the old (non-free) SSH installation does not appear to be " | ||
109 | "available." | ||
110 | msgstr "" | ||
111 | "L'actual clau de la mà quina, a /etc/ssh/ssh_host_key, està xifrada amb " | ||
112 | "l'algorisme IDEA. OpenSSH no pot gestionar aquest fitxer de clau, i no es " | ||
113 | "pot trobar l'eina ssh-keygen de la instal·lació d'SSH anterior (non-free)." | ||
114 | |||
115 | #. Type: note | ||
116 | #. Description | ||
117 | #: ../openssh-server.templates.master:3001 | ||
118 | msgid "You need to manually generate a new host key." | ||
119 | msgstr "Haureu de generar manualment una nova clau per a la mà quina." | ||
120 | |||
121 | #. Type: boolean | ||
122 | #. Description | ||
123 | #: ../openssh-server.templates.master:4001 | ||
124 | msgid "Disable challenge-response authentication?" | ||
125 | msgstr "Voleu desactivar l'autenticació «challenge-response»?" | ||
126 | |||
127 | #. Type: boolean | ||
128 | #. Description | ||
129 | #: ../openssh-server.templates.master:4001 | ||
130 | msgid "" | ||
131 | "Password authentication appears to be disabled in the current OpenSSH server " | ||
132 | "configuration. In order to prevent users from logging in using passwords " | ||
133 | "(perhaps using only public key authentication instead) with recent versions " | ||
134 | "of OpenSSH, you must disable challenge-response authentication, or else " | ||
135 | "ensure that your PAM configuration does not allow Unix password file " | ||
136 | "authentication." | ||
137 | msgstr "" | ||
138 | "Sembla que l'autenticació per contrasenya està desactivada en l'actual " | ||
139 | "configuració del servidor OpenSSH. Per tal d'evitar que els usuaris entrin " | ||
140 | "al sistema utilitzant contrasenyes (i utilitzin només autenticació basada en " | ||
141 | "clau pública), en les darreres versions d'OpenSSH heu de desactivar " | ||
142 | "l'autenticació «challenge-response», o altrament assegurar-vos que la " | ||
143 | "configuració de PAM no permet autenticar mitjançant el fitxer de " | ||
144 | "contrasenyes de Unix." | ||
145 | |||
146 | #. Type: boolean | ||
147 | #. Description | ||
148 | #: ../openssh-server.templates.master:4001 | ||
149 | msgid "" | ||
150 | "If you disable challenge-response authentication, then users will not be " | ||
151 | "able to log in using passwords. If you leave it enabled (the default " | ||
152 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
153 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
154 | msgstr "" | ||
155 | "Si desactiveu l'autenticació «challenge-response», aleshores els usuaris no " | ||
156 | "podran entrar utilitzant contrasenyes. Si la deixeu activada (que és l'opció " | ||
157 | "predeterminada), aleshores «PasswordAuthentication no» no tindrà cap valor a " | ||
158 | "menys que ajusteu la configuració de PAM a /etc/pam.d/ssh." | ||
159 | |||
160 | #~ msgid "Warning: you must create a new host key" | ||
161 | #~ msgstr "AvÃs: heu de crear una nova clau del servidor central" | ||
162 | |||
163 | #~ msgid "Warning: telnetd is installed --- probably not a good idea" | ||
164 | #~ msgstr "" | ||
165 | #~ "AvÃs: el telnetd està instal·lat --- probablement no sigui una bona idea" | ||
166 | |||
167 | #~ msgid "" | ||
168 | #~ "I'd advise you to either remove the telnetd package (if you don't " | ||
169 | #~ "actually need to offer telnet access) or install telnetd-ssl so that " | ||
170 | #~ "there is at least some chance that telnet sessions will not be sending " | ||
171 | #~ "unencrypted login/password and session information over the network." | ||
172 | #~ msgstr "" | ||
173 | #~ "Es aconsellable suprimir el paquet telnetd (si no heu d'oferir accés a " | ||
174 | #~ "telnet) o torneu a instal·lar el paquet telnetd-ssl si més no per " | ||
175 | #~ "assegurar que les sessions de telnet no enviaran les informació del nom " | ||
176 | #~ "d'usuari i contrasenya sense xifrar a través de la xarxa." | ||
177 | |||
178 | #~ msgid "Warning: rsh-server is installed --- probably not a good idea" | ||
179 | #~ msgstr "" | ||
180 | #~ "AvÃs: el servidor rsh-server està instal·lat --- probablement no sigui " | ||
181 | #~ "una bona idea" | ||
182 | |||
183 | #~ msgid "" | ||
184 | #~ "having rsh-server installed undermines the security that you were " | ||
185 | #~ "probably wanting to obtain by installing ssh. I'd advise you to remove " | ||
186 | #~ "that package." | ||
187 | #~ msgstr "" | ||
188 | #~ "si teniu instal·lat l'rsh-server perdreu la seguretat que esperà veu " | ||
189 | #~ "obtenir instal·lant l'ssh. És aconsellable suprimir el paquet." | ||
190 | |||
191 | #~ msgid "Do you want ssh-keysign to be installed SUID root?" | ||
192 | #~ msgstr "Voleu que el fitxer ssh-keysign s'instal·li SUID root?" | ||
193 | |||
194 | #~ msgid "" | ||
195 | #~ "You have the option of installing the ssh-keysign helper with the SUID " | ||
196 | #~ "bit set." | ||
197 | #~ msgstr "Podeu instal·lar l'ajudant del ssh-keysign amb el bit SUID definit." | ||
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 | #~ "Si definiu l'ssh-keysign SUID podreu utilitzat l'autenticació basada en " | ||
204 | #~ "l'ordinador central del Protocol 2 de l'SSH." | ||
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 | #~ "Si dubteu instal·leu-lo amb el SUID. Si us causa algun problema ho podeu " | ||
211 | #~ "modificar posteriorment executant l'ordre: dpkg-reconfigure ssh" | ||
212 | |||
213 | #~ msgid "Allow SSH protocol 2 only" | ||
214 | #~ msgstr "Permet únicament la versió 2 del protocol d'SSH" | ||
215 | |||
216 | #~ msgid "" | ||
217 | #~ "This version of OpenSSH supports version 2 of the ssh protocol, which is " | ||
218 | #~ "much more secure. Disabling ssh 1 is encouraged, however this will slow " | ||
219 | #~ "things down on low end machines and might prevent older clients from " | ||
220 | #~ "connecting (the ssh client shipped with \"potato\" is affected)." | ||
221 | #~ msgstr "" | ||
222 | #~ "Aquesta versió de l'OpenSSH suporta la versió 2 del protocol d'ssh, " | ||
223 | #~ "aquesta versió és molt més segura. És recomanable inhabilitar la versió 1 " | ||
224 | #~ "del protocol, tot i que això alentirà el funcionament dels ordinadors més " | ||
225 | #~ "antics i no permetrà les connexions als clients antics (afectarà al " | ||
226 | #~ "client proporcionat per la \"potato\")." | ||
227 | |||
228 | #~ msgid "" | ||
229 | #~ "Also please note that keys used for protocol 1 are different so you will " | ||
230 | #~ "not be able to use them if you only allow protocol 2 connections." | ||
231 | #~ msgstr "" | ||
232 | #~ "Recordeu que les claus que utilitza la versió 1 del protocol són " | ||
233 | #~ "diferents i no les podreu utilitzar si habiliteu únicament les connexions " | ||
234 | #~ "de la versió 2 del protocol." | ||
235 | |||
236 | #~ msgid "" | ||
237 | #~ "If you later change your mind about this setting, README.Debian has " | ||
238 | #~ "instructions on what to do to your sshd_config file." | ||
239 | #~ msgstr "" | ||
240 | #~ "Si posteriorment canvieu d'opinió respecte a la configuració, podeu " | ||
241 | #~ "trobar les instruccions per modificar el fitxer sshd_config a README." | ||
242 | #~ "Debian." | ||
243 | |||
244 | #~ msgid "NOTE: Forwarding of X11 and Authorization disabled by default." | ||
245 | #~ msgstr "" | ||
246 | #~ "Nota: les opcions de reenviament de les X11 i autorització estan " | ||
247 | #~ "inhabilitades per defecte." | ||
248 | |||
249 | #~ msgid "" | ||
250 | #~ "For security reasons, the Debian version of ssh has ForwardX11 and " | ||
251 | #~ "ForwardAgent set to ``off'' by default." | ||
252 | #~ msgstr "" | ||
253 | #~ "Per raons de seguretat i de forma predeterminada la versió d'ssh de " | ||
254 | #~ "Debian té les opcions ForwardX11 i ForwardAgent definides a \"off\"." | ||
255 | |||
256 | #~ msgid "" | ||
257 | #~ "You can enable it for servers you trust, either in one of the " | ||
258 | #~ "configuration files, or with the -X command line option." | ||
259 | #~ msgstr "" | ||
260 | #~ "Ho podeu habilitar pels servidors de confiança, ja sigui en un dels " | ||
261 | #~ "fitxers de configuració o a través de l'opció de la lÃnia d'ordre -X." | ||
262 | |||
263 | #~ msgid "More details can be found in /usr/share/doc/ssh/README.Debian" | ||
264 | #~ msgstr "" | ||
265 | #~ "Podeu trobar més informació al fitxer /usr/share/doc/ssh/README.Debian" | ||
266 | |||
267 | #~ msgid "ssh2 keys merged in configuration files" | ||
268 | #~ msgstr "S'han combinat les claus de l'ssh2 als fitxers de configuració" | ||
269 | |||
270 | #~ msgid "" | ||
271 | #~ "As of version 3 OpenSSH no longer uses separate files for ssh1 and ssh2 " | ||
272 | #~ "keys. This means the authorized_keys2 and known_hosts2 files are no " | ||
273 | #~ "longer needed. They will still be read in order to maintain backwards " | ||
274 | #~ "compatibility" | ||
275 | #~ msgstr "" | ||
276 | #~ "Des de la versió 3 de l'OpenSSH ja no s'utilitzaran fitxers separats per " | ||
277 | #~ "les claus de l'ssh1 i ssg2. Ja no caldran els fitxer authorized_keys2 i " | ||
278 | #~ "known_hosts2. Es continuaran llegint per mantenir la compatibilitat amb " | ||
279 | #~ "les versions anteriors." | ||
280 | |||
281 | #~ msgid "Do you want to run the sshd server?" | ||
282 | #~ msgstr "Voleu executar el servidor d'sshd?" | ||
283 | |||
284 | #~ msgid "This package contains both the ssh client, and the sshd server." | ||
285 | #~ msgstr "El paquet conté el client i el servidor d'ssh." | ||
286 | |||
287 | #~ msgid "" | ||
288 | #~ "Normally the sshd Secure Shell Server will be run to allow remote logins " | ||
289 | #~ "via ssh." | ||
290 | #~ msgstr "" | ||
291 | #~ "L'sshd (servidor de l'intèrpret d'ordres segur) s'executarà , normalment, " | ||
292 | #~ "per permetre l'entrada remota a través de l'ssh." | ||
293 | |||
294 | #~ msgid "" | ||
295 | #~ "If you are only interested in using the ssh client for outbound " | ||
296 | #~ "connections on this machine, and don't want to log into it at all using " | ||
297 | #~ "ssh, then you can disable sshd here." | ||
298 | #~ msgstr "" | ||
299 | #~ "Podeu inhabilitar l'sshd si voleu utilitzar el client d'ssh únicament per " | ||
300 | #~ "connexions a l'exterior i no per acceptar connexions remotes." | ||
301 | |||
302 | #~ msgid "Environment options on keys have been deprecated" | ||
303 | #~ msgstr "S'ha prohibit les opcions d'entorn a les claus." | ||
304 | |||
305 | #~ msgid "" | ||
306 | #~ "This version of OpenSSH disables the environment option for public keys " | ||
307 | #~ "by default, in order to avoid certain attacks (for example, LD_PRELOAD). " | ||
308 | #~ "If you are using this option in an authorized_keys file, beware that the " | ||
309 | #~ "keys in question will no longer work until the option is removed." | ||
310 | #~ msgstr "" | ||
311 | #~ "L'OpenSSH inhabilita, per defecte i per evitar diversos atacs (per " | ||
312 | #~ "exemple LD_PRELOAD), les opcions d'entorn per les claus públiques. Si " | ||
313 | #~ "utilitzeu aquesta opció al fitxer authorized_keys recordeu que les claus " | ||
314 | #~ "de la qüestió no funcionaran fins que no se suprimeixi l'opció." | ||
315 | |||
316 | #~ msgid "" | ||
317 | #~ "To re-enable this option, set \"PermitUserEnvironment yes\" in /etc/ssh/" | ||
318 | #~ "sshd_config after the upgrade is complete, taking note of the warning in " | ||
319 | #~ "the sshd_config(5) manual page." | ||
320 | #~ msgstr "" | ||
321 | #~ "Per tornar a habilitar l'opció definiu \"PermitUserEnvironment yes\" al " | ||
322 | #~ "fitxer /etc/ssh/sshd_config al finalitzar l'actualització (recordeu la " | ||
323 | #~ "nota d'avÃs de la pà gina del manual sshd_config(5)). " | ||
diff --git a/debian/po/cs.po b/debian/po/cs.po new file mode 100644 index 000000000..9c6a397bf --- /dev/null +++ b/debian/po/cs.po | |||
@@ -0,0 +1,317 @@ | |||
1 | # | ||
2 | # Translators, if you are not familiar with the PO format, gettext | ||
3 | # documentation is worth reading, especially sections dedicated to | ||
4 | # this format, e.g. by running: | ||
5 | # info -n '(gettext)PO Files' | ||
6 | # info -n '(gettext)Header Entry' | ||
7 | # | ||
8 | # Some information specific to po-debconf are available at | ||
9 | # /usr/share/doc/po-debconf/README-trans | ||
10 | # or http://www.debian.org/intl/l10n/po-debconf/README-trans | ||
11 | # | ||
12 | # Developers do not need to manually edit POT or PO files. | ||
13 | # | ||
14 | msgid "" | ||
15 | msgstr "" | ||
16 | "Project-Id-Version: openssh\n" | ||
17 | "Report-Msgid-Bugs-To: debian-ssh@lists.debian.org\n" | ||
18 | "POT-Creation-Date: 2007-08-19 15:36+0100\n" | ||
19 | "PO-Revision-Date: 2007-04-30 10:22+0200\n" | ||
20 | "Last-Translator: Miroslav Kure <kurem@debian.cz>\n" | ||
21 | "Language-Team: Czech <debian-l10n-czech@lists.debian.org>\n" | ||
22 | "MIME-Version: 1.0\n" | ||
23 | "Content-Type: text/plain; charset=UTF-8\n" | ||
24 | "Content-Transfer-Encoding: 8bit\n" | ||
25 | |||
26 | #. Type: boolean | ||
27 | #. Description | ||
28 | #: ../openssh-server.templates.master:1001 | ||
29 | msgid "Generate a new configuration file for OpenSSH?" | ||
30 | msgstr "VytvoÅ™it nový konfiguraÄnà soubor OpenSSH?" | ||
31 | |||
32 | #. Type: boolean | ||
33 | #. Description | ||
34 | #: ../openssh-server.templates.master:1001 | ||
35 | msgid "" | ||
36 | "This version of OpenSSH has a considerably changed configuration file from " | ||
37 | "the version shipped in Debian 'Potato', which you appear to be upgrading " | ||
38 | "from. This package can now generate a new configuration file (/etc/ssh/sshd." | ||
39 | "config), which will work with the new server version, but will not contain " | ||
40 | "any customizations you made with the old version." | ||
41 | msgstr "" | ||
42 | "Tato verze OpenSSH má oproti verzi dodávané s Debianem 2.2, kterou nynà " | ||
43 | "pravdÄ›podobnÄ› aktualizujete, znaÄnÄ› odliÅ¡ný konfiguraÄnà soubor. BalÃk nynà " | ||
44 | "může vytvoÅ™it nový konfiguraÄnà soubor (/etc/ssh/sshd.config), který bude " | ||
45 | "fungovat s novou verzà serveru, ale nebude obsahovat žádné úpravy, které " | ||
46 | "jste provedli ve staré verzi." | ||
47 | |||
48 | #. Type: boolean | ||
49 | #. Description | ||
50 | #: ../openssh-server.templates.master:1001 | ||
51 | msgid "" | ||
52 | "Please note that this new configuration file will set the value of " | ||
53 | "'PermitRootLogin' to 'yes' (meaning that anyone knowing the root password " | ||
54 | "can ssh directly in as root). Please read the README.Debian file for more " | ||
55 | "details about this design choice." | ||
56 | msgstr "" | ||
57 | "V novém konfiguraÄnÃm souboru bude parametr PermitRootLogin nastaven na " | ||
58 | "hodnotu 'yes'. To znamená, že se kdokoliv se znalostà rootova hesla může " | ||
59 | "pÅ™ihlásit rovnou jako root. VÃce o tomto rozhodnutà se dozvÃte v souboru " | ||
60 | "README.Debian." | ||
61 | |||
62 | #. Type: boolean | ||
63 | #. Description | ||
64 | #: ../openssh-server.templates.master:1001 | ||
65 | msgid "" | ||
66 | "It is strongly recommended that you choose to generate a new configuration " | ||
67 | "file now." | ||
68 | msgstr "Je vÅ™ele doporuÄeno nechat si nynà vytvoÅ™it nový konfiguraÄnà soubor." | ||
69 | |||
70 | #. Type: boolean | ||
71 | #. Description | ||
72 | #: ../openssh-server.templates.master:2001 | ||
73 | msgid "Do you want to risk killing active SSH sessions?" | ||
74 | msgstr "Chcete riskovat ukonÄenà aktivnÃch SSH spojenÃ?" | ||
75 | |||
76 | #. Type: boolean | ||
77 | #. Description | ||
78 | #: ../openssh-server.templates.master:2001 | ||
79 | msgid "" | ||
80 | "The currently installed version of /etc/init.d/ssh is likely to kill all " | ||
81 | "running sshd instances. If you are doing this upgrade via an SSH session, " | ||
82 | "you're likely to be disconnected and leave the upgrade procedure unfinished." | ||
83 | msgstr "" | ||
84 | "StávajÃcà verze /etc/init.d/ssh pravdÄ›podobnÄ› pozabÃjà vÅ¡echny běžÃcà " | ||
85 | "instance sshd. Pokud tuto aktualizaci provádÃte pÅ™es SSH, budete nejspÃÅ¡e " | ||
86 | "odpojeni a aktualizace skonÄà na půli cesty." | ||
87 | |||
88 | #. Type: boolean | ||
89 | #. Description | ||
90 | #: ../openssh-server.templates.master:2001 | ||
91 | msgid "" | ||
92 | "This can be fixed by manually adding \"--pidfile /var/run/sshd.pid\" to the " | ||
93 | "start-stop-daemon line in the stop section of the file." | ||
94 | msgstr "" | ||
95 | "Můžete to spravit ruÄnÃm pÅ™idánÃm \"--pidfile /var/run/sshd.pid\" na řádek " | ||
96 | "start-stop-daemon v sekci stop." | ||
97 | |||
98 | #. Type: note | ||
99 | #. Description | ||
100 | #: ../openssh-server.templates.master:3001 | ||
101 | msgid "New host key mandatory" | ||
102 | msgstr "Nutný nový serverový klÃÄ" | ||
103 | |||
104 | #. Type: note | ||
105 | #. Description | ||
106 | #: ../openssh-server.templates.master:3001 | ||
107 | msgid "" | ||
108 | "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " | ||
109 | "algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " | ||
110 | "utility from the old (non-free) SSH installation does not appear to be " | ||
111 | "available." | ||
112 | msgstr "" | ||
113 | "Aktuálnà serverový klÃÄ v /etc/ssh/ssh_host_key je Å¡ifrovaný algoritmem " | ||
114 | "IDEA. OpenSSH neumà tento soubor zpracovat a zdá se, že utilita ssh-keygen " | ||
115 | "ze staré (nesvobodné) instalace SSH nenà k dispozici." | ||
116 | |||
117 | #. Type: note | ||
118 | #. Description | ||
119 | #: ../openssh-server.templates.master:3001 | ||
120 | msgid "You need to manually generate a new host key." | ||
121 | msgstr "MusÃte ruÄnÄ› vygenerovat nový serverový klÃÄ" | ||
122 | |||
123 | #. Type: boolean | ||
124 | #. Description | ||
125 | #: ../openssh-server.templates.master:4001 | ||
126 | msgid "Disable challenge-response authentication?" | ||
127 | msgstr "Zakázat autentizaci challenge-response?" | ||
128 | |||
129 | #. Type: boolean | ||
130 | #. Description | ||
131 | #: ../openssh-server.templates.master:4001 | ||
132 | msgid "" | ||
133 | "Password authentication appears to be disabled in the current OpenSSH server " | ||
134 | "configuration. In order to prevent users from logging in using passwords " | ||
135 | "(perhaps using only public key authentication instead) with recent versions " | ||
136 | "of OpenSSH, you must disable challenge-response authentication, or else " | ||
137 | "ensure that your PAM configuration does not allow Unix password file " | ||
138 | "authentication." | ||
139 | msgstr "" | ||
140 | "Zdá se, že autentizace pomocà hesel je ve vaÅ¡Ã stávajÃcà konfiguraci OpenSSH " | ||
141 | "serveru zakázána. Abyste zabránili uživatelům v přihlášenà pouze pomocà " | ||
142 | "hesla, musÃte v poslednÃch verzÃch OpenSSH zakázat autentizaci challenge-" | ||
143 | "response, nebo jinak zajistit, aby PAM nepovolilo autentizaci vůÄi unixovému " | ||
144 | "souboru hesel." | ||
145 | |||
146 | #. Type: boolean | ||
147 | #. Description | ||
148 | #: ../openssh-server.templates.master:4001 | ||
149 | msgid "" | ||
150 | "If you disable challenge-response authentication, then users will not be " | ||
151 | "able to log in using passwords. If you leave it enabled (the default " | ||
152 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
153 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
154 | msgstr "" | ||
155 | "Zakážete-li autentizaci challenge-response, uživatelé se nebudou moci " | ||
156 | "pÅ™ihlásit pomocà hesel. Necháte-li ji povolenu (pÅ™ednastavená odpovÄ›Ä), pak " | ||
157 | "nebude mÃt volba 'PasswordAuthentication no' žádný efekt, pokud ovÅ¡em " | ||
158 | "neupravÃte nastavenà PAM v /etc/pam.d/ssh." | ||
159 | |||
160 | #~ msgid "Warning: you must create a new host key" | ||
161 | #~ msgstr "VarovánÃ: musÃte vytvoÅ™it nový serverový klÃÄ" | ||
162 | |||
163 | #~ msgid "Warning: telnetd is installed --- probably not a good idea" | ||
164 | #~ msgstr "VarovánÃ: je nainstalován telnetd --- to nenà dobrý nápad" | ||
165 | |||
166 | #~ msgid "" | ||
167 | #~ "I'd advise you to either remove the telnetd package (if you don't " | ||
168 | #~ "actually need to offer telnet access) or install telnetd-ssl so that " | ||
169 | #~ "there is at least some chance that telnet sessions will not be sending " | ||
170 | #~ "unencrypted login/password and session information over the network." | ||
171 | #~ msgstr "" | ||
172 | #~ "DoporuÄujeme buÄ odstranit balÃk telnetd (pokud telnet pÅ™Ãstup " | ||
173 | #~ "nepotřebujete), nebo nainstalovat telnetd-ssl, kde je alespoň nějaká " | ||
174 | #~ "Å¡ance, že spojenà nebudou po sÃti zasÃlat nezaÅ¡ifrovaná jména/hesla/" | ||
175 | #~ "informace." | ||
176 | |||
177 | #~ msgid "Warning: rsh-server is installed --- probably not a good idea" | ||
178 | #~ msgstr "VarovánÃ: je nainstalován rsh-server --- to nenà dobrý nápad" | ||
179 | |||
180 | #~ msgid "" | ||
181 | #~ "having rsh-server installed undermines the security that you were " | ||
182 | #~ "probably wanting to obtain by installing ssh. I'd advise you to remove " | ||
183 | #~ "that package." | ||
184 | #~ msgstr "" | ||
185 | #~ "nainstalovánÃm rsh-server si bouráte bezpeÄnost, kterou jste " | ||
186 | #~ "pravdÄ›podobnÄ› chtÄ›li dosáhnout instalacà ssh. DoporuÄujeme tento balÃk " | ||
187 | #~ "odstranit." | ||
188 | |||
189 | #~ msgid "Do you want ssh-keysign to be installed SUID root?" | ||
190 | #~ msgstr "Chcete ssh-keysign nainstalovat jako SUID root?" | ||
191 | |||
192 | #~ msgid "" | ||
193 | #~ "You have the option of installing the ssh-keysign helper with the SUID " | ||
194 | #~ "bit set." | ||
195 | #~ msgstr "" | ||
196 | #~ "Můžete si vybrat, zda chcete nainstalovat ssh-keysign s nastaveným SUID " | ||
197 | #~ "bitem." | ||
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 | #~ "Pokud nastavÃte ssh-keysign SUID, můžete použÃvat 'host-based' " | ||
204 | #~ "autentizaci protokolu verze 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 | #~ "Pokud jste na pochybách, doporuÄujeme SUID bit povolit. Pokud zaznamenáte " | ||
211 | #~ "problémy, můžete nastavenà zmÄ›nit spuÅ¡tÄ›nÃm: dpkg-reconfigure ssh" | ||
212 | |||
213 | #~ msgid "Allow SSH protocol 2 only" | ||
214 | #~ msgstr "Povolit pouze SSH protokol verze 2" | ||
215 | |||
216 | #~ msgid "" | ||
217 | #~ "This version of OpenSSH supports version 2 of the ssh protocol, which is " | ||
218 | #~ "much more secure. Disabling ssh 1 is encouraged, however this will slow " | ||
219 | #~ "things down on low end machines and might prevent older clients from " | ||
220 | #~ "connecting (the ssh client shipped with \"potato\" is affected)." | ||
221 | #~ msgstr "" | ||
222 | #~ "Tato verze OpenSSH podporuje ssh protokol ve verzi 2, který je mnohem " | ||
223 | #~ "bezpeÄnÄ›jÅ¡Ã. Je dobré ssh verze 1 zakázat, nicménÄ› na slabÅ¡Ãch poÄÃtaÄÃch " | ||
224 | #~ "se projevà zpomalenà a také tÃm znemožnÃte pÅ™ihlášenà starÅ¡Ãch klientů " | ||
225 | #~ "(napÅ™Ãklad tÄ›ch z Debianu 2.2)." | ||
226 | |||
227 | #~ msgid "" | ||
228 | #~ "Also please note that keys used for protocol 1 are different so you will " | ||
229 | #~ "not be able to use them if you only allow protocol 2 connections." | ||
230 | #~ msgstr "" | ||
231 | #~ "Také si vÅ¡imnÄ›te, že klÃÄe protokolu verze 1 jsou odliÅ¡né a pokud " | ||
232 | #~ "povolÃte pouze protokol verze 2, nebudete je moci použÃt. " | ||
233 | |||
234 | #~ msgid "" | ||
235 | #~ "If you later change your mind about this setting, README.Debian has " | ||
236 | #~ "instructions on what to do to your sshd_config file." | ||
237 | #~ msgstr "" | ||
238 | #~ "Pokud se později rozhodnete jinak, v README.Debian se nacházà přesný " | ||
239 | #~ "návod, jak upravit soubor sshd_config." | ||
240 | |||
241 | #~ msgid "ssh2 keys merged in configuration files" | ||
242 | #~ msgstr "KlÃÄe ssh2 v konfiguraÄnÃch souborech byly spojeny" | ||
243 | |||
244 | #~ msgid "" | ||
245 | #~ "As of version 3 OpenSSH no longer uses separate files for ssh1 and ssh2 " | ||
246 | #~ "keys. This means the authorized_keys2 and known_hosts2 files are no " | ||
247 | #~ "longer needed. They will still be read in order to maintain backwards " | ||
248 | #~ "compatibility" | ||
249 | #~ msgstr "" | ||
250 | #~ "OpenSSH verze 3 již nepoužÃvá oddÄ›lené soubory pro klÃÄe verze ssh1 a " | ||
251 | #~ "ssh2. To znamená, že soubory authorized_keys2 a known_hosts2 již nejsou " | ||
252 | #~ "potřeba, ovšem z důvodů zachovánà zpětné kompatibility jsou stále " | ||
253 | #~ "naÄÃtány." | ||
254 | |||
255 | #~ msgid "NOTE: Forwarding of X11 and Authorization disabled by default." | ||
256 | #~ msgstr "POZNÃMKA: Autorizace a pÅ™esmÄ›rovánà X11 je standardnÄ› vypnuto." | ||
257 | |||
258 | #~ msgid "" | ||
259 | #~ "For security reasons, the Debian version of ssh has ForwardX11 and " | ||
260 | #~ "ForwardAgent set to ``off'' by default." | ||
261 | #~ msgstr "" | ||
262 | #~ "Z bezpeÄnostnÃch důvodů má verze ssh v Debianu standardnÄ› nastavené " | ||
263 | #~ "ForwardX11 a ForwardAgent na hodnotu \"off\"." | ||
264 | |||
265 | #~ msgid "" | ||
266 | #~ "You can enable it for servers you trust, either in one of the " | ||
267 | #~ "configuration files, or with the -X command line option." | ||
268 | #~ msgstr "" | ||
269 | #~ "Pro servery, kterým důvěřujete, můžete tyto parametry povolit v jednom z " | ||
270 | #~ "konfiguraÄnÃch souborů, nebo z pÅ™Ãkazové řádky parametrem -X." | ||
271 | |||
272 | #~ msgid "More details can be found in /usr/share/doc/ssh/README.Debian" | ||
273 | #~ msgstr "VÃce naleznete v /usr/share/doc/ssh/README.Debian" | ||
274 | |||
275 | #~ msgid "Do you want to run the sshd server?" | ||
276 | #~ msgstr "Chcete spustit sshd server?" | ||
277 | |||
278 | #~ msgid "This package contains both the ssh client, and the sshd server." | ||
279 | #~ msgstr "Tento balÃk obsahuje jak klienta ssh, tak server sshd." | ||
280 | |||
281 | #~ msgid "" | ||
282 | #~ "Normally the sshd Secure Shell Server will be run to allow remote logins " | ||
283 | #~ "via ssh." | ||
284 | #~ msgstr "" | ||
285 | #~ "Obvykle se sshd (Secure Shell Server) spouÅ¡tÃ, aby se vzdálenà uživatelé " | ||
286 | #~ "mohli přihlašovat přes ssh." | ||
287 | |||
288 | #~ msgid "" | ||
289 | #~ "If you are only interested in using the ssh client for outbound " | ||
290 | #~ "connections on this machine, and don't want to log into it at all using " | ||
291 | #~ "ssh, then you can disable sshd here." | ||
292 | #~ msgstr "" | ||
293 | #~ "Pokud na tomto poÄÃtaÄi chcete využÃvat pouze ssh klienta pro odchozà " | ||
294 | #~ "spojenÃ, můžete zde sshd zakázat." | ||
295 | |||
296 | #~ msgid "Environment options on keys have been deprecated" | ||
297 | #~ msgstr "Volby prostÅ™edà spojené s klÃÄi jsou zakázány" | ||
298 | |||
299 | #~ msgid "" | ||
300 | #~ "This version of OpenSSH disables the environment option for public keys " | ||
301 | #~ "by default, in order to avoid certain attacks (for example, LD_PRELOAD). " | ||
302 | #~ "If you are using this option in an authorized_keys file, beware that the " | ||
303 | #~ "keys in question will no longer work until the option is removed." | ||
304 | #~ msgstr "" | ||
305 | #~ "Pro zamezenà urÄitých typů útoků (napÅ™. LD_PRELOAD), tato verze OpenSSH " | ||
306 | #~ "standardnÄ› zabraňuje použÃvat volbu prostÅ™edà u veÅ™ejných klÃÄů. Pokud " | ||
307 | #~ "tuto volbu použÃváte v souboru authorized_keys, tak postižené klÃÄe " | ||
308 | #~ "nebudou fungovat, dokud jim tuto volbu nesmažete." | ||
309 | |||
310 | #~ msgid "" | ||
311 | #~ "To re-enable this option, set \"PermitUserEnvironment yes\" in /etc/ssh/" | ||
312 | #~ "sshd_config after the upgrade is complete, taking note of the warning in " | ||
313 | #~ "the sshd_config(5) manual page." | ||
314 | #~ msgstr "" | ||
315 | #~ "Pro znovupovolenà této volby si po aktualizaci pÅ™eÄtÄ›te varovánà v " | ||
316 | #~ "manuálové stránce sshd_config(5) a v souboru /etc/ssh/sshd_config zadejte " | ||
317 | #~ "\"PermitUserEnvironment yes\"." | ||
diff --git a/debian/po/da.po b/debian/po/da.po new file mode 100644 index 000000000..70787bcb1 --- /dev/null +++ b/debian/po/da.po | |||
@@ -0,0 +1,314 @@ | |||
1 | # | ||
2 | # Translators, if you are not familiar with the PO format, gettext | ||
3 | # documentation is worth reading, especially sections dedicated to | ||
4 | # this format, e.g. by running: | ||
5 | # info -n '(gettext)PO Files' | ||
6 | # info -n '(gettext)Header Entry' | ||
7 | # | ||
8 | # Some information specific to po-debconf are available at | ||
9 | # /usr/share/doc/po-debconf/README-trans | ||
10 | # or http://www.debian.org/intl/l10n/po-debconf/README-trans | ||
11 | # | ||
12 | # Developers do not need to manually edit POT or PO files. | ||
13 | # | ||
14 | # Claus Hindsgaul <claus.hindsgaul@gmail.com>, 2006. | ||
15 | msgid "" | ||
16 | msgstr "" | ||
17 | "Project-Id-Version: openssh 3.8.1p1\n" | ||
18 | "Report-Msgid-Bugs-To: debian-ssh@lists.debian.org\n" | ||
19 | "POT-Creation-Date: 2007-08-19 15:36+0100\n" | ||
20 | "PO-Revision-Date: 2006-10-02 08:53+0200\n" | ||
21 | "Last-Translator: Claus Hindsgaul <claus.hindsgaul@gmail.com>\n" | ||
22 | "Language-Team: Danish\n" | ||
23 | "MIME-Version: 1.0\n" | ||
24 | "Content-Type: text/plain; charset=ISO-8859-1\n" | ||
25 | "Content-Transfer-Encoding: 8bit\n" | ||
26 | "X-Generator: KBabel 1.11.4\n" | ||
27 | |||
28 | #. Type: boolean | ||
29 | #. Description | ||
30 | #: ../openssh-server.templates.master:1001 | ||
31 | #, fuzzy | ||
32 | #| msgid "Generate new configuration file?" | ||
33 | msgid "Generate a new configuration file for OpenSSH?" | ||
34 | msgstr "Generér ny opsætningsfil?" | ||
35 | |||
36 | #. Type: boolean | ||
37 | #. Description | ||
38 | #: ../openssh-server.templates.master:1001 | ||
39 | #, fuzzy | ||
40 | #| msgid "" | ||
41 | #| "This version of OpenSSH has a considerably changed configuration file " | ||
42 | #| "from the version shipped in Debian 'Potato', which you appear to be " | ||
43 | #| "upgrading from. This package can now generate a new configuration file (/" | ||
44 | #| "etc/ssh/sshd.config), which will work with the new server version, but " | ||
45 | #| "will not contain any customisations you made with the old version." | ||
46 | msgid "" | ||
47 | "This version of OpenSSH has a considerably changed configuration file from " | ||
48 | "the version shipped in Debian 'Potato', which you appear to be upgrading " | ||
49 | "from. This package can now generate a new configuration file (/etc/ssh/sshd." | ||
50 | "config), which will work with the new server version, but will not contain " | ||
51 | "any customizations you made with the old version." | ||
52 | msgstr "" | ||
53 | "Opsætningsfilen i denne version af OpenSSH er ændret betydeligt i forhold " | ||
54 | "til den, der fulgte med Debian Potato, som det ser ud til, at du opgraderer " | ||
55 | "fra. Denne pakke kan nu generere en ny opsætningsfil (/etc/ssh/sshd.config), " | ||
56 | "som vil fungere med den nye serverversion, men den vil ikke indeholde " | ||
57 | "eventuelle justeringer, du måtte have indført i den gamle version." | ||
58 | |||
59 | #. Type: boolean | ||
60 | #. Description | ||
61 | #: ../openssh-server.templates.master:1001 | ||
62 | #, fuzzy | ||
63 | #| msgid "" | ||
64 | #| "Please note that this new configuration file will set the value of " | ||
65 | #| "'PermitRootLogin' to yes (meaning that anyone knowing the root password " | ||
66 | #| "can ssh directly in as root). It is the opinion of the maintainer that " | ||
67 | #| "this is the correct default (see README.Debian for more details), but you " | ||
68 | #| "can always edit sshd_config and set it to no if you wish." | ||
69 | msgid "" | ||
70 | "Please note that this new configuration file will set the value of " | ||
71 | "'PermitRootLogin' to 'yes' (meaning that anyone knowing the root password " | ||
72 | "can ssh directly in as root). Please read the README.Debian file for more " | ||
73 | "details about this design choice." | ||
74 | msgstr "" | ||
75 | "Bemærk at den nye opsætningsfil vil sætte værdien af 'PermitRootLogin' til " | ||
76 | "ja (som betyder at alle der kender roots adgangskode, kan tilgå maskinen via " | ||
77 | "ssh direkte). Det er vedligeholderens mening, at dette er den korrekte " | ||
78 | "standardværdi (se README.Debian for flere detaljer), men du kan altid " | ||
79 | "redigere sshd_config og slå det fra, hvis du ønsker det." | ||
80 | |||
81 | #. Type: boolean | ||
82 | #. Description | ||
83 | #: ../openssh-server.templates.master:1001 | ||
84 | #, fuzzy | ||
85 | #| msgid "" | ||
86 | #| "It is strongly recommended that you let this package generate a new " | ||
87 | #| "configuration file now." | ||
88 | msgid "" | ||
89 | "It is strongly recommended that you choose to generate a new configuration " | ||
90 | "file now." | ||
91 | msgstr "" | ||
92 | "Du anbefales stærkt at lade mig oprette en ny opsætningsfil for dig nu." | ||
93 | |||
94 | #. Type: boolean | ||
95 | #. Description | ||
96 | #: ../openssh-server.templates.master:2001 | ||
97 | #, fuzzy | ||
98 | #| msgid "Do you want to continue (and risk killing active ssh sessions)?" | ||
99 | msgid "Do you want to risk killing active SSH sessions?" | ||
100 | msgstr "Vil du fortsætte (og risikere at afbryde aktive ssh-forbindelser)?" | ||
101 | |||
102 | #. Type: boolean | ||
103 | #. Description | ||
104 | #: ../openssh-server.templates.master:2001 | ||
105 | #, fuzzy | ||
106 | #| msgid "" | ||
107 | #| "The version of /etc/init.d/ssh that you have installed, is likely to kill " | ||
108 | #| "all running sshd instances. If you are doing this upgrade via an ssh " | ||
109 | #| "session, that would be a Bad Thing(tm)." | ||
110 | msgid "" | ||
111 | "The currently installed version of /etc/init.d/ssh is likely to kill all " | ||
112 | "running sshd instances. If you are doing this upgrade via an SSH session, " | ||
113 | "you're likely to be disconnected and leave the upgrade procedure unfinished." | ||
114 | msgstr "" | ||
115 | "Den udgave af /etc/init.d/ssh, du har installeret, vil sandsynligvis afbryde " | ||
116 | "alle sshd-dæmoner. Det vil være en rigtigt dårlig idé, hvis du er ved at " | ||
117 | "opgradere via en ssh-forbindelse." | ||
118 | |||
119 | #. Type: boolean | ||
120 | #. Description | ||
121 | #: ../openssh-server.templates.master:2001 | ||
122 | #, fuzzy | ||
123 | #| msgid "" | ||
124 | #| "You can fix this by adding \"--pidfile /var/run/sshd.pid\" to the start-" | ||
125 | #| "stop-daemon line in the stop section of the file." | ||
126 | msgid "" | ||
127 | "This can be fixed by manually adding \"--pidfile /var/run/sshd.pid\" to the " | ||
128 | "start-stop-daemon line in the stop section of the file." | ||
129 | msgstr "" | ||
130 | "Du kan afhjælpe dette ved at tilføje \"--pidfile /var/run/sshd.pid\" til " | ||
131 | "'start-stop-daemon'-linjen i stop-afsnittet af filen." | ||
132 | |||
133 | #. Type: note | ||
134 | #. Description | ||
135 | #: ../openssh-server.templates.master:3001 | ||
136 | msgid "New host key mandatory" | ||
137 | msgstr "" | ||
138 | |||
139 | #. Type: note | ||
140 | #. Description | ||
141 | #: ../openssh-server.templates.master:3001 | ||
142 | #, fuzzy | ||
143 | #| msgid "" | ||
144 | #| "There is an old /etc/ssh/ssh_host_key, which is IDEA encrypted. OpenSSH " | ||
145 | #| "can not handle this host key file, and the ssh-keygen utility from the " | ||
146 | #| "old (non-free) SSH installation does not appear to be available." | ||
147 | msgid "" | ||
148 | "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " | ||
149 | "algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " | ||
150 | "utility from the old (non-free) SSH installation does not appear to be " | ||
151 | "available." | ||
152 | msgstr "" | ||
153 | "Der er en gammel, IDEA-krypteret /etc/ssh/ssh_host_key. OpenSSH kan ikke " | ||
154 | "håndtere en sådan værtsnøglefil, og værktøjet ssh-keygen fra den gamle (ikke-" | ||
155 | "frie, 'non-free') SSH-installation lader ikke til at være tilgængeligt." | ||
156 | |||
157 | #. Type: note | ||
158 | #. Description | ||
159 | #: ../openssh-server.templates.master:3001 | ||
160 | #, fuzzy | ||
161 | #| msgid "You will need to generate a new host key." | ||
162 | msgid "You need to manually generate a new host key." | ||
163 | msgstr "Du skal oprette en ny værtsnøgle." | ||
164 | |||
165 | #. Type: boolean | ||
166 | #. Description | ||
167 | #: ../openssh-server.templates.master:4001 | ||
168 | msgid "Disable challenge-response authentication?" | ||
169 | msgstr "Slå udfordrings-svar godkendelse fra?" | ||
170 | |||
171 | #. Type: boolean | ||
172 | #. Description | ||
173 | #: ../openssh-server.templates.master:4001 | ||
174 | #, fuzzy | ||
175 | #| msgid "" | ||
176 | #| "Password authentication appears to be disabled in your current OpenSSH " | ||
177 | #| "server configuration. In order to prevent users from logging in using " | ||
178 | #| "passwords (perhaps using only public key authentication instead) with " | ||
179 | #| "recent versions of OpenSSH, you must disable challenge-response " | ||
180 | #| "authentication, or else ensure that your PAM configuration does not allow " | ||
181 | #| "Unix password file authentication." | ||
182 | msgid "" | ||
183 | "Password authentication appears to be disabled in the current OpenSSH server " | ||
184 | "configuration. In order to prevent users from logging in using passwords " | ||
185 | "(perhaps using only public key authentication instead) with recent versions " | ||
186 | "of OpenSSH, you must disable challenge-response authentication, or else " | ||
187 | "ensure that your PAM configuration does not allow Unix password file " | ||
188 | "authentication." | ||
189 | msgstr "" | ||
190 | "Adgangskodegodkendelse ser ud til at være deaktiveret i din nuværende " | ||
191 | "OpenSSH-serveropsætning. For at forhindre brugere i at logge ind med " | ||
192 | "adgangskoder (f.eks. kun offentlig nøgle godkendelse) med nyere versioner af " | ||
193 | "OpenSSH, skal du deaktivere udfordrings-svar godkendelse, eller sikre at din " | ||
194 | "PAM opsætning ikke itllader Unix adgangskodefil godkendelse." | ||
195 | |||
196 | #. Type: boolean | ||
197 | #. Description | ||
198 | #: ../openssh-server.templates.master:4001 | ||
199 | msgid "" | ||
200 | "If you disable challenge-response authentication, then users will not be " | ||
201 | "able to log in using passwords. If you leave it enabled (the default " | ||
202 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
203 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
204 | msgstr "" | ||
205 | "Hvis du deaktiverer udfordrings-svar godkendelse, vil brugere ikke være i " | ||
206 | "stand til at logge ind med adgangskoder. Hvis du lader det være slået til " | ||
207 | "(standard svaret), så vil 'PasswordAuthentication no' indstillingen ikke " | ||
208 | "have nogen effekt, medmindre du også redigerer din PAM-opsætning i /etc/pam." | ||
209 | "d/ssh." | ||
210 | |||
211 | #~ msgid "Warning: you must create a new host key" | ||
212 | #~ msgstr "Advarsel: du skal oprette en ny værtsnøgle" | ||
213 | |||
214 | #~ msgid "Warning: telnetd is installed --- probably not a good idea" | ||
215 | #~ msgstr "Advarsel: telnetd er installeret --- sikkert ikke en god idé" | ||
216 | |||
217 | #~ msgid "" | ||
218 | #~ "I'd advise you to either remove the telnetd package (if you don't " | ||
219 | #~ "actually need to offer telnet access) or install telnetd-ssl so that " | ||
220 | #~ "there is at least some chance that telnet sessions will not be sending " | ||
221 | #~ "unencrypted login/password and session information over the network." | ||
222 | #~ msgstr "" | ||
223 | #~ "Jeg vil råde dig til enten at fjerne pakken telnetd (hvis du i " | ||
224 | #~ "virkeligheden ikke har brug for at tilbyde telnet-adgang) eller " | ||
225 | #~ "installere telnetd-ssl, så der i det mindste er en mulighed for, at " | ||
226 | #~ "telnet-sessioner ikke sender adgangskoder og sessions-oplysninger " | ||
227 | #~ "ukrypteret over netværket." | ||
228 | |||
229 | #~ msgid "Warning: rsh-server is installed --- probably not a good idea" | ||
230 | #~ msgstr "Advarsel: rsh-serveren er installeret --- sikkert ikke en god idé" | ||
231 | |||
232 | #~ msgid "" | ||
233 | #~ "having rsh-server installed undermines the security that you were " | ||
234 | #~ "probably wanting to obtain by installing ssh. I'd advise you to remove " | ||
235 | #~ "that package." | ||
236 | #~ msgstr "" | ||
237 | #~ "Den sikkerhed, du nok ønskede at opnå ved at installere ssh undermineres " | ||
238 | #~ "ved, at du har rsh-server installeret. Jeg vil råde dig til at fjerne " | ||
239 | #~ "pakken rsh-server." | ||
240 | |||
241 | #~ msgid "Do you want ssh-keysign to be installed SUID root?" | ||
242 | #~ msgstr "Vil du have, at ssh-keysign bliver installeret 'SUID root'?" | ||
243 | |||
244 | #~ msgid "" | ||
245 | #~ "You have the option of installing the ssh-keysign helper with the SUID " | ||
246 | #~ "bit set." | ||
247 | #~ msgstr "" | ||
248 | #~ "Du har mulighed for at installere ssh-keysign hjælperen med SUID-flaget " | ||
249 | #~ "sat." | ||
250 | |||
251 | #~ msgid "" | ||
252 | #~ "If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 " | ||
253 | #~ "host-based authentication." | ||
254 | #~ msgstr "" | ||
255 | #~ "Hvis du gør ssh-keysign SUID, vil du blive i stand til at benytte SSH " | ||
256 | #~ "protokol 2's værtsnavn-baserede autentifikation." | ||
257 | |||
258 | #~ msgid "" | ||
259 | #~ "If in doubt, I suggest you install it with SUID. If it causes problems " | ||
260 | #~ "you can change your mind later by running: dpkg-reconfigure ssh" | ||
261 | #~ msgstr "" | ||
262 | #~ "Hvis du er i tvivl, vil jeg råde dig til at installere den med SUID. Hvis " | ||
263 | #~ "det skaber problemer, kan du ændre det tilbage igen ved at køre: dpkg-" | ||
264 | #~ "reconfigure ssh" | ||
265 | |||
266 | #~ msgid "Allow SSH protocol 2 only" | ||
267 | #~ msgstr "Tillad kun SSH protokol 2" | ||
268 | |||
269 | #~ msgid "" | ||
270 | #~ "This version of OpenSSH supports version 2 of the ssh protocol, which is " | ||
271 | #~ "much more secure. Disabling ssh 1 is encouraged, however this will slow " | ||
272 | #~ "things down on low end machines and might prevent older clients from " | ||
273 | #~ "connecting (the ssh client shipped with \"potato\" is affected)." | ||
274 | #~ msgstr "" | ||
275 | #~ "Denne udgave af OpenSSH understøtter version 2 af ssh-protokollen, som er " | ||
276 | #~ "betydeligt mere sikker. Det anbefales at deaktivere version 1. Dog kan " | ||
277 | #~ "det sløve langsomme maskiner ned, og forhindre ældre klienter i at opnå " | ||
278 | #~ "forbindelse (ssh klienten der kommer med \"potato\" er en af dem)." | ||
279 | |||
280 | #~ msgid "" | ||
281 | #~ "Also please note that keys used for protocol 1 are different so you will " | ||
282 | #~ "not be able to use them if you only allow protocol 2 connections." | ||
283 | #~ msgstr "" | ||
284 | #~ "Du skal også bemærke at de nøgler som bliver anvendt til protokol 1 er " | ||
285 | #~ "forskellige, så du vil ikke være i stand til at bruge dem, hvis du kun " | ||
286 | #~ "tillader protokol 2 forbindelser." | ||
287 | |||
288 | #~ msgid "" | ||
289 | #~ "If you later change your mind about this setting, README.Debian has " | ||
290 | #~ "instructions on what to do to your sshd_config file." | ||
291 | #~ msgstr "" | ||
292 | #~ "Hvis du senere ændrer din mening om denne indstilling, har README.Debian " | ||
293 | #~ "instruktioner på hvad du skal gøre ved din sshd_config fil." | ||
294 | |||
295 | #~ msgid "NOTE: Forwarding of X11 and Authorization disabled by default." | ||
296 | #~ msgstr "" | ||
297 | #~ "BEMÆRK: Videregivelse af X11 og adgangkontrol er som standard deaktiveret." | ||
298 | |||
299 | #~ msgid "" | ||
300 | #~ "For security reasons, the Debian version of ssh has ForwardX11 and " | ||
301 | #~ "ForwardAgent set to ``off'' by default." | ||
302 | #~ msgstr "" | ||
303 | #~ "Af sikkerhedsgrunde har Debianudgaven af ssh sat ForwardX11 og " | ||
304 | #~ "ForwardAgent til 'off' som standard." | ||
305 | |||
306 | #~ msgid "" | ||
307 | #~ "You can enable it for servers you trust, either in one of the " | ||
308 | #~ "configuration files, or with the -X command line option." | ||
309 | #~ msgstr "" | ||
310 | #~ "Du kan aktivere dem for servere du stoler på, enten i en af " | ||
311 | #~ "opsætningsfilerne eller med kommandolinjetilvalget '-X'." | ||
312 | |||
313 | #~ msgid "More details can be found in /usr/share/doc/ssh/README.Debian" | ||
314 | #~ msgstr "Flere detaljer kan findes i /usr/share/doc/ssh/README.Debian" | ||
diff --git a/debian/po/de.po b/debian/po/de.po new file mode 100644 index 000000000..a1eea116f --- /dev/null +++ b/debian/po/de.po | |||
@@ -0,0 +1,325 @@ | |||
1 | # Translation of openssh debconf templates to German | ||
2 | # Copyright (C) Helge Kreutzmann <debian@helgefjell.de>, 2006, 2007. | ||
3 | # This file is distributed under the same license as the openssh package. | ||
4 | # | ||
5 | msgid "" | ||
6 | msgstr "" | ||
7 | "Project-Id-Version: openssh 1:4.3p2-11\n" | ||
8 | "Report-Msgid-Bugs-To: debian-ssh@lists.debian.org\n" | ||
9 | "POT-Creation-Date: 2007-08-19 15:36+0100\n" | ||
10 | "PO-Revision-Date: 2007-04-24 14:42+0200\n" | ||
11 | "Last-Translator: Helge Kreutzmann <debian@helgefjell.de>\n" | ||
12 | "Language-Team: German <debian-l10n-german@lists.debian.org>\n" | ||
13 | "MIME-Version: 1.0\n" | ||
14 | "Content-Type: text/plain; charset=ISO-8859-15\n" | ||
15 | "Content-Transfer-Encoding: 8bit\n" | ||
16 | |||
17 | #. Type: boolean | ||
18 | #. Description | ||
19 | #: ../openssh-server.templates.master:1001 | ||
20 | msgid "Generate a new configuration file for OpenSSH?" | ||
21 | msgstr "Eine neue Konfigurationsdatei für OpenSSH erzeugen?" | ||
22 | |||
23 | #. Type: boolean | ||
24 | #. Description | ||
25 | #: ../openssh-server.templates.master:1001 | ||
26 | msgid "" | ||
27 | "This version of OpenSSH has a considerably changed configuration file from " | ||
28 | "the version shipped in Debian 'Potato', which you appear to be upgrading " | ||
29 | "from. This package can now generate a new configuration file (/etc/ssh/sshd." | ||
30 | "config), which will work with the new server version, but will not contain " | ||
31 | "any customizations you made with the old version." | ||
32 | msgstr "" | ||
33 | "Diese Version von OpenSSH hat eine deutlich geänderte Konfigurationsdatei " | ||
34 | "gegenüber der in »Potato« ausgelieferten Version, von der Sie anscheinend " | ||
35 | "ein Upgrade durchführen. Dieses Paket kann jetzt eine neue " | ||
36 | "Konfigurationsdatei (/etc/ssh/sshd.config) erzeugen, die mit der neuen " | ||
37 | "Server-Version zusammenarbeitet, aber keine Anpassungen aus der alten " | ||
38 | "Version enthält." | ||
39 | |||
40 | #. Type: boolean | ||
41 | #. Description | ||
42 | #: ../openssh-server.templates.master:1001 | ||
43 | msgid "" | ||
44 | "Please note that this new configuration file will set the value of " | ||
45 | "'PermitRootLogin' to 'yes' (meaning that anyone knowing the root password " | ||
46 | "can ssh directly in as root). Please read the README.Debian file for more " | ||
47 | "details about this design choice." | ||
48 | msgstr "" | ||
49 | "Bitte beachten Sie, dass die neue Konfigurationsdatei »PermitRootLogin« auf " | ||
50 | "»yes« setzt (was bedeutet, dass jeder, der das Root-Passwort kennt, sich " | ||
51 | "direkt via ssh als root anmelden kann). Bitte lesen Sie die Datei README." | ||
52 | "Debian für weitergehende Informationen über diese Design-Entscheidung." | ||
53 | |||
54 | #. Type: boolean | ||
55 | #. Description | ||
56 | #: ../openssh-server.templates.master:1001 | ||
57 | msgid "" | ||
58 | "It is strongly recommended that you choose to generate a new configuration " | ||
59 | "file now." | ||
60 | msgstr "" | ||
61 | "Es wird nachdrücklich empfohlen, dass Sie jetzt eine neue " | ||
62 | "Konfigurationsdatei erzeugen." | ||
63 | |||
64 | #. Type: boolean | ||
65 | #. Description | ||
66 | #: ../openssh-server.templates.master:2001 | ||
67 | msgid "Do you want to risk killing active SSH sessions?" | ||
68 | msgstr "Wollen Sie das Beenden aktiver SSH-Sitzungen riskieren?" | ||
69 | |||
70 | #. Type: boolean | ||
71 | #. Description | ||
72 | #: ../openssh-server.templates.master:2001 | ||
73 | msgid "" | ||
74 | "The currently installed version of /etc/init.d/ssh is likely to kill all " | ||
75 | "running sshd instances. If you are doing this upgrade via an SSH session, " | ||
76 | "you're likely to be disconnected and leave the upgrade procedure unfinished." | ||
77 | msgstr "" | ||
78 | "Die derzeit installierte Version von /etc/init.d/ssh wird vermutlich Ihre " | ||
79 | "aktiven ssh-Instanzen beenden. Falls Sie dieses Upgrade über eine SSH-" | ||
80 | "Sitzung durchführen, dann wird die Verbindung wahrscheinlich getrennt und " | ||
81 | "der Upgrade-Vorgang nicht beendet." | ||
82 | |||
83 | #. Type: boolean | ||
84 | #. Description | ||
85 | #: ../openssh-server.templates.master:2001 | ||
86 | msgid "" | ||
87 | "This can be fixed by manually adding \"--pidfile /var/run/sshd.pid\" to the " | ||
88 | "start-stop-daemon line in the stop section of the file." | ||
89 | msgstr "" | ||
90 | "Dieses Problem kann behoben werden, indem »--pidfile /var/run/sshd.pid« an " | ||
91 | "die start-stop-daemon-Zeile in dem Abschnitt »stop« der Datei /etc/init.d/" | ||
92 | "ssh manuell hinzugefügt wird." | ||
93 | |||
94 | #. Type: note | ||
95 | #. Description | ||
96 | #: ../openssh-server.templates.master:3001 | ||
97 | msgid "New host key mandatory" | ||
98 | msgstr "Neuer Host-Schlüssel verpflichtend" | ||
99 | |||
100 | #. Type: note | ||
101 | #. Description | ||
102 | #: ../openssh-server.templates.master:3001 | ||
103 | msgid "" | ||
104 | "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " | ||
105 | "algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " | ||
106 | "utility from the old (non-free) SSH installation does not appear to be " | ||
107 | "available." | ||
108 | msgstr "" | ||
109 | "Der aktuelle Host-Schlüssel in /etc/ssh/ssh_host_key ist mit dem IDEA-" | ||
110 | "Algorithmus verschlüsselt. OpenSSH kann diese Host-Schlüssel-Datei nicht " | ||
111 | "verarbeiten und das ssh-keygen-Hilfswerkzeug von der alten (nicht-freien) " | ||
112 | "SSH-Installation scheint nicht verfügbar zu sein." | ||
113 | |||
114 | #. Type: note | ||
115 | #. Description | ||
116 | #: ../openssh-server.templates.master:3001 | ||
117 | msgid "You need to manually generate a new host key." | ||
118 | msgstr "Sie müssen manuell einen neuen Host-Schlüssel erzeugen." | ||
119 | |||
120 | #. Type: boolean | ||
121 | #. Description | ||
122 | #: ../openssh-server.templates.master:4001 | ||
123 | msgid "Disable challenge-response authentication?" | ||
124 | msgstr "Challenge-response-Authentifizierung deaktivieren?" | ||
125 | |||
126 | #. Type: boolean | ||
127 | #. Description | ||
128 | #: ../openssh-server.templates.master:4001 | ||
129 | msgid "" | ||
130 | "Password authentication appears to be disabled in the current OpenSSH server " | ||
131 | "configuration. In order to prevent users from logging in using passwords " | ||
132 | "(perhaps using only public key authentication instead) with recent versions " | ||
133 | "of OpenSSH, you must disable challenge-response authentication, or else " | ||
134 | "ensure that your PAM configuration does not allow Unix password file " | ||
135 | "authentication." | ||
136 | msgstr "" | ||
137 | "Passwort-Authentifizierung scheint in der aktuellen OpenSSH-Server-" | ||
138 | "Konfiguration deaktiviert zu sein. Um in neueren Versionen von OpenSSH zu " | ||
139 | "verhindern, dass Benutzer sich unter Verwendung von Passwörtern anmelden " | ||
140 | "(möglicherweise stattdessen nur unter Verwendung von Public-Key-" | ||
141 | "Authentifizierung), müssen Sie Challenge-response-Authentifizierung " | ||
142 | "deaktivieren oder ansonsten sicherstellen, dass Ihre PAM-Konfiguration keine " | ||
143 | "Authentifizierung über Unix-Password-Dateien erlaubt." | ||
144 | |||
145 | #. Type: boolean | ||
146 | #. Description | ||
147 | #: ../openssh-server.templates.master:4001 | ||
148 | msgid "" | ||
149 | "If you disable challenge-response authentication, then users will not be " | ||
150 | "able to log in using passwords. If you leave it enabled (the default " | ||
151 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
152 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
153 | msgstr "" | ||
154 | "Falls Sie Challenge-response-Authentifizierung deaktivieren, werden Benutzer " | ||
155 | "nicht in der Lage sein, sich mit Passwörtern anzumelden. Falls Sie es " | ||
156 | "aktiviert lassen (die Standard-Antwort) wird die »PasswordAuthentication no«-" | ||
157 | "Einstellung keinen nützlichen Effekt haben, es sei denn, sie passen auch " | ||
158 | "Ihre PAM-Konfiguration in /etc/pam.d/ssh an." | ||
159 | |||
160 | #~ msgid "Warning: you must create a new host key" | ||
161 | #~ msgstr "Warnung: Sie müssen einen neuen Host-Schlüssel erzeugen" | ||
162 | |||
163 | #~ msgid "Warning: telnetd is installed --- probably not a good idea" | ||
164 | #~ msgstr "Warnung: telnetd ist installiert --- wahrscheinlich keine gute Idee" | ||
165 | |||
166 | #~ msgid "" | ||
167 | #~ "I'd advise you to either remove the telnetd package (if you don't " | ||
168 | #~ "actually need to offer telnet access) or install telnetd-ssl so that " | ||
169 | #~ "there is at least some chance that telnet sessions will not be sending " | ||
170 | #~ "unencrypted login/password and session information over the network." | ||
171 | #~ msgstr "" | ||
172 | #~ "Wir empfehlen das telnetd Paket zu entfernen (falls Sie keinen telnet " | ||
173 | #~ "Zugang anbieten) oder telnetd-ssl zu installieren, so daß Sie verhindern " | ||
174 | #~ "können, daß Login und Passwort unverschlüsselt durch das Netz gesendet " | ||
175 | #~ "werden." | ||
176 | |||
177 | #~ msgid "Warning: rsh-server is installed --- probably not a good idea" | ||
178 | #~ msgstr "" | ||
179 | #~ "Warnung: rsh-server ist installiert --- wahrscheinlich keine gute Idee" | ||
180 | |||
181 | #~ msgid "" | ||
182 | #~ "having rsh-server installed undermines the security that you were " | ||
183 | #~ "probably wanting to obtain by installing ssh. I'd advise you to remove " | ||
184 | #~ "that package." | ||
185 | #~ msgstr "" | ||
186 | #~ "ist es eine schlechte Idee, den rsh-server installiert zu haben, da er " | ||
187 | #~ "die Sicherheit untergräbt. Wir empfehlen, das Paket zu entfernen." | ||
188 | |||
189 | #~ msgid "Do you want ssh-keysign to be installed SUID root?" | ||
190 | #~ msgstr "Möchten Sie ssh-keysign SUID-Root installieren?" | ||
191 | |||
192 | #~ msgid "" | ||
193 | #~ "You have the option of installing the ssh-keysign helper with the SUID " | ||
194 | #~ "bit set." | ||
195 | #~ msgstr "" | ||
196 | #~ "Sie haben die Möglichkeit, den ssh-keysign-Helfer mit gesetzten SUID-Bit " | ||
197 | #~ "zu installieren." | ||
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 | #~ "Falls Sie ssh-keysign SUID installieren, können Sie die Host-basierende " | ||
204 | #~ "Authentisierung von SSH-Protokoll Version 2 verwenden." | ||
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 | #~ "Falls Sie unsicher sind, empfehle ich, mit SUID zu installieren. Falls es " | ||
211 | #~ "Probleme gibt, können Sie später Ihre Meinung ändern, indem Sie dpkg-" | ||
212 | #~ "reconfigure ssh aufrufen." | ||
213 | |||
214 | #~ msgid "Allow SSH protocol 2 only" | ||
215 | #~ msgstr "Nur SSH-Protokoll Version 2 erlauben" | ||
216 | |||
217 | #~ msgid "" | ||
218 | #~ "This version of OpenSSH supports version 2 of the ssh protocol, which is " | ||
219 | #~ "much more secure. Disabling ssh 1 is encouraged, however this will slow " | ||
220 | #~ "things down on low end machines and might prevent older clients from " | ||
221 | #~ "connecting (the ssh client shipped with \"potato\" is affected)." | ||
222 | #~ msgstr "" | ||
223 | #~ "Diese Version von OpenSSH unterstützt Version 2 des SSH-Protokolls, die " | ||
224 | #~ "sicherer ist. Es wird empfohlen, Version 1 zu deaktivieren, allerdings " | ||
225 | #~ "kann dies Vorgänge auf langsamen Maschinen verzögern und alte Clients an " | ||
226 | #~ "der Verbindungsaufnahme hindern (der ssh-Client von »potato« ist davon " | ||
227 | #~ "betroffen)." | ||
228 | |||
229 | #~ msgid "" | ||
230 | #~ "Also please note that keys used for protocol 1 are different so you will " | ||
231 | #~ "not be able to use them if you only allow protocol 2 connections." | ||
232 | #~ msgstr "" | ||
233 | #~ "Bitte beachten Sie auch, daß sich die für Protokoll 1 verwendeten " | ||
234 | #~ "Schlüssel unterscheiden und Sie diese daher nicht verwenden können, wenn " | ||
235 | #~ "Sie nur Protokoll Version 2-Verbindungen erlauben." | ||
236 | |||
237 | #~ msgid "" | ||
238 | #~ "If you later change your mind about this setting, README.Debian has " | ||
239 | #~ "instructions on what to do to your sshd_config file." | ||
240 | #~ msgstr "" | ||
241 | #~ "Falls Sie später Ihre Meinung über diese Einstellung ändern, finden Sie " | ||
242 | #~ "in README.Debian eine Anleitung was Sie mit der sshd_config-Datei machen " | ||
243 | #~ "müssen." | ||
244 | |||
245 | #~ msgid "NOTE: Forwarding of X11 and Authorization disabled by default." | ||
246 | #~ msgstr "HINWEIS: Weiterleiten von X11 und Berechtigungen ist abgeschaltet." | ||
247 | |||
248 | #~ msgid "" | ||
249 | #~ "For security reasons, the Debian version of ssh has ForwardX11 and " | ||
250 | #~ "ForwardAgent set to ``off'' by default." | ||
251 | #~ msgstr "" | ||
252 | #~ "Aus Sicherheitsgründen ist bei der Debian-Version von ssh ForwardX11 und " | ||
253 | #~ "ForwardAgent auf »off« gesetzt." | ||
254 | |||
255 | #~ msgid "" | ||
256 | #~ "You can enable it for servers you trust, either in one of the " | ||
257 | #~ "configuration files, or with the -X command line option." | ||
258 | #~ msgstr "" | ||
259 | #~ "Sie können dies für Server, denen Sie trauen, entweder per Eintrag in die " | ||
260 | #~ "Konfigurations-Dateien oder per Kommando-Zeilen Option -X ändern." | ||
261 | |||
262 | #~ msgid "More details can be found in /usr/share/doc/ssh/README.Debian" | ||
263 | #~ msgstr "" | ||
264 | #~ "Weitere Details können Sie in /usr/share/doc/ssh/README.Debian finden." | ||
265 | |||
266 | #~ msgid "ssh2 keys merged in configuration files" | ||
267 | #~ msgstr "ssh2-Schlüssel in die Konfigurationsdateien eingefügt" | ||
268 | |||
269 | #~ msgid "" | ||
270 | #~ "As of version 3 OpenSSH no longer uses separate files for ssh1 and ssh2 " | ||
271 | #~ "keys. This means the authorized_keys2 and known_hosts2 files are no " | ||
272 | #~ "longer needed. They will still be read in order to maintain backwards " | ||
273 | #~ "compatibility" | ||
274 | #~ msgstr "" | ||
275 | #~ "Mit Version 3 verwendet OpenSSH nicht mehr separate Dateien für ssh1 und " | ||
276 | #~ "ssh2 Schlüssel. Dies bedeutet, daß authorized_keys2 und known_hosts2 " | ||
277 | #~ "nicht mehr benötigt werden. Sie werden noch eingelesen, um " | ||
278 | #~ "Abwärtskompatibilität zu gewähren." | ||
279 | |||
280 | #~ msgid "Do you want to run the sshd server?" | ||
281 | #~ msgstr "Möchten Sie den sshd Server starten?" | ||
282 | |||
283 | #~ msgid "This package contains both the ssh client, and the sshd server." | ||
284 | #~ msgstr "Das Paket enthält sowohl den Client als auch den sshd Server." | ||
285 | |||
286 | #~ msgid "" | ||
287 | #~ "Normally the sshd Secure Shell Server will be run to allow remote logins " | ||
288 | #~ "via ssh." | ||
289 | #~ msgstr "" | ||
290 | #~ "Normalerweise wird der sshd Secure Shell Server für Remote Logins per " | ||
291 | #~ "sshgestartet." | ||
292 | |||
293 | #~ msgid "" | ||
294 | #~ "If you are only interested in using the ssh client for outbound " | ||
295 | #~ "connections on this machine, and don't want to log into it at all using " | ||
296 | #~ "ssh, then you can disable sshd here." | ||
297 | #~ msgstr "" | ||
298 | #~ "Wenn Sie nur den ssh client nutzen wollen, um sich mit anderen Rechnern " | ||
299 | #~ "zu verbinden, und sich nicht per ssh in diesen Computer einloggen wollen, " | ||
300 | #~ "dann können Sie hier den sshd abschalten." | ||
301 | |||
302 | #~ msgid "Environment options on keys have been deprecated" | ||
303 | #~ msgstr "Umgebungs-Optionen für Schlüssel wurden missbilligt" | ||
304 | |||
305 | #~ msgid "" | ||
306 | #~ "This version of OpenSSH disables the environment option for public keys " | ||
307 | #~ "by default, in order to avoid certain attacks (for example, LD_PRELOAD). " | ||
308 | #~ "If you are using this option in an authorized_keys file, beware that the " | ||
309 | #~ "keys in question will no longer work until the option is removed." | ||
310 | #~ msgstr "" | ||
311 | #~ "Diese Version von OpenSSH deaktiviert standardmäßig die Umgebungsoption " | ||
312 | #~ "füröffentliche Schlüssel um bestimmte Angriffe (zum Beispiel über " | ||
313 | #~ "LD_PRELOAD) zu vermeiden. Falls Sie diese Option in einer authorized_keys-" | ||
314 | #~ "Datei verwenden, beachten Sie, daß die in Frage kommenden Schlüssel nicht " | ||
315 | #~ "funktionieren werden bis diese Option entfernt wurde." | ||
316 | |||
317 | #~ msgid "" | ||
318 | #~ "To re-enable this option, set \"PermitUserEnvironment yes\" in /etc/ssh/" | ||
319 | #~ "sshd_config after the upgrade is complete, taking note of the warning in " | ||
320 | #~ "the sshd_config(5) manual page." | ||
321 | #~ msgstr "" | ||
322 | #~ "Um diese Option wieder zu reaktivieren, setzen Sie, unter " | ||
323 | #~ "Berücksichtigung der Warnung in der sshd_config(5)-Handbuchseite, " | ||
324 | #~ "»PermitUserEnvironment yes« in /etc/ssh/sshd_config nachdem das Upgrade " | ||
325 | #~ "erfolgt ist." | ||
diff --git a/debian/po/el.po b/debian/po/el.po new file mode 100644 index 000000000..478699dbe --- /dev/null +++ b/debian/po/el.po | |||
@@ -0,0 +1,422 @@ | |||
1 | # translation of el.po to Greek | ||
2 | # translation of templates.po to Greek | ||
3 | # | ||
4 | # Translators, if you are not familiar with the PO format, gettext | ||
5 | # documentation is worth reading, especially sections dedicated to | ||
6 | # this format, e.g. by running: | ||
7 | # info -n '(gettext)PO Files' | ||
8 | # info -n '(gettext)Header Entry' | ||
9 | # Some information specific to po-debconf are available at | ||
10 | # /usr/share/doc/po-debconf/README-trans | ||
11 | # or http://www.debian.org/intl/l10n/po-debconf/README-trans# | ||
12 | # Developers do not need to manually edit POT or PO files. | ||
13 | # Konstantinos Margaritis <markos@debian.org>, 2004. | ||
14 | # | ||
15 | msgid "" | ||
16 | msgstr "" | ||
17 | "Project-Id-Version: el\n" | ||
18 | "Report-Msgid-Bugs-To: debian-ssh@lists.debian.org\n" | ||
19 | "POT-Creation-Date: 2007-08-19 15:36+0100\n" | ||
20 | "PO-Revision-Date: 2004-10-14 21:34+0300\n" | ||
21 | "Last-Translator: Konstantinos Margaritis <markos@debian.org>\n" | ||
22 | "Language-Team: Greek <debian-l10n-greek@lists.debian.org>\n" | ||
23 | "MIME-Version: 1.0\n" | ||
24 | "Content-Type: text/plain; charset=UTF-8\n" | ||
25 | "Content-Transfer-Encoding: 8bit\n" | ||
26 | "X-Generator: KBabel 1.0.2\n" | ||
27 | |||
28 | #. Type: boolean | ||
29 | #. Description | ||
30 | #: ../openssh-server.templates.master:1001 | ||
31 | #, fuzzy | ||
32 | msgid "Generate a new configuration file for OpenSSH?" | ||
33 | msgstr "ΔημιουÏγία νÎου αÏχείου Ïυθμίσεων" | ||
34 | |||
35 | #. Type: boolean | ||
36 | #. Description | ||
37 | #: ../openssh-server.templates.master:1001 | ||
38 | #, fuzzy | ||
39 | msgid "" | ||
40 | "This version of OpenSSH has a considerably changed configuration file from " | ||
41 | "the version shipped in Debian 'Potato', which you appear to be upgrading " | ||
42 | "from. This package can now generate a new configuration file (/etc/ssh/sshd." | ||
43 | "config), which will work with the new server version, but will not contain " | ||
44 | "any customizations you made with the old version." | ||
45 | msgstr "" | ||
46 | "Αυτή η Îκδοση του OpenSSH Îχει σημαντικά διαφοÏοποιημÎνο αÏχείο Ïυθμίσεων " | ||
47 | "από την Îκδοση που πεÏιλαμβάνεται στη διανομή 'Potato' του Debian, από την " | ||
48 | "οποία φαίνεται ότι Ï€Ïαγματοποιείτε την αναβάθμιση. Στο σημείο αυτό, σας " | ||
49 | "δίνεται η δυνατότητα να δημιουÏγήσετε Îνα νÎο αÏχείο Ïυθμίσεων (/etc/ssh/" | ||
50 | "sshd_config), το οποίο χÏησιμοποιείται από τη νÎα Îκδοση του δαίμονα, αλλά " | ||
51 | "δεν θα πεÏιÎχει οποιαδήποτε παÏαμετÏοποίηση Îχετε ήδη κάνει στην παλιά " | ||
52 | "Îκδοση." | ||
53 | |||
54 | #. Type: boolean | ||
55 | #. Description | ||
56 | #: ../openssh-server.templates.master:1001 | ||
57 | #, fuzzy | ||
58 | #| msgid "" | ||
59 | #| "Please note that this new configuration file will set the value of " | ||
60 | #| "'PermitRootLogin' to yes (meaning that anyone knowing the root password " | ||
61 | #| "can ssh directly in as root). It is the opinion of the maintainer that " | ||
62 | #| "this is the correct default (see README.Debian for more details), but you " | ||
63 | #| "can always edit sshd_config and set it to no if you wish." | ||
64 | msgid "" | ||
65 | "Please note that this new configuration file will set the value of " | ||
66 | "'PermitRootLogin' to 'yes' (meaning that anyone knowing the root password " | ||
67 | "can ssh directly in as root). Please read the README.Debian file for more " | ||
68 | "details about this design choice." | ||
69 | msgstr "" | ||
70 | "Σημειώστε ότι το νÎο αÏχείο Ïυθμίσεων θα καθοÏίσει την τιμή της επιλογής " | ||
71 | "'PermitRootLogin' σε yes (εννοώντας ότι οποιοσδήποτε γνωÏίζει τον κωδικό " | ||
72 | "Ï€Ïόσβασης του root μποÏεί να συνδεθεί ως χÏήστης root). Κατά τον συντηÏητή " | ||
73 | "αυτή είναι και η σωστή Ï€ÏοκαθοÏισμÎνη ÏÏθμιση (δείτε το README.Debian για " | ||
74 | "πεÏισσότεÏες λεπτομÎÏειες), αλλά μποÏείτε οποιαδήποτε στιγμή να αλλάξετε την " | ||
75 | "τιμή σε no στο αÏχείο sshd_config." | ||
76 | |||
77 | #. Type: boolean | ||
78 | #. Description | ||
79 | #: ../openssh-server.templates.master:1001 | ||
80 | #, fuzzy | ||
81 | msgid "" | ||
82 | "It is strongly recommended that you choose to generate a new configuration " | ||
83 | "file now." | ||
84 | msgstr "Συνιστάται να επιλÎξετε την δημιουÏγία του νÎου αÏχείου Ïυθμίσεων." | ||
85 | |||
86 | #. Type: boolean | ||
87 | #. Description | ||
88 | #: ../openssh-server.templates.master:2001 | ||
89 | #, fuzzy | ||
90 | #| msgid "Do you want to continue (and risk killing active ssh sessions)?" | ||
91 | msgid "Do you want to risk killing active SSH sessions?" | ||
92 | msgstr "" | ||
93 | "ΘÎλετε να συνεχίσετε (με κίνδυνο τεÏÎ¼Î±Ï„Î¹ÏƒÎ¼Î¿Ï Ï„Ï‰Î½ ενεÏγών συνεδÏιών ssh);" | ||
94 | |||
95 | #. Type: boolean | ||
96 | #. Description | ||
97 | #: ../openssh-server.templates.master:2001 | ||
98 | #, fuzzy | ||
99 | #| msgid "" | ||
100 | #| "The version of /etc/init.d/ssh that you have installed, is likely to kill " | ||
101 | #| "all running sshd instances. If you are doing this upgrade via an ssh " | ||
102 | #| "session, that would be a Bad Thing(tm)." | ||
103 | msgid "" | ||
104 | "The currently installed version of /etc/init.d/ssh is likely to kill all " | ||
105 | "running sshd instances. If you are doing this upgrade via an SSH session, " | ||
106 | "you're likely to be disconnected and leave the upgrade procedure unfinished." | ||
107 | msgstr "" | ||
108 | "Η Ï„ÏÎχουσα Îκδοση του /etc/init.d/ssh που είναι εγκατεστημÎνη, πιθανότατα θα " | ||
109 | "τεÏματίσει όλες τις συνεδÏίες του sshd. Αν κάνετε αυτήν την αναβάθμιση μÎσω " | ||
110 | "μιας συνεδÏίας ssh, αυτό είναι μάλλον κακή ιδÎα..." | ||
111 | |||
112 | #. Type: boolean | ||
113 | #. Description | ||
114 | #: ../openssh-server.templates.master:2001 | ||
115 | #, fuzzy | ||
116 | #| msgid "" | ||
117 | #| "You can fix this by adding \"--pidfile /var/run/sshd.pid\" to the start-" | ||
118 | #| "stop-daemon line in the stop section of the file." | ||
119 | msgid "" | ||
120 | "This can be fixed by manually adding \"--pidfile /var/run/sshd.pid\" to the " | ||
121 | "start-stop-daemon line in the stop section of the file." | ||
122 | msgstr "" | ||
123 | "ΜποÏείτε να το διοÏθώσετε αυτό Ï€ÏοσθÎτοντας \"--pidfile /var/run/sshd.pid\" " | ||
124 | "στη γÏαμμή start-stop-daemon στο τμήμα \"stop\" του αÏχείου." | ||
125 | |||
126 | #. Type: note | ||
127 | #. Description | ||
128 | #: ../openssh-server.templates.master:3001 | ||
129 | msgid "New host key mandatory" | ||
130 | msgstr "" | ||
131 | |||
132 | #. Type: note | ||
133 | #. Description | ||
134 | #: ../openssh-server.templates.master:3001 | ||
135 | #, fuzzy | ||
136 | msgid "" | ||
137 | "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " | ||
138 | "algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " | ||
139 | "utility from the old (non-free) SSH installation does not appear to be " | ||
140 | "available." | ||
141 | msgstr "" | ||
142 | "ΥπάÏχει Îνα παλαιότεÏο κλειδί /etc/ssh/ssh_host_key, που είναι " | ||
143 | "κÏυπτογÏαφημÎνο με τον αλγόÏιθμο IDEA. Το OpenSSH δε μποÏεί να χειÏιστεί " | ||
144 | "αυτό το κλειδί και δεν Îχει βÏεθεί το εÏγαλείο ssh-keygen από την παλιά (μη " | ||
145 | "ελεÏθεÏη) εγκατάσταση του SSH." | ||
146 | |||
147 | #. Type: note | ||
148 | #. Description | ||
149 | #: ../openssh-server.templates.master:3001 | ||
150 | #, fuzzy | ||
151 | #| msgid "You will need to generate a new host key." | ||
152 | msgid "You need to manually generate a new host key." | ||
153 | msgstr "Î ÏÎπει να δημιουÏγήσετε Îνα νÎο κλειδί για τον υπολογιστή (host key)." | ||
154 | |||
155 | #. Type: boolean | ||
156 | #. Description | ||
157 | #: ../openssh-server.templates.master:4001 | ||
158 | msgid "Disable challenge-response authentication?" | ||
159 | msgstr "Îα απενεÏγοποιηθεί η πιστοποίηση challenge-response;" | ||
160 | |||
161 | #. Type: boolean | ||
162 | #. Description | ||
163 | #: ../openssh-server.templates.master:4001 | ||
164 | #, fuzzy | ||
165 | #| msgid "" | ||
166 | #| "Password authentication appears to be disabled in your current OpenSSH " | ||
167 | #| "server configuration. In order to prevent users from logging in using " | ||
168 | #| "passwords (perhaps using only public key authentication instead) with " | ||
169 | #| "recent versions of OpenSSH, you must disable challenge-response " | ||
170 | #| "authentication, or else ensure that your PAM configuration does not allow " | ||
171 | #| "Unix password file authentication." | ||
172 | msgid "" | ||
173 | "Password authentication appears to be disabled in the current OpenSSH server " | ||
174 | "configuration. In order to prevent users from logging in using passwords " | ||
175 | "(perhaps using only public key authentication instead) with recent versions " | ||
176 | "of OpenSSH, you must disable challenge-response authentication, or else " | ||
177 | "ensure that your PAM configuration does not allow Unix password file " | ||
178 | "authentication." | ||
179 | msgstr "" | ||
180 | "Η πιστοποίηση με κωδικό είναι απενεÏγοποιημÎνη στο τωÏινό OpenSSH " | ||
181 | "εξυπηÏετητή. Για να αποτÏÎψετε την είσοδο τον χÏηστών με χÏήση ÎºÏ‰Î´Î¹ÎºÎ¿Ï (για " | ||
182 | "παÏάδειγμα να γίνεται χÏήση μόνο του δημοσίου κλειδιοÏ) με την Ï€Ïόσφατες " | ||
183 | "εκδόσεις του OpenSSH, θα Ï€ÏÎπει να απενεÏγοποιήσετε την πιστοποίηση " | ||
184 | "challenge-response ή να επιβεβαιώσετε ότι η διαμόÏφωση του PAM δεν επιτÏÎπει " | ||
185 | "την πιστοποίηση με αÏχείο κωδικών." | ||
186 | |||
187 | #. Type: boolean | ||
188 | #. Description | ||
189 | #: ../openssh-server.templates.master:4001 | ||
190 | msgid "" | ||
191 | "If you disable challenge-response authentication, then users will not be " | ||
192 | "able to log in using passwords. If you leave it enabled (the default " | ||
193 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
194 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
195 | msgstr "" | ||
196 | "Εάν απενεÏγοποιήσετε την πιστοποίηση challenge-response, οι χÏήστες δεν θα " | ||
197 | "μποÏοÏν να εισÎλθουν χÏησιμοποιώντας τον κωδικό τους. Εάν το αφήσετε " | ||
198 | "ενεÏγοποιημÎνο (Ï€Ïοεπιλογή), τότε η επιλογή 'PasswordAuthetication no' δεν " | ||
199 | "θα επιδÏά εκτός και εάν Ïυθμίσετε και το PAM στο αÏχείο /etc/pam.d/ssh." | ||
200 | |||
201 | #~ msgid "Warning: you must create a new host key" | ||
202 | #~ msgstr "" | ||
203 | #~ "Î Ïοσοχή: Ï€ÏÎπει να δημιουÏγήσετε Îνα νÎο κλειδί για τον υπολογιστή (host " | ||
204 | #~ "key)" | ||
205 | |||
206 | #~ msgid "Warning: telnetd is installed --- probably not a good idea" | ||
207 | #~ msgstr "" | ||
208 | #~ "Î Ïοσοχή: είναι ήδη εγκατεστημÎνος ο telnetd --- όχι και τοσο καλή ιδÎα" | ||
209 | |||
210 | #~ msgid "" | ||
211 | #~ "I'd advise you to either remove the telnetd package (if you don't " | ||
212 | #~ "actually need to offer telnet access) or install telnetd-ssl so that " | ||
213 | #~ "there is at least some chance that telnet sessions will not be sending " | ||
214 | #~ "unencrypted login/password and session information over the network." | ||
215 | #~ msgstr "" | ||
216 | #~ "Συνιστάται είτε να αφαιÏÎσετε το πακÎτο telnetd (αν δεν είναι Ï€Ïαγματικά " | ||
217 | #~ "απαÏαίτητη η Ï€Ïόσβαση μÎσω telnet) ή να εγκαταστήσετε το πακÎτο telnetd-" | ||
218 | #~ "ssl, ώστε να υπάÏχει τουλάχιστον μια πιθανότητα οι συνδÎσεις telnet να " | ||
219 | #~ "μην αποστÎλλουν μη κÏυπτογÏαφημÎνες πληÏοφοÏίες κωδικών Ï€Ïόσβασης και " | ||
220 | #~ "συνεδÏιών μÎσω δικτÏου." | ||
221 | |||
222 | #~ msgid "Warning: rsh-server is installed --- probably not a good idea" | ||
223 | #~ msgstr "" | ||
224 | #~ "Î Ïοσοχή: είναι ήδη εγκατεστημÎνος ο rsh-server --- όχι και τοσο καλή ιδÎα" | ||
225 | |||
226 | #~ msgid "" | ||
227 | #~ "having rsh-server installed undermines the security that you were " | ||
228 | #~ "probably wanting to obtain by installing ssh. I'd advise you to remove " | ||
229 | #~ "that package." | ||
230 | #~ msgstr "" | ||
231 | #~ "Η παÏουσία του rsh-server υπονομεÏει την ασφάλεια του συστήματος, την " | ||
232 | #~ "οποία θÎλετε να εξασφαλίσετε με την εγκατάσταση του ssh. Συνιστάται η " | ||
233 | #~ "αφαίÏεση Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… πακÎτου." | ||
234 | |||
235 | #~ msgid "Do you want ssh-keysign to be installed SUID root?" | ||
236 | #~ msgstr "ΘÎλετε να εγκαταστήσετε το ssh-keysign ως SUID;" | ||
237 | |||
238 | #~ msgid "" | ||
239 | #~ "You have the option of installing the ssh-keysign helper with the SUID " | ||
240 | #~ "bit set." | ||
241 | #~ msgstr "" | ||
242 | #~ "Έχετε την επιλογή της εγκατάστασης του εÏγαλείου ssh-keysign με το bit " | ||
243 | #~ "SUID ενεÏγοποιημÎνο." | ||
244 | |||
245 | #~ msgid "" | ||
246 | #~ "If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 " | ||
247 | #~ "host-based authentication." | ||
248 | #~ msgstr "" | ||
249 | #~ "Αν εγκαταστήσετε το ssh-keysign SUID, θα μποÏείτε να χÏησιμοποιήσετε την " | ||
250 | #~ "πιστοποίηση υπολογιστή (host-based authentication) του Ï€Ïωτοκόλου SSH 2." | ||
251 | |||
252 | #~ msgid "" | ||
253 | #~ "If in doubt, I suggest you install it with SUID. If it causes problems " | ||
254 | #~ "you can change your mind later by running: dpkg-reconfigure ssh" | ||
255 | #~ msgstr "" | ||
256 | #~ "Αν Îχετε αμφιβολίες, συνιστάται να το εγκαταστήσετε SUID. Αν " | ||
257 | #~ "διαπιστώσετε Ï€Ïοβλήματα μποÏείτε να αλλάξετε τη ÏÏθμιση αυτή εκτελώντας: " | ||
258 | #~ "dpkg-reconfigure ssh" | ||
259 | |||
260 | #~ msgid "Allow SSH protocol 2 only" | ||
261 | #~ msgstr "Îα επιτÏÎπεται μόνο η χÏήση του Ï€Ïωτοκόλλου SSH 2" | ||
262 | |||
263 | #~ msgid "" | ||
264 | #~ "This version of OpenSSH supports version 2 of the ssh protocol, which is " | ||
265 | #~ "much more secure. Disabling ssh 1 is encouraged, however this will slow " | ||
266 | #~ "things down on low end machines and might prevent older clients from " | ||
267 | #~ "connecting (the ssh client shipped with \"potato\" is affected)." | ||
268 | #~ msgstr "" | ||
269 | #~ "Αυτή η Îκδοση του OpenSSH υποστηÏίζει την Îκδοση 2 του Ï€Ïωτοκόλλου ssh, " | ||
270 | #~ "που είναι Ï€Î¿Î»Ï Ï€Î¹Î¿ ασφαλής. Συνιστάται η απενεÏγοποίηση της Îκδοσης 1, " | ||
271 | #~ "ωστόσο αυτό θα γίνει εις βάÏος της ταχÏτητας σε χαμηλότεÏων επιδόσεων " | ||
272 | #~ "συστήματα και θα απαγοÏÎψει τη σÏνδεση σε παλαιότεÏα Ï€ÏογÏάμματα-πελάτες " | ||
273 | #~ "(Ï€.χ. ο πελάτης ssh που διανÎμεται με την Îκδοση \"potato\")." | ||
274 | |||
275 | #~ msgid "" | ||
276 | #~ "Also please note that keys used for protocol 1 are different so you will " | ||
277 | #~ "not be able to use them if you only allow protocol 2 connections." | ||
278 | #~ msgstr "" | ||
279 | #~ "Επίσης, σημειώστε ότι τα κλειδιά που χÏησιμοποιοÏνταν στο Ï€Ïωτόκολλο 1 " | ||
280 | #~ "είναι διαφοÏετικά και δε θα είναι δυνατή η χÏήση τους αν επιτÏÎψετε μόνο " | ||
281 | #~ "τις συνδÎσεις με το Ï€Ïωτόκολλο 2." | ||
282 | |||
283 | #~ msgid "" | ||
284 | #~ "If you later change your mind about this setting, README.Debian has " | ||
285 | #~ "instructions on what to do to your sshd_config file." | ||
286 | #~ msgstr "" | ||
287 | #~ "Αν αποφασίσετε διαφοÏετικά αÏγότεÏα για αυτή τη ÏÏθμιση, το αÏχείο README." | ||
288 | #~ "Debian Îχει οδηγίες για την κατάλληλη Ï„Ïοποποίηση του αÏχείου sshd_config." | ||
289 | |||
290 | #~ msgid "NOTE: Forwarding of X11 and Authorization disabled by default." | ||
291 | #~ msgstr "" | ||
292 | #~ "ΣΗΜΕΙΩΣΗ: Η Ï€Ïοώθηση των πακÎτων X11 και πιστοποίησης είναι " | ||
293 | #~ "απενεÏγοποιημÎνηεξ οÏισμοÏ." | ||
294 | |||
295 | #~ msgid "" | ||
296 | #~ "For security reasons, the Debian version of ssh has ForwardX11 and " | ||
297 | #~ "ForwardAgent set to ``off'' by default." | ||
298 | #~ msgstr "" | ||
299 | #~ "Για λόγους ασφαλείας, η Îκδοση του ssh στο Debian Îχει τις επιλογÎÏ‚ " | ||
300 | #~ "ForwardX11 και ForwardAgent οÏισμÎνες σε ``off'' εξ οÏισμοÏ." | ||
301 | |||
302 | #~ msgid "" | ||
303 | #~ "You can enable it for servers you trust, either in one of the " | ||
304 | #~ "configuration files, or with the -X command line option." | ||
305 | #~ msgstr "" | ||
306 | #~ "ΜποÏείτε να τα ενεÏγοποιήσετε για διακομιστÎÏ‚ που εμπιστεÏεστε, είτε σε " | ||
307 | #~ "Îνα από τα αÏχεία Ïυθμίσεων, είτε μÎσω της επιλογής -X στη γÏαμμή εντολών." | ||
308 | |||
309 | #~ msgid "More details can be found in /usr/share/doc/ssh/README.Debian" | ||
310 | #~ msgstr "" | ||
311 | #~ "ΠεÏισσότεÏες λεπτομÎÏειες μποÏείτε να βÏείτε στο αÏχείο /usr/share/doc/" | ||
312 | #~ "ssh/README.Debian" | ||
313 | |||
314 | #~ msgid "ssh2 keys merged in configuration files" | ||
315 | #~ msgstr "Τα κλειδιά ssh2 συγχωνεÏτηκαν στα αÏχεία Ïυθμίσεων" | ||
316 | |||
317 | #~ msgid "" | ||
318 | #~ "As of version 3 OpenSSH no longer uses separate files for ssh1 and ssh2 " | ||
319 | #~ "keys. This means the authorized_keys2 and known_hosts2 files are no " | ||
320 | #~ "longer needed. They will still be read in order to maintain backwards " | ||
321 | #~ "compatibility" | ||
322 | #~ msgstr "" | ||
323 | #~ "Από την Îκδοση 3 και Îπειτα, το OpenSSH δεν χÏησιμοποιεί πλÎον ξεχωÏιστά " | ||
324 | #~ "αÏχεία για τα κλειδιά των ssh1 και ssh2. Αυτό σημαίνει ότι τα αÏχεία " | ||
325 | #~ "authorized_keys2 και known_hosts2 δεν είναι πλÎον απαÏαίτητα. Θα " | ||
326 | #~ "χÏησιμοποιοÏνται μόνο για λόγους συμβατότητας." | ||
327 | |||
328 | #~ msgid "Do you want to run the sshd server?" | ||
329 | #~ msgstr "ΘÎλετε να εκτελÎσετε τον δαίμονα sshd;" | ||
330 | |||
331 | #~ msgid "This package contains both the ssh client, and the sshd server." | ||
332 | #~ msgstr "Το πακÎτο αυτό πεÏιÎχει το πελάτη ssh και το δαίμονα sshd." | ||
333 | |||
334 | #~ msgid "" | ||
335 | #~ "Normally the sshd Secure Shell Server will be run to allow remote logins " | ||
336 | #~ "via ssh." | ||
337 | #~ msgstr "" | ||
338 | #~ "Κανονικά ο δαίμονας sshd (Δαίμονας ΑσφαλοÏÏ‚ ΚελÏφους) θα εκτελείται για " | ||
339 | #~ "απομακÏυσμÎνες συνδÎσεις μÎσω ssh." | ||
340 | |||
341 | #~ msgid "" | ||
342 | #~ "If you are only interested in using the ssh client for outbound " | ||
343 | #~ "connections on this machine, and don't want to log into it at all using " | ||
344 | #~ "ssh, then you can disable sshd here." | ||
345 | #~ msgstr "" | ||
346 | #~ "Αν ενδιαφÎÏεστε μόνο για τη χÏήση του πελάτη ssh για εξεÏχόμενες " | ||
347 | #~ "συνδÎσεις από αυτόν τον υπολογιστή και δεν επιθυμείτε να συνδÎεστε σε " | ||
348 | #~ "αυτόν μÎσω ssh, τότε μποÏείτε να απενεÏγοποιήσετε τον sshd στο σημείο " | ||
349 | #~ "αυτό." | ||
350 | |||
351 | #~ msgid "Environment options on keys have been deprecated" | ||
352 | #~ msgstr "" | ||
353 | #~ "Οι επιλογÎÏ‚ πεÏιβάλλοντος κελÏφους για τα κλειδιά είναι πλÎον παÏωχημÎνες." | ||
354 | |||
355 | #~ msgid "" | ||
356 | #~ "This version of OpenSSH disables the environment option for public keys " | ||
357 | #~ "by default, in order to avoid certain attacks (for example, LD_PRELOAD). " | ||
358 | #~ "If you are using this option in an authorized_keys file, beware that the " | ||
359 | #~ "keys in question will no longer work until the option is removed." | ||
360 | #~ msgstr "" | ||
361 | #~ "Αυτή η Îκδοση του OpenSSH απενεÏγοποιεί τις επιλογÎÏ‚ πεÏιβάλλοντος " | ||
362 | #~ "κελÏφους για δημόσια κλειδιά εξ οÏισμοÏ, ώστε να αποφευχθοÏν οÏισμÎνου " | ||
363 | #~ "Ï„Ïπου επιθÎσεις (για παÏάδειγμα, LD_PRELOAD). Αν χÏησιμοποιείτε αυτήν την " | ||
364 | #~ "επιλογή σε Îνα αÏχείο authorized_keys, Îχετε υπόψιν σας ότι τα " | ||
365 | #~ "συγκεκÏιμÎνα κλειδιά δεν θα χÏησιμοποιοÏνται Îως ότου αφαιÏεθεί η επιλογή " | ||
366 | #~ "αυτή." | ||
367 | |||
368 | #~ msgid "" | ||
369 | #~ "To re-enable this option, set \"PermitUserEnvironment yes\" in /etc/ssh/" | ||
370 | #~ "sshd_config after the upgrade is complete, taking note of the warning in " | ||
371 | #~ "the sshd_config(5) manual page." | ||
372 | #~ msgstr "" | ||
373 | #~ "Για να επανενεÏγοποιήσετε αυτήν την επιλογή, οÏίστε " | ||
374 | #~ "\"PermitUserEnvironment yes\" στο αÏχείο /etc/ssh/sshd_config μετά το " | ||
375 | #~ "Ï„Îλος της αναβάθμισης, Îχοντας υπόψιν την Ï€Ïοειδοποίηση στη σελίδα " | ||
376 | #~ "οδηγιών του sshd_config(5)." | ||
377 | |||
378 | #~ msgid "Privilege separation" | ||
379 | #~ msgstr "ΔιαχωÏισμός Î Ïονομίων" | ||
380 | |||
381 | #~ msgid "" | ||
382 | #~ "Privilege separation is turned on by default, so if you decide you want " | ||
383 | #~ "it turned off, you need to add \"UsePrivilegeSeparation no\" to /etc/ssh/" | ||
384 | #~ "sshd_config." | ||
385 | #~ msgstr "" | ||
386 | #~ "Ο διαχωÏισμός Ï€Ïονομίων είναι ενεÏγοποιημÎνος εξ οÏισμοÏ, οπότε αν " | ||
387 | #~ "αποφασίσετε ότι θÎλετε να τον απενεÏγοποιήσετε, Ï€ÏÎπει να Ï€ÏοσθÎσετε την " | ||
388 | #~ "ÏÏθμιση \"UsePrivilegeSeparation no\" στο αÏχείο sshd_config." | ||
389 | |||
390 | #~ msgid "Enable Privilege separation" | ||
391 | #~ msgstr "ΕνεÏγοποίηση ΔιαχωÏÎ¹ÏƒÎ¼Î¿Ï Î Ïονομίων" | ||
392 | |||
393 | #~ msgid "" | ||
394 | #~ "This version of OpenSSH contains the new privilege separation option. " | ||
395 | #~ "This significantly reduces the quantity of code that runs as root, and " | ||
396 | #~ "therefore reduces the impact of security holes in sshd." | ||
397 | #~ msgstr "" | ||
398 | #~ "Αυτή η Îκδοση του OpenSSH πεÏιλαμβάνει τη νÎα επιλογή διαχωÏÎ¹ÏƒÎ¼Î¿Ï " | ||
399 | #~ "Ï€Ïονομίων. Αυτό μειώνει δÏαστικά το ποσοστό των Ï€ÏογÏαμμάτων που " | ||
400 | #~ "εκτελοÏνται ως root, και κατά συνÎπεια και τις Ï„ÏÏπες ασφαλείας του sshd." | ||
401 | |||
402 | #~ msgid "" | ||
403 | #~ "Unfortunately, privilege separation interacts badly with PAM. Any PAM " | ||
404 | #~ "session modules that need to run as root (pam_mkhomedir, for example) " | ||
405 | #~ "will fail, and PAM keyboard-interactive authentication won't work." | ||
406 | #~ msgstr "" | ||
407 | #~ "Δυστυχώς, ο διαχωÏισμός Ï€Ïονομίων δεν συνεÏγάζεται σωστά με το PAM. " | ||
408 | #~ "Οποιεσδήποτε μονάδες συνεδÏίας (session modules) του PAM που Ï€ÏÎπει να " | ||
409 | #~ "εκτελεστοÏν ως root (pam_mkhomedir, για παÏάδειγμα) θα αποτÏχουν, και η " | ||
410 | #~ "πιστοποίηση μÎσω πληκτÏολογίου στο PAM δεν θα λειτουÏγεί." | ||
411 | |||
412 | #~ msgid "" | ||
413 | #~ "Since you've opted to have me generate an sshd_config file for you, you " | ||
414 | #~ "can choose whether or not to have privilege separation turned on or not. " | ||
415 | #~ "Unless you know you need to use PAM features that won't work with this " | ||
416 | #~ "option, you should enable it." | ||
417 | #~ msgstr "" | ||
418 | #~ "Εφόσον Îχετε επιλÎξει να δημιουÏγήθεί αυτόματα το αÏχείο sshd_config, " | ||
419 | #~ "μποÏείτε να επιλÎξετε επίσης αν θÎλετε να ενεÏγοποιήσετε το διαχωÏισμό " | ||
420 | #~ "Ï€Ïονομίων ή όχι. Εκτός αν γνωÏίζετε ότι χÏειάζεστε να χÏησιμοποιήσετε " | ||
421 | #~ "χαÏακτηÏιστικά του PAM που δε συνεÏγάζονται με αυτή την επιλογή, " | ||
422 | #~ "συνιστάται να την ενεÏγοποιήσετε." | ||
diff --git a/debian/po/es.po b/debian/po/es.po new file mode 100644 index 000000000..3258973ee --- /dev/null +++ b/debian/po/es.po | |||
@@ -0,0 +1,400 @@ | |||
1 | # | ||
2 | # openssh debconf translation to spanish | ||
3 | # Copyright (C) 2003-2007 Software in the Public Interest | ||
4 | # This file is distributed under the same license as the XXXX package. | ||
5 | # | ||
6 | # Changes: | ||
7 | # - Initial translation | ||
8 | # Carlos Valdivia Yagüe <valyag@dat,etsit.upm.es>, 2003 | ||
9 | # - Revision | ||
10 | # Javier Fernandez-Sanguino Peña <jfs@computer.org>, 2004 | ||
11 | # - Translation updates | ||
12 | # Javier Fernandez-Sanguino Peña <jfs@computer.org>, 2006-2007 | ||
13 | # | ||
14 | # Traductores, si no conoce el formato PO, merece la pena leer la | ||
15 | # documentación de gettext, especialmente las secciones dedicadas a este | ||
16 | # formato, por ejemplo ejecutando: | ||
17 | # info -n '(gettext)PO Files' | ||
18 | # info -n '(gettext)Header Entry' | ||
19 | # | ||
20 | # Equipo de traducción al español, por favor lean antes de traducir | ||
21 | # los siguientes documentos: | ||
22 | # | ||
23 | # - El proyecto de traducción de Debian al español | ||
24 | # http://www.debian.org/intl/spanish/coordinacion | ||
25 | # especialmente las notas de traducción en | ||
26 | # http://www.debian.org/intl/spanish/notas | ||
27 | # | ||
28 | # - La guía de traducción de po's de debconf: | ||
29 | # /usr/share/doc/po-debconf/README-trans | ||
30 | # o http://www.debian.org/intl/l10n/po-debconf/README-trans | ||
31 | # | ||
32 | msgid "" | ||
33 | msgstr "" | ||
34 | "Project-Id-Version: openssh 3.6.1p2-11\n" | ||
35 | "Report-Msgid-Bugs-To: debian-ssh@lists.debian.org\n" | ||
36 | "POT-Creation-Date: 2007-08-19 15:36+0100\n" | ||
37 | "PO-Revision-Date: 2007-04-23 21:54+0200\n" | ||
38 | "Last-Translator: Javier Fernandez-Sanguino Peña <jfs@computer.org>\n" | ||
39 | "Language-Team: Debian L10n Spanish <debian-l10n-spanish@lists.debian.org>\n" | ||
40 | "MIME-Version: 1.0\n" | ||
41 | "Content-Type: text/plain; charset=ISO-8859-15\n" | ||
42 | "Content-Transfer-Encoding: 8bit\n" | ||
43 | |||
44 | #. Type: boolean | ||
45 | #. Description | ||
46 | #: ../openssh-server.templates.master:1001 | ||
47 | msgid "Generate a new configuration file for OpenSSH?" | ||
48 | msgstr "¿Desea generar un nuevo fichero de configuración para OpenSSH?" | ||
49 | |||
50 | #. Type: boolean | ||
51 | #. Description | ||
52 | #: ../openssh-server.templates.master:1001 | ||
53 | msgid "" | ||
54 | "This version of OpenSSH has a considerably changed configuration file from " | ||
55 | "the version shipped in Debian 'Potato', which you appear to be upgrading " | ||
56 | "from. This package can now generate a new configuration file (/etc/ssh/sshd." | ||
57 | "config), which will work with the new server version, but will not contain " | ||
58 | "any customizations you made with the old version." | ||
59 | msgstr "" | ||
60 | "Esta versión de OpenSSH aha cambiado considerablemente el fichero de " | ||
61 | "configuración del incluido en Debian 'Potato', que es la versión desde la " | ||
62 | "que parece estar actualizando. Puede crear automáticamente un nuevo fichero " | ||
63 | "de configuración (/etc/ssh/sshd.config), que funcionará con la nueva versión " | ||
64 | "del servidor, pero no incuirá las modificaciones que hiciera en la versión " | ||
65 | "antigua." | ||
66 | |||
67 | #. Type: boolean | ||
68 | #. Description | ||
69 | #: ../openssh-server.templates.master:1001 | ||
70 | msgid "" | ||
71 | "Please note that this new configuration file will set the value of " | ||
72 | "'PermitRootLogin' to 'yes' (meaning that anyone knowing the root password " | ||
73 | "can ssh directly in as root). Please read the README.Debian file for more " | ||
74 | "details about this design choice." | ||
75 | msgstr "" | ||
76 | "Además, recuerde que este nuevo fichero de configuración dirá sí en la " | ||
77 | "opción «PermitRootLogin», por lo que cualquiera que conozca la contraseña de " | ||
78 | "root podrá entrar mediante ssh directamente como root. Puede leer README." | ||
79 | "Debian si quiere conocer más información sobre esta elección de diseño." | ||
80 | |||
81 | #. Type: boolean | ||
82 | #. Description | ||
83 | #: ../openssh-server.templates.master:1001 | ||
84 | msgid "" | ||
85 | "It is strongly recommended that you choose to generate a new configuration " | ||
86 | "file now." | ||
87 | msgstr "" | ||
88 | "Es muy recomendable que eliga generar un nuevo fichero de configuración " | ||
89 | "ahora." | ||
90 | |||
91 | #. Type: boolean | ||
92 | #. Description | ||
93 | #: ../openssh-server.templates.master:2001 | ||
94 | msgid "Do you want to risk killing active SSH sessions?" | ||
95 | msgstr "¿Desea correr el riesgo de matar las sesiones SSH activas?" | ||
96 | |||
97 | #. Type: boolean | ||
98 | #. Description | ||
99 | #: ../openssh-server.templates.master:2001 | ||
100 | msgid "" | ||
101 | "The currently installed version of /etc/init.d/ssh is likely to kill all " | ||
102 | "running sshd instances. If you are doing this upgrade via an SSH session, " | ||
103 | "you're likely to be disconnected and leave the upgrade procedure unfinished." | ||
104 | msgstr "" | ||
105 | "La versión de /etc/init.d/ssh que tiene instalada es muy probable que mate " | ||
106 | "todas las estancias que están ejecutándose de sshd. Es muy probable que se " | ||
107 | "le desconecte y el procedimiento de actualización quede a medidas si " | ||
108 | "continúa y está realizando esta actualizando." | ||
109 | |||
110 | #. Type: boolean | ||
111 | #. Description | ||
112 | #: ../openssh-server.templates.master:2001 | ||
113 | msgid "" | ||
114 | "This can be fixed by manually adding \"--pidfile /var/run/sshd.pid\" to the " | ||
115 | "start-stop-daemon line in the stop section of the file." | ||
116 | msgstr "" | ||
117 | "Puede arreglarlo añadiendo manualmente «--pidfile /var/run/sshd.pid» a la " | ||
118 | "línea «start-stop-daemon», en la sección «stop» del fichero." | ||
119 | |||
120 | #. Type: note | ||
121 | #. Description | ||
122 | #: ../openssh-server.templates.master:3001 | ||
123 | msgid "New host key mandatory" | ||
124 | msgstr "Nueva clave de sistema obligatoria" | ||
125 | |||
126 | #. Type: note | ||
127 | #. Description | ||
128 | #: ../openssh-server.templates.master:3001 | ||
129 | msgid "" | ||
130 | "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " | ||
131 | "algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " | ||
132 | "utility from the old (non-free) SSH installation does not appear to be " | ||
133 | "available." | ||
134 | msgstr "" | ||
135 | "La clave actual de su sistema, en /etc/ssh/ssh_host_key, está cifrada con el " | ||
136 | "algoritmo IDEA. OpenSSH no puede manejar este fichero de clave y tampoco " | ||
137 | "parece estar disponible la utilidad «ssh-keygen» de la instalación antigua " | ||
138 | "de SSH (no libre)." | ||
139 | |||
140 | #. Type: note | ||
141 | #. Description | ||
142 | #: ../openssh-server.templates.master:3001 | ||
143 | msgid "You need to manually generate a new host key." | ||
144 | msgstr "Debe generar manualmente una nueva clave de sistema." | ||
145 | |||
146 | #. Type: boolean | ||
147 | #. Description | ||
148 | #: ../openssh-server.templates.master:4001 | ||
149 | msgid "Disable challenge-response authentication?" | ||
150 | msgstr "¿Desea deshabilitar la autenticación basada en desafío-respuesta?" | ||
151 | |||
152 | #. Type: boolean | ||
153 | #. Description | ||
154 | #: ../openssh-server.templates.master:4001 | ||
155 | msgid "" | ||
156 | "Password authentication appears to be disabled in the current OpenSSH server " | ||
157 | "configuration. In order to prevent users from logging in using passwords " | ||
158 | "(perhaps using only public key authentication instead) with recent versions " | ||
159 | "of OpenSSH, you must disable challenge-response authentication, or else " | ||
160 | "ensure that your PAM configuration does not allow Unix password file " | ||
161 | "authentication." | ||
162 | msgstr "" | ||
163 | "Parece que la configuración actual de su servidor de OpenSSH tiene " | ||
164 | "deshabilitada la autenticación mediante contraseñas. En las versiones " | ||
165 | "recientes de OpenSSH para impedir que los usuarios se puedan conectar con " | ||
166 | "contraseñas (y obligar la utilización de sistemas de autenticación con clave " | ||
167 | "pública) debe deshabilitar la autenticación basada en desafío-respuesta o " | ||
168 | "asegurarse de que su configuración PAM no permite autenticación basada en el " | ||
169 | "fichero de contraseñas Unix." | ||
170 | |||
171 | #. Type: boolean | ||
172 | #. Description | ||
173 | #: ../openssh-server.templates.master:4001 | ||
174 | msgid "" | ||
175 | "If you disable challenge-response authentication, then users will not be " | ||
176 | "able to log in using passwords. If you leave it enabled (the default " | ||
177 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
178 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
179 | msgstr "" | ||
180 | "Si deshabilita la autenticación mediante desafío-respuesta los usuarios no " | ||
181 | "podrán acceder con contraseñas. Si la deja habilitada (respuesta por " | ||
182 | "omisión) entonces la opción «PasswordAuthentication no» no tendrá ninguna " | ||
183 | "utilidad a menos que ajuste su configuración de PAM en «/etc/pam.d/ssh»." | ||
184 | |||
185 | #~ msgid "Warning: you must create a new host key" | ||
186 | #~ msgstr "Aviso: debe crear una nueva clave para su servidor" | ||
187 | |||
188 | #~ msgid "Warning: telnetd is installed --- probably not a good idea" | ||
189 | #~ msgstr "Aviso: tiene telnetd instalado (posiblemente no es una buena idea)" | ||
190 | |||
191 | #~ msgid "" | ||
192 | #~ "I'd advise you to either remove the telnetd package (if you don't " | ||
193 | #~ "actually need to offer telnet access) or install telnetd-ssl so that " | ||
194 | #~ "there is at least some chance that telnet sessions will not be sending " | ||
195 | #~ "unencrypted login/password and session information over the network." | ||
196 | #~ msgstr "" | ||
197 | #~ "Es muy aconsejable que borre el paquete telnetd si no necesita realmente " | ||
198 | #~ "ofrecer acceso mediante telnet o instalar telnetd-ssl para que las " | ||
199 | #~ "contraseñas, nombres de usuario y demás información de las sesiones " | ||
200 | #~ "telnet no viajen sin cifrar por la red." | ||
201 | |||
202 | #~ msgid "Warning: rsh-server is installed --- probably not a good idea" | ||
203 | #~ msgstr "" | ||
204 | #~ "Aviso: tiene rsh-server instalado (seguramente, esto no es una buena idea)" | ||
205 | |||
206 | #~ msgid "" | ||
207 | #~ "having rsh-server installed undermines the security that you were " | ||
208 | #~ "probably wanting to obtain by installing ssh. I'd advise you to remove " | ||
209 | #~ "that package." | ||
210 | #~ msgstr "" | ||
211 | #~ "Tener rsh-server instalado representa un menoscabo de la seguridad que " | ||
212 | #~ "probablemente desea obtener instalando ssh. Es muy aconsejable que borre " | ||
213 | #~ "ese paquete." | ||
214 | |||
215 | #~ msgid "Do you want ssh-keysign to be installed SUID root?" | ||
216 | #~ msgstr "¿Quiere instalar ssh-keysign SUID root?" | ||
217 | |||
218 | #~ msgid "" | ||
219 | #~ "You have the option of installing the ssh-keysign helper with the SUID " | ||
220 | #~ "bit set." | ||
221 | #~ msgstr "" | ||
222 | #~ "Puede instalar ssh-keysign con el bit SUID (se ejecutará con privilegios " | ||
223 | #~ "de root)." | ||
224 | |||
225 | #~ msgid "" | ||
226 | #~ "If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 " | ||
227 | #~ "host-based authentication." | ||
228 | #~ msgstr "" | ||
229 | #~ "Si hace ssh-keysign SUID, podrá usar la autenticación basada en servidor " | ||
230 | #~ "de la versión 2 del protocolo SSH." | ||
231 | |||
232 | #~ msgid "" | ||
233 | #~ "If in doubt, I suggest you install it with SUID. If it causes problems " | ||
234 | #~ "you can change your mind later by running: dpkg-reconfigure ssh" | ||
235 | #~ msgstr "" | ||
236 | #~ "Si duda, se recomienda que lo instale SUID. Si le causa problemas puede " | ||
237 | #~ "cambiar de opinión posteriormente ejecutando «dpkg-reconfigure ssh»." | ||
238 | |||
239 | #~ msgid "Allow SSH protocol 2 only" | ||
240 | #~ msgstr "Permitir sólo la versión 2 del protocolo SSH" | ||
241 | |||
242 | #~ msgid "" | ||
243 | #~ "This version of OpenSSH supports version 2 of the ssh protocol, which is " | ||
244 | #~ "much more secure. Disabling ssh 1 is encouraged, however this will slow " | ||
245 | #~ "things down on low end machines and might prevent older clients from " | ||
246 | #~ "connecting (the ssh client shipped with \"potato\" is affected)." | ||
247 | #~ msgstr "" | ||
248 | #~ "Esta versión de OpenSSH soporta la versión 2 del protocolo ssh, que es " | ||
249 | #~ "mucho más segura que la anterior. Se recomienda desactivar la versión 1, " | ||
250 | #~ "aunque funcionará más lento en máquinas modestas y puede impedir que se " | ||
251 | #~ "conecten clientes antiguos, como, por ejemplo, el incluido en «potato»." | ||
252 | |||
253 | #~ msgid "" | ||
254 | #~ "Also please note that keys used for protocol 1 are different so you will " | ||
255 | #~ "not be able to use them if you only allow protocol 2 connections." | ||
256 | #~ msgstr "" | ||
257 | #~ "También tenga en cuenta que las claves utilizadas para el protocolo 1 son " | ||
258 | #~ "diferentes, por lo que no podrá usarlas si únicamente permite conexiones " | ||
259 | #~ "mediante la versión 2 del protocolo." | ||
260 | |||
261 | #~ msgid "" | ||
262 | #~ "If you later change your mind about this setting, README.Debian has " | ||
263 | #~ "instructions on what to do to your sshd_config file." | ||
264 | #~ msgstr "" | ||
265 | #~ "Si más tarde cambia de opinión, el fichero README.Debian contiene " | ||
266 | #~ "instrucciones sobre cómo modificar en el fichero sshd_config." | ||
267 | |||
268 | #~ msgid "NOTE: Forwarding of X11 and Authorization disabled by default." | ||
269 | #~ msgstr "NOTA: Reenvío de X11 y Autorización desactivadas por defecto." | ||
270 | |||
271 | #~ msgid "" | ||
272 | #~ "For security reasons, the Debian version of ssh has ForwardX11 and " | ||
273 | #~ "ForwardAgent set to ``off'' by default." | ||
274 | #~ msgstr "" | ||
275 | #~ "Por razones de seguridad, la versión de ssh de Debian tiene por defecto " | ||
276 | #~ "ForwardX11 y ForwardAgent desactivadas." | ||
277 | |||
278 | #~ msgid "" | ||
279 | #~ "You can enable it for servers you trust, either in one of the " | ||
280 | #~ "configuration files, or with the -X command line option." | ||
281 | #~ msgstr "" | ||
282 | #~ "Puede activar estas opciones para los servidores en los que confíe, en " | ||
283 | #~ "los ficheros de configuración o con la opción -X en línea de comandos." | ||
284 | |||
285 | #~ msgid "More details can be found in /usr/share/doc/ssh/README.Debian" | ||
286 | #~ msgstr "Puede encontrar más detalles en /usr/share/doc/ssh/README.Debian." | ||
287 | |||
288 | #~ msgid "ssh2 keys merged in configuration files" | ||
289 | #~ msgstr "Las claves ssh2 ya se incluyen en los ficheros de configuración" | ||
290 | |||
291 | #~ msgid "" | ||
292 | #~ "As of version 3 OpenSSH no longer uses separate files for ssh1 and ssh2 " | ||
293 | #~ "keys. This means the authorized_keys2 and known_hosts2 files are no " | ||
294 | #~ "longer needed. They will still be read in order to maintain backwards " | ||
295 | #~ "compatibility" | ||
296 | #~ msgstr "" | ||
297 | #~ "A partir de la versión 3, OpenSSH ya no utiliza ficheros diferentes para " | ||
298 | #~ "las claves ssh1 y ssh2. Esto quiere decir que ya no son necesarios los " | ||
299 | #~ "ficheros authorized_keys2 y known_hosts2, aunque aún se seguirán leyendo " | ||
300 | #~ "para mantener compatibilidad hacia atrás." | ||
301 | |||
302 | #~ msgid "Do you want to run the sshd server?" | ||
303 | #~ msgstr "¿Quiere ejecutar el servidor sshd?" | ||
304 | |||
305 | #~ msgid "This package contains both the ssh client, and the sshd server." | ||
306 | #~ msgstr "Este paquete contiene el cliente ssh y el servidor sshd." | ||
307 | |||
308 | #~ msgid "" | ||
309 | #~ "Normally the sshd Secure Shell Server will be run to allow remote logins " | ||
310 | #~ "via ssh." | ||
311 | #~ msgstr "" | ||
312 | #~ "Generalmente, el servidor de ssh (Secure Shell Server) se ejecuta para " | ||
313 | #~ "permitir el acceso remoto mediante ssh." | ||
314 | |||
315 | #~ msgid "" | ||
316 | #~ "If you are only interested in using the ssh client for outbound " | ||
317 | #~ "connections on this machine, and don't want to log into it at all using " | ||
318 | #~ "ssh, then you can disable sshd here." | ||
319 | #~ msgstr "" | ||
320 | #~ "Si sólo está interesado en usar el cliente ssh en conexiones salientes " | ||
321 | #~ "del sistema y no quiere acceder a él mediante ssh, entonces puede " | ||
322 | #~ "desactivar sshd." | ||
323 | |||
324 | #~ msgid "Environment options on keys have been deprecated" | ||
325 | #~ msgstr "Las opciones de entorno para las claves, en desuso" | ||
326 | |||
327 | #~ msgid "" | ||
328 | #~ "This version of OpenSSH disables the environment option for public keys " | ||
329 | #~ "by default, in order to avoid certain attacks (for example, LD_PRELOAD). " | ||
330 | #~ "If you are using this option in an authorized_keys file, beware that the " | ||
331 | #~ "keys in question will no longer work until the option is removed." | ||
332 | #~ msgstr "" | ||
333 | #~ "Esta versión de OpenSSH tiene desactivada por defecto la opción de " | ||
334 | #~ "entorno para las claves públicas, para evitar ciertos ataques (por " | ||
335 | #~ "ejemplo, basados en LD_PRELOAD). Si utiliza esta opción en un fichero " | ||
336 | #~ "authorized_keys, las claves implicadas no funcionarán hasta que borre la " | ||
337 | #~ "opción." | ||
338 | |||
339 | #~ msgid "" | ||
340 | #~ "To re-enable this option, set \"PermitUserEnvironment yes\" in /etc/ssh/" | ||
341 | #~ "sshd_config after the upgrade is complete, taking note of the warning in " | ||
342 | #~ "the sshd_config(5) manual page." | ||
343 | #~ msgstr "" | ||
344 | #~ "Para volver a activar esta opción, escriba «PermitUserEnvironment yes» " | ||
345 | #~ "en /etc/ssh/sshd_config al terminar la actualización, teniendo en cuenta " | ||
346 | #~ "el aviso de la página de manual de sshd_config(5)." | ||
347 | |||
348 | #~ msgid "Privilege separation" | ||
349 | #~ msgstr "Separación de privilegios" | ||
350 | |||
351 | #~ msgid "" | ||
352 | #~ "Privilege separation is turned on by default, so if you decide you want " | ||
353 | #~ "it turned off, you need to add \"UsePrivilegeSeparation no\" to /etc/ssh/" | ||
354 | #~ "sshd_config." | ||
355 | #~ msgstr "" | ||
356 | #~ "La separación de privilegios está activa por defecto, por lo que si " | ||
357 | #~ "decide desactivarla, tiene que añadir «UsePrivilegeSeparation no» al " | ||
358 | #~ "fichero /etc/ssh/sshd_config." | ||
359 | |||
360 | #~ msgid "Enable Privilege separation" | ||
361 | #~ msgstr "Activar separación de privilegios" | ||
362 | |||
363 | #~ msgid "" | ||
364 | #~ "This version of OpenSSH contains the new privilege separation option. " | ||
365 | #~ "This significantly reduces the quantity of code that runs as root, and " | ||
366 | #~ "therefore reduces the impact of security holes in sshd." | ||
367 | #~ msgstr "" | ||
368 | #~ "Esta versión de OpenSSH incluye una nueva opción de separación de " | ||
369 | #~ "privilegios que reduce significativamente la cantidad de código que se " | ||
370 | #~ "ejecuta como root, por lo que reduce el impacto de posibles agujeros de " | ||
371 | #~ "seguridad en sshd." | ||
372 | |||
373 | #~ msgid "" | ||
374 | #~ "Unfortunately, privilege separation interacts badly with PAM. Any PAM " | ||
375 | #~ "session modules that need to run as root (pam_mkhomedir, for example) " | ||
376 | #~ "will fail, and PAM keyboard-interactive authentication won't work." | ||
377 | #~ msgstr "" | ||
378 | #~ "Desafortunadamente, la separación de privilegios no funciona " | ||
379 | #~ "correctamente con PAM. Cualquier módulo PAM que necesite ejecutarse como " | ||
380 | #~ "root (como, por ejemplo, pam_mkhomedir) y la autenticación interactiva " | ||
381 | #~ "PAM con teclado no funcionarán." | ||
382 | |||
383 | #~ msgid "" | ||
384 | #~ "Since you've opted to have me generate an sshd_config file for you, you " | ||
385 | #~ "can choose whether or not to have privilege separation turned on or not. " | ||
386 | #~ "Unless you know you need to use PAM features that won't work with this " | ||
387 | #~ "option, you should enable it." | ||
388 | #~ msgstr "" | ||
389 | #~ "Puesto que ha elegido crear automáticamente el fichero sshd_config, puede " | ||
390 | #~ "decidir ahora si quiere activar la opción de separación de privilegios. A " | ||
391 | #~ "menos que necesite usar ciertas características de PAM que no funcionan " | ||
392 | #~ "con esta opción, debería responder sí a esta pregunta." | ||
393 | |||
394 | #~ msgid "" | ||
395 | #~ "NB! If you are running a 2.0 series Linux kernel, then privilege " | ||
396 | #~ "separation will not work at all, and your sshd will fail to start unless " | ||
397 | #~ "you explicitly turn privilege separation off." | ||
398 | #~ msgstr "" | ||
399 | #~ "Nota: Si utiliza un núcleo Linux 2.0, la separación de privilegios " | ||
400 | #~ "fallará estrepitosamente y sshd no funcionará a no ser que la desactive." | ||
diff --git a/debian/po/eu.po b/debian/po/eu.po new file mode 100644 index 000000000..3bed0c515 --- /dev/null +++ b/debian/po/eu.po | |||
@@ -0,0 +1,156 @@ | |||
1 | # translation of openssh-templates.po to basque | ||
2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER | ||
3 | # This file is distributed under the same license as the PACKAGE package. | ||
4 | # | ||
5 | # Piarres Beobide <pi@beobide.net>, 2007. | ||
6 | msgid "" | ||
7 | msgstr "" | ||
8 | "Project-Id-Version: openssh-templates\n" | ||
9 | "Report-Msgid-Bugs-To: debian-ssh@lists.debian.org\n" | ||
10 | "POT-Creation-Date: 2007-08-19 15:36+0100\n" | ||
11 | "PO-Revision-Date: 2007-04-27 12:10+0200\n" | ||
12 | "Last-Translator: Piarres Beobide <pi@beobide.net>\n" | ||
13 | "Language-Team: librezale <librezale@librezale.org>\n" | ||
14 | "MIME-Version: 1.0\n" | ||
15 | "Content-Type: text/plain; charset=UTF-8\n" | ||
16 | "Content-Transfer-Encoding: 8bit\n" | ||
17 | "X-Generator: Pootle 0.11\n" | ||
18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||
19 | |||
20 | #. Type: boolean | ||
21 | #. Description | ||
22 | #: ../openssh-server.templates.master:1001 | ||
23 | msgid "Generate a new configuration file for OpenSSH?" | ||
24 | msgstr "OpenSSH-rentzat konfigurazio fitxategi berri bat sortu?" | ||
25 | |||
26 | #. Type: boolean | ||
27 | #. Description | ||
28 | #: ../openssh-server.templates.master:1001 | ||
29 | msgid "" | ||
30 | "This version of OpenSSH has a considerably changed configuration file from " | ||
31 | "the version shipped in Debian 'Potato', which you appear to be upgrading " | ||
32 | "from. This package can now generate a new configuration file (/etc/ssh/sshd." | ||
33 | "config), which will work with the new server version, but will not contain " | ||
34 | "any customizations you made with the old version." | ||
35 | msgstr "" | ||
36 | "OpenSSH bertsio honek konfigurazio fitxategia nahiko aldatu du Debian " | ||
37 | "'Potato' bertsioak banatu zuenetik, dirudienez zu bertsio horretatik " | ||
38 | "eguneratzen ari zara. Pakete honek konfigurazio fitxategi berri bat sortu " | ||
39 | "dezake (/etc/ssh/sshd.config) bertsio honetarako funtziona dezan baina ez " | ||
40 | "ditu zuk bertsio zaharrari egin ahal izan diezazkiokezun pertsonalizazioak " | ||
41 | "edukiko." | ||
42 | |||
43 | #. Type: boolean | ||
44 | #. Description | ||
45 | #: ../openssh-server.templates.master:1001 | ||
46 | msgid "" | ||
47 | "Please note that this new configuration file will set the value of " | ||
48 | "'PermitRootLogin' to 'yes' (meaning that anyone knowing the root password " | ||
49 | "can ssh directly in as root). Please read the README.Debian file for more " | ||
50 | "details about this design choice." | ||
51 | msgstr "" | ||
52 | "Kontutan izan konfigurazio fitxategi berri honek 'PermitRootLogin' " | ||
53 | "parametroan balioa 'yes' bezala ezarriko duela (honek root erabiltzaileak " | ||
54 | "ssh bidez sartzeko aukera emango du). Mesedez irakurri README.Debian " | ||
55 | "fitxategia ezarpen honen xehetasun gehiagorako." | ||
56 | |||
57 | #. Type: boolean | ||
58 | #. Description | ||
59 | #: ../openssh-server.templates.master:1001 | ||
60 | msgid "" | ||
61 | "It is strongly recommended that you choose to generate a new configuration " | ||
62 | "file now." | ||
63 | msgstr "Gomendagarria da konfigurazio fitxategi berri bat orain sortzea." | ||
64 | |||
65 | #. Type: boolean | ||
66 | #. Description | ||
67 | #: ../openssh-server.templates.master:2001 | ||
68 | msgid "Do you want to risk killing active SSH sessions?" | ||
69 | msgstr "Irekirik dauden SSH saioak ixteko arriskua artu nahi duzu?" | ||
70 | |||
71 | #. Type: boolean | ||
72 | #. Description | ||
73 | #: ../openssh-server.templates.master:2001 | ||
74 | msgid "" | ||
75 | "The currently installed version of /etc/init.d/ssh is likely to kill all " | ||
76 | "running sshd instances. If you are doing this upgrade via an SSH session, " | ||
77 | "you're likely to be disconnected and leave the upgrade procedure unfinished." | ||
78 | msgstr "" | ||
79 | "Instalaturik dagoen /etc/init.d/ssh bertsioak martxan dauden sshd " | ||
80 | "instantziak hilko ditu. Bertsio berritze hau SSH bidez egiten ari bazara, " | ||
81 | "ziurrenik deskonektatu egingo zara eta bertsio berritze prozedura ez da " | ||
82 | "behar bezala amaituko." | ||
83 | |||
84 | #. Type: boolean | ||
85 | #. Description | ||
86 | #: ../openssh-server.templates.master:2001 | ||
87 | msgid "" | ||
88 | "This can be fixed by manually adding \"--pidfile /var/run/sshd.pid\" to the " | ||
89 | "start-stop-daemon line in the stop section of the file." | ||
90 | msgstr "" | ||
91 | "Hu eskuz konpondu daiteke \"--pidfile /var/run/sshd.pid\" gehituaz start-" | ||
92 | "stop-daemon lerroan fitxategiaren \"stop\" atalean." | ||
93 | |||
94 | #. Type: note | ||
95 | #. Description | ||
96 | #: ../openssh-server.templates.master:3001 | ||
97 | msgid "New host key mandatory" | ||
98 | msgstr "Ostalari gako berria beharrezkoa" | ||
99 | |||
100 | #. Type: note | ||
101 | #. Description | ||
102 | #: ../openssh-server.templates.master:3001 | ||
103 | msgid "" | ||
104 | "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " | ||
105 | "algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " | ||
106 | "utility from the old (non-free) SSH installation does not appear to be " | ||
107 | "available." | ||
108 | msgstr "" | ||
109 | "/etc/ssh/ssh_host_key-ko ostalari gakoa DEA algoritmoaren bidez " | ||
110 | "enkriptaturik dago. OpenSSH ez da ostalari gako mota hau kudeatzeko gai eta " | ||
111 | "SSH instalazio zaharreko (ez-librea) ssh-keygen lanabesa dirudienez ez dago " | ||
112 | "erabilgarri." | ||
113 | |||
114 | #. Type: note | ||
115 | #. Description | ||
116 | #: ../openssh-server.templates.master:3001 | ||
117 | msgid "You need to manually generate a new host key." | ||
118 | msgstr "Ostalari gako berri bat eskuz sortu behar duzu." | ||
119 | |||
120 | #. Type: boolean | ||
121 | #. Description | ||
122 | #: ../openssh-server.templates.master:4001 | ||
123 | msgid "Disable challenge-response authentication?" | ||
124 | msgstr "erronka-erantzun autentifikazioa ezgaitu?" | ||
125 | |||
126 | #. Type: boolean | ||
127 | #. Description | ||
128 | #: ../openssh-server.templates.master:4001 | ||
129 | msgid "" | ||
130 | "Password authentication appears to be disabled in the current OpenSSH server " | ||
131 | "configuration. In order to prevent users from logging in using passwords " | ||
132 | "(perhaps using only public key authentication instead) with recent versions " | ||
133 | "of OpenSSH, you must disable challenge-response authentication, or else " | ||
134 | "ensure that your PAM configuration does not allow Unix password file " | ||
135 | "authentication." | ||
136 | msgstr "" | ||
137 | "Pasahitz egiaztapena dirudienez ezgaiturik dago instalaturik dagoen OpenSSH " | ||
138 | "konfigurazioan. Pasahitzak erabiliaz OpenSSH bertsio berrietan saio hastea " | ||
139 | "ezintzeko (agian gako publiko autentifikazioa bakarrik erabiliaz), erronka-" | ||
140 | "erantzun (challenge-response) autentifikazioa ezgaitu edo zure PAM " | ||
141 | "konfigurazioak UNIX pasahitz fitxategi autentifikazioa onartzen ez duela " | ||
142 | "ziurtatu beharko duzu." | ||
143 | |||
144 | #. Type: boolean | ||
145 | #. Description | ||
146 | #: ../openssh-server.templates.master:4001 | ||
147 | msgid "" | ||
148 | "If you disable challenge-response authentication, then users will not be " | ||
149 | "able to log in using passwords. If you leave it enabled (the default " | ||
150 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
151 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
152 | msgstr "" | ||
153 | "Erronka-erantzun autentifikazioa ezgaituaz gero erabiltzaileak ez dira " | ||
154 | "pasahitza erabiliaz saio hasteko gai izango. Berau gaiturik utziaz gero " | ||
155 | "(lehentsiriko erantzuna), 'PasswordAuthentication no' aukerak ez du " | ||
156 | "ondoriorik izango /etc/pam.d/ssh-eko PAM konfigurazioa doitzen ez baduzu." | ||
diff --git a/debian/po/fi.po b/debian/po/fi.po new file mode 100644 index 000000000..58cf74e2d --- /dev/null +++ b/debian/po/fi.po | |||
@@ -0,0 +1,375 @@ | |||
1 | # translation of fi.po to Finnish | ||
2 | # openssh translation | ||
3 | # | ||
4 | # Translators, if you are not familiar with the PO format, gettext | ||
5 | # documentation is worth reading, especially sections dedicated to | ||
6 | # this format, e.g. by running: | ||
7 | # info -n '(gettext)PO Files' | ||
8 | # info -n '(gettext)Header Entry' | ||
9 | # | ||
10 | # Some information specific to po-debconf are available at | ||
11 | # /usr/share/doc/po-debconf/README-trans | ||
12 | # or http://www.debian.org/intl/l10n/po-debconf/README-trans | ||
13 | # | ||
14 | # Developers do not need to manually edit POT or PO files. | ||
15 | # | ||
16 | # Matti Pöllä <mpo@iki.fi>, 2004-2005. | ||
17 | msgid "" | ||
18 | msgstr "" | ||
19 | "Project-Id-Version: openssh\n" | ||
20 | "Report-Msgid-Bugs-To: debian-ssh@lists.debian.org\n" | ||
21 | "POT-Creation-Date: 2007-08-19 15:36+0100\n" | ||
22 | "PO-Revision-Date: 2005-04-08 22:15+0300\n" | ||
23 | "Last-Translator: Matti Pöllä <mpo@iki.fi>\n" | ||
24 | "Language-Team: Finnish <debian-l10n-finnish@lists.debian.org>\n" | ||
25 | "MIME-Version: 1.0\n" | ||
26 | "Content-Type: text/plain; charset=UTF-8\n" | ||
27 | "Content-Transfer-Encoding: 8bit\n" | ||
28 | |||
29 | #. Type: boolean | ||
30 | #. Description | ||
31 | #: ../openssh-server.templates.master:1001 | ||
32 | #, fuzzy | ||
33 | msgid "Generate a new configuration file for OpenSSH?" | ||
34 | msgstr "Luo uusi asetustiedosto" | ||
35 | |||
36 | #. Type: boolean | ||
37 | #. Description | ||
38 | #: ../openssh-server.templates.master:1001 | ||
39 | #, fuzzy | ||
40 | msgid "" | ||
41 | "This version of OpenSSH has a considerably changed configuration file from " | ||
42 | "the version shipped in Debian 'Potato', which you appear to be upgrading " | ||
43 | "from. This package can now generate a new configuration file (/etc/ssh/sshd." | ||
44 | "config), which will work with the new server version, but will not contain " | ||
45 | "any customizations you made with the old version." | ||
46 | msgstr "" | ||
47 | "Tämän OpenSSH-version käyttämän asetustiedoston muoto poikkeaa \n" | ||
48 | "huomattavasti Debian \"Potato\":n mukana toimitetusta versiosta, jota olet \n" | ||
49 | "päivittämässä. Uusi asetustiedosto (/etc/ssh/sshd.config) voidaan \n" | ||
50 | "luoda nyt. Uudet asetukset toimivat uuden palvelinversion kanssa, mutta \n" | ||
51 | "vanhaan versioon itse tehdyt mukautukset menetetään." | ||
52 | |||
53 | #. Type: boolean | ||
54 | #. Description | ||
55 | #: ../openssh-server.templates.master:1001 | ||
56 | #, fuzzy | ||
57 | #| msgid "" | ||
58 | #| "Please note that this new configuration file will set the value of " | ||
59 | #| "'PermitRootLogin' to yes (meaning that anyone knowing the root password " | ||
60 | #| "can ssh directly in as root). It is the opinion of the maintainer that " | ||
61 | #| "this is the correct default (see README.Debian for more details), but you " | ||
62 | #| "can always edit sshd_config and set it to no if you wish." | ||
63 | msgid "" | ||
64 | "Please note that this new configuration file will set the value of " | ||
65 | "'PermitRootLogin' to 'yes' (meaning that anyone knowing the root password " | ||
66 | "can ssh directly in as root). Please read the README.Debian file for more " | ||
67 | "details about this design choice." | ||
68 | msgstr "" | ||
69 | "Huomaa, että uudessa asetustiedostossa muuttujalla \"PermitRootLogin\" \n" | ||
70 | "on arvo \"yes\" (tarkoittaen, että kuka tahansa pääkäyttäjän salasanan " | ||
71 | "tietävä \n" | ||
72 | "voi kirjautua suoraan ssh:n avulla pääkäyttäjänä). Paketin ylläpitäjän " | ||
73 | "mielestä \n" | ||
74 | "tämä on sopiva oletusarvo (lisätietoa tiedostossa README.Debian), mutta " | ||
75 | "tämän \n" | ||
76 | "voi halutessaan muuttaa arvoon \"no\" muokkaamalla tiedostoa sshd_config." | ||
77 | |||
78 | #. Type: boolean | ||
79 | #. Description | ||
80 | #: ../openssh-server.templates.master:1001 | ||
81 | #, fuzzy | ||
82 | msgid "" | ||
83 | "It is strongly recommended that you choose to generate a new configuration " | ||
84 | "file now." | ||
85 | msgstr "Uuden asetustiedoston luominen on erittäin suositeltavaa." | ||
86 | |||
87 | #. Type: boolean | ||
88 | #. Description | ||
89 | #: ../openssh-server.templates.master:2001 | ||
90 | #, fuzzy | ||
91 | #| msgid "Do you want to continue (and risk killing active ssh sessions)?" | ||
92 | msgid "Do you want to risk killing active SSH sessions?" | ||
93 | msgstr "Haluatko jatkaa (ja mahdollisesti lopettaa aktiiviset ssh-istunnot)?" | ||
94 | |||
95 | #. Type: boolean | ||
96 | #. Description | ||
97 | #: ../openssh-server.templates.master:2001 | ||
98 | #, fuzzy | ||
99 | #| msgid "" | ||
100 | #| "The version of /etc/init.d/ssh that you have installed, is likely to kill " | ||
101 | #| "all running sshd instances. If you are doing this upgrade via an ssh " | ||
102 | #| "session, that would be a Bad Thing(tm)." | ||
103 | msgid "" | ||
104 | "The currently installed version of /etc/init.d/ssh is likely to kill all " | ||
105 | "running sshd instances. If you are doing this upgrade via an SSH session, " | ||
106 | "you're likely to be disconnected and leave the upgrade procedure unfinished." | ||
107 | msgstr "" | ||
108 | "Asennettu versio tiedostosta /etc/init.d/ssh lopettaa todennäköisesti " | ||
109 | "kaikki \n" | ||
110 | "käynnissä olevat sshd-prosessit. Jos teet tätä päivitystä ssh-yhteyden " | ||
111 | "yli, \n" | ||
112 | "tämä on Huono Juttu(tm)." | ||
113 | |||
114 | #. Type: boolean | ||
115 | #. Description | ||
116 | #: ../openssh-server.templates.master:2001 | ||
117 | #, fuzzy | ||
118 | #| msgid "" | ||
119 | #| "You can fix this by adding \"--pidfile /var/run/sshd.pid\" to the start-" | ||
120 | #| "stop-daemon line in the stop section of the file." | ||
121 | msgid "" | ||
122 | "This can be fixed by manually adding \"--pidfile /var/run/sshd.pid\" to the " | ||
123 | "start-stop-daemon line in the stop section of the file." | ||
124 | msgstr "" | ||
125 | "Voit korjata tämän lisäämällä \"--pidfile /var/run/sshd.pid\" tiedoston \n" | ||
126 | "stop-osion start-stop-daemon -riville." | ||
127 | |||
128 | #. Type: note | ||
129 | #. Description | ||
130 | #: ../openssh-server.templates.master:3001 | ||
131 | msgid "New host key mandatory" | ||
132 | msgstr "" | ||
133 | |||
134 | #. Type: note | ||
135 | #. Description | ||
136 | #: ../openssh-server.templates.master:3001 | ||
137 | #, fuzzy | ||
138 | msgid "" | ||
139 | "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " | ||
140 | "algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " | ||
141 | "utility from the old (non-free) SSH installation does not appear to be " | ||
142 | "available." | ||
143 | msgstr "" | ||
144 | "Olemassa oleva tiedosto /etc/ssh/ssh_host_key on salattu \n" | ||
145 | "IDEA-algoritmilla. OpenSSH ei voi käsitellä tätä konekohtaista " | ||
146 | "avaintiedostoa, \n" | ||
147 | "eikä vanhan (ei-vapaan) SSH-asennuksen ssh-keygen-ohjelmaa löydy." | ||
148 | |||
149 | #. Type: note | ||
150 | #. Description | ||
151 | #: ../openssh-server.templates.master:3001 | ||
152 | #, fuzzy | ||
153 | #| msgid "You will need to generate a new host key." | ||
154 | msgid "You need to manually generate a new host key." | ||
155 | msgstr "Uuden konekohtaisen avaimen (host key) luominen on tarpeen." | ||
156 | |||
157 | #. Type: boolean | ||
158 | #. Description | ||
159 | #: ../openssh-server.templates.master:4001 | ||
160 | msgid "Disable challenge-response authentication?" | ||
161 | msgstr "Poista käytöstä haaste-vaste -autentikointi" | ||
162 | |||
163 | #. Type: boolean | ||
164 | #. Description | ||
165 | #: ../openssh-server.templates.master:4001 | ||
166 | #, fuzzy | ||
167 | #| msgid "" | ||
168 | #| "Password authentication appears to be disabled in your current OpenSSH " | ||
169 | #| "server configuration. In order to prevent users from logging in using " | ||
170 | #| "passwords (perhaps using only public key authentication instead) with " | ||
171 | #| "recent versions of OpenSSH, you must disable challenge-response " | ||
172 | #| "authentication, or else ensure that your PAM configuration does not allow " | ||
173 | #| "Unix password file authentication." | ||
174 | msgid "" | ||
175 | "Password authentication appears to be disabled in the current OpenSSH server " | ||
176 | "configuration. In order to prevent users from logging in using passwords " | ||
177 | "(perhaps using only public key authentication instead) with recent versions " | ||
178 | "of OpenSSH, you must disable challenge-response authentication, or else " | ||
179 | "ensure that your PAM configuration does not allow Unix password file " | ||
180 | "authentication." | ||
181 | msgstr "" | ||
182 | "Käytössä olevassa OpenSSH-konfiguraatiossa salasana-autentikointi\n" | ||
183 | "näyttää olevan poissa käytöstä. Estääksesi kirjautumiset salasanaa\n" | ||
184 | "käyttäen (esim. salliaksesi kirjautumisen vain julkista avainta\n" | ||
185 | "käyttäen), uusissa OpenSSH-versioissa haaste-vaste -autentikointi\n" | ||
186 | "tulee poistaa käytöstä, tai muutoin varmistaa, että PAM-konfiguraatio\n" | ||
187 | "ei salli Unix-salasanatiedostoon perustuvaa autentikointia." | ||
188 | |||
189 | #. Type: boolean | ||
190 | #. Description | ||
191 | #: ../openssh-server.templates.master:4001 | ||
192 | msgid "" | ||
193 | "If you disable challenge-response authentication, then users will not be " | ||
194 | "able to log in using passwords. If you leave it enabled (the default " | ||
195 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
196 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
197 | msgstr "" | ||
198 | "Jos poistat käytöstä haaste-vaste -pohjaisen autentikoinnin, käyttäjät\n" | ||
199 | "eivät voi kirjautua salasanaa käyttäen. Jos jätät sen päälle (oletus),\n" | ||
200 | "asetuksella \"PasswordAuthentication no\" ei ole vaikutusta, ellet muuta\n" | ||
201 | "myös PAM-asetuksia tiedostossa /etc/pam.d/ssh." | ||
202 | |||
203 | #~ msgid "Warning: you must create a new host key" | ||
204 | #~ msgstr "Varoitus: sinun tulee luoda uusi konekohtainen avain (host key)" | ||
205 | |||
206 | #~ msgid "Warning: telnetd is installed --- probably not a good idea" | ||
207 | #~ msgstr "Varoitus: telnetd on asennettu --- tämä ei liene hyvä idea" | ||
208 | |||
209 | #~ msgid "" | ||
210 | #~ "I'd advise you to either remove the telnetd package (if you don't " | ||
211 | #~ "actually need to offer telnet access) or install telnetd-ssl so that " | ||
212 | #~ "there is at least some chance that telnet sessions will not be sending " | ||
213 | #~ "unencrypted login/password and session information over the network." | ||
214 | #~ msgstr "" | ||
215 | #~ "On suositeltavaa joko poistaa telnetd-paketti (jos telnet-yhteyksien " | ||
216 | #~ "tarjoaminen \n" | ||
217 | #~ "ei ole tarpeellista) tai asentaa paketti telnetd-ssl, jotta " | ||
218 | #~ "salaamattomia \n" | ||
219 | #~ "käyttäjätunnuksia/salasanoja ja istunnon tietoja ei lähetettäisi verkon " | ||
220 | #~ "yli." | ||
221 | |||
222 | #~ msgid "Warning: rsh-server is installed --- probably not a good idea" | ||
223 | #~ msgstr "Varoitus: rsh-palvelin on asennettu --- tämä ei liene hyvä idea" | ||
224 | |||
225 | #~ msgid "" | ||
226 | #~ "having rsh-server installed undermines the security that you were " | ||
227 | #~ "probably wanting to obtain by installing ssh. I'd advise you to remove " | ||
228 | #~ "that package." | ||
229 | #~ msgstr "" | ||
230 | #~ "Rsh-palvelimen pitäminen vie pohjan turvallisuudelta, jota " | ||
231 | #~ "todennäköisesti \n" | ||
232 | #~ "halusit asentamalla ssh:n. Paketin poistaminen on suositeltavaa." | ||
233 | |||
234 | #~ msgid "Do you want ssh-keysign to be installed SUID root?" | ||
235 | #~ msgstr "Haluatko, että ssh-keysign asennetaan SUID root -oikeuksin?" | ||
236 | |||
237 | #~ msgid "" | ||
238 | #~ "You have the option of installing the ssh-keysign helper with the SUID " | ||
239 | #~ "bit set." | ||
240 | #~ msgstr "Voit valinnaisesti asentaa ssh-keysign-apuohjelman SUID-bitillä." | ||
241 | |||
242 | #~ msgid "" | ||
243 | #~ "If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 " | ||
244 | #~ "host-based authentication." | ||
245 | #~ msgstr "" | ||
246 | #~ "Jos SUID on päällä, voit käyttää SSH-protokollan version 2 " | ||
247 | #~ "konekohtaista \n" | ||
248 | #~ "todennusta." | ||
249 | |||
250 | #~ msgid "" | ||
251 | #~ "If in doubt, I suggest you install it with SUID. If it causes problems " | ||
252 | #~ "you can change your mind later by running: dpkg-reconfigure ssh" | ||
253 | #~ msgstr "" | ||
254 | #~ "Jos olet epävarma, SUID-bitin käyttämistä suositellaan. Jos se " | ||
255 | #~ "aiheuttaa \n" | ||
256 | #~ "ongelmia, voit myöhemmin muuttaa mielesi komennolla \"dpkg-reconfigure ssh" | ||
257 | #~ "\"." | ||
258 | |||
259 | #~ msgid "Allow SSH protocol 2 only" | ||
260 | #~ msgstr "Salli ainoastaan SSH-protokollan versio 2" | ||
261 | |||
262 | #~ msgid "" | ||
263 | #~ "This version of OpenSSH supports version 2 of the ssh protocol, which is " | ||
264 | #~ "much more secure. Disabling ssh 1 is encouraged, however this will slow " | ||
265 | #~ "things down on low end machines and might prevent older clients from " | ||
266 | #~ "connecting (the ssh client shipped with \"potato\" is affected)." | ||
267 | #~ msgstr "" | ||
268 | #~ "Tämä OpenSSH:n versio tukee ssh-protokollan versiota 2, joka on " | ||
269 | #~ "huomattavasti \n" | ||
270 | #~ "turvallisempi. Protokollan ykkösversion käytöstä poistamista " | ||
271 | #~ "suositellaan, mutta \n" | ||
272 | #~ "se voi aiheuttaa toiminnan hitautta pienitehoisissa koneissa ja estää " | ||
273 | #~ "yhteyden \n" | ||
274 | #~ "ottamisen vanhemmilla asiakasohjelmilla. (Tämä koskee mm. Debian \"potaton" | ||
275 | #~ "\":n \n" | ||
276 | #~ "mukana toimitettua ssh-asiakasohjelmaa.)" | ||
277 | |||
278 | #~ msgid "" | ||
279 | #~ "Also please note that keys used for protocol 1 are different so you will " | ||
280 | #~ "not be able to use them if you only allow protocol 2 connections." | ||
281 | #~ msgstr "" | ||
282 | #~ "Huomaa myös, että version 1 kanssa käytetyt avaimet ovat erilaisia, " | ||
283 | #~ "joten \n" | ||
284 | #~ "et voi käyttää niitä, jos sallit yhteydet vain versiolla 2." | ||
285 | |||
286 | #~ msgid "" | ||
287 | #~ "If you later change your mind about this setting, README.Debian has " | ||
288 | #~ "instructions on what to do to your sshd_config file." | ||
289 | #~ msgstr "" | ||
290 | #~ "Jos muutat myöhemmin mielesi tämän asetuksen suhteen, tiedostossa \n" | ||
291 | #~ "README.Debian on ohjeet tiedoston sshd_config muokkaamiseen." | ||
292 | |||
293 | #~ msgid "ssh2 keys merged in configuration files" | ||
294 | #~ msgstr "ssh2-avaimet yhdistetty asetustiedostoissa" | ||
295 | |||
296 | #~ msgid "" | ||
297 | #~ "As of version 3 OpenSSH no longer uses separate files for ssh1 and ssh2 " | ||
298 | #~ "keys. This means the authorized_keys2 and known_hosts2 files are no " | ||
299 | #~ "longer needed. They will still be read in order to maintain backwards " | ||
300 | #~ "compatibility" | ||
301 | #~ msgstr "" | ||
302 | #~ "OpenSSH:n versio 3 ei enää käytä erillisiä tiedostoja ssh1- ja ssh2-" | ||
303 | #~ "avaimille. \n" | ||
304 | #~ "Tästä johtuen tiedostoja authorized_keys2 ja known_hosts2 ei enää " | ||
305 | #~ "tarvita. \n" | ||
306 | #~ "Tiedostot silti luetaan, jotta yhteensopivuus vanhempiin versioihin " | ||
307 | #~ "säilyy." | ||
308 | |||
309 | #~ msgid "NOTE: Forwarding of X11 and Authorization disabled by default." | ||
310 | #~ msgstr "" | ||
311 | #~ "HUOMAA: X11:n ja valtuuksien (Authorization) edelleenlähettäminen on \n" | ||
312 | #~ "oletusarvoisesti pois käytöstä." | ||
313 | |||
314 | #~ msgid "" | ||
315 | #~ "For security reasons, the Debian version of ssh has ForwardX11 and " | ||
316 | #~ "ForwardAgent set to ``off'' by default." | ||
317 | #~ msgstr "" | ||
318 | #~ "Turvallisuussyistä Debianin ssh:ssa muuttujilla ForwardX11 ja \n" | ||
319 | #~ "ForwardAgent on oletuksena arvo \"off\"." | ||
320 | |||
321 | #~ msgid "" | ||
322 | #~ "You can enable it for servers you trust, either in one of the " | ||
323 | #~ "configuration files, or with the -X command line option." | ||
324 | #~ msgstr "" | ||
325 | #~ "Voit sallia sen luotetuille palvelimille joko asetustiedostossa tai\n" | ||
326 | #~ "komentorivillä käyttämällä -X -valitsinta." | ||
327 | |||
328 | #~ msgid "More details can be found in /usr/share/doc/ssh/README.Debian" | ||
329 | #~ msgstr "Lisätietoja tiedostossa /usr/share/doc/ssh/README.Debian" | ||
330 | |||
331 | #~ msgid "Do you want to run the sshd server?" | ||
332 | #~ msgstr "Haluatko ajaa sshd-palvelinta?" | ||
333 | |||
334 | #~ msgid "This package contains both the ssh client, and the sshd server." | ||
335 | #~ msgstr "Tämä paketti sisältää ssh-asiakasohjelman ja sshd-palvelimen." | ||
336 | |||
337 | #~ msgid "" | ||
338 | #~ "Normally the sshd Secure Shell Server will be run to allow remote logins " | ||
339 | #~ "via ssh." | ||
340 | #~ msgstr "" | ||
341 | #~ "Normaalisti sshd-palvelinta käytetään ssh-etäyhteyksien tarjoamiseen." | ||
342 | |||
343 | #~ msgid "" | ||
344 | #~ "If you are only interested in using the ssh client for outbound " | ||
345 | #~ "connections on this machine, and don't want to log into it at all using " | ||
346 | #~ "ssh, then you can disable sshd here." | ||
347 | #~ msgstr "" | ||
348 | #~ "Jos haluat ottaa ssh-yhteyksiä vain ulos tältä koneelta etkä halua " | ||
349 | #~ "ottaa \n" | ||
350 | #~ "tähän koneeseen ssh-yhteyksiä muualta, voit poistaa sshd:n käytöstä." | ||
351 | |||
352 | #~ msgid "Environment options on keys have been deprecated" | ||
353 | #~ msgstr "Avaimien ympäristövalitsimia ei enää käytetä" | ||
354 | |||
355 | #~ msgid "" | ||
356 | #~ "This version of OpenSSH disables the environment option for public keys " | ||
357 | #~ "by default, in order to avoid certain attacks (for example, LD_PRELOAD). " | ||
358 | #~ "If you are using this option in an authorized_keys file, beware that the " | ||
359 | #~ "keys in question will no longer work until the option is removed." | ||
360 | #~ msgstr "" | ||
361 | #~ "Tässä OpenSSH-versiossa julkisten avaimien ympäristövalitsin on poissa \n" | ||
362 | #~ "käytöstä, jotta tietynlaisilta hyökkäyksiltä vältyttäisiin (esim. " | ||
363 | #~ "LD_PRELOAD). \n" | ||
364 | #~ "Jos käytät tätä valitsinta authorized_keys-tiedostossa, huomioi, että \n" | ||
365 | #~ "nämä avaimet eivät toimi niin kauan kuin valitsinta ei poisteta." | ||
366 | |||
367 | #~ msgid "" | ||
368 | #~ "To re-enable this option, set \"PermitUserEnvironment yes\" in /etc/ssh/" | ||
369 | #~ "sshd_config after the upgrade is complete, taking note of the warning in " | ||
370 | #~ "the sshd_config(5) manual page." | ||
371 | #~ msgstr "" | ||
372 | #~ "Ottaaksesi tämän toiminnon uudelleen käyttöön, lisää tiedostoon \n" | ||
373 | #~ "/etc/ssh/sshd_config rivi \"PermitUserEnvironment yes\" kun päivitys on " | ||
374 | #~ "valmis. \n" | ||
375 | #~ "Huomioi varoitus man-ohjesivuilla sshd_config(5)." | ||
diff --git a/debian/po/fr.po b/debian/po/fr.po new file mode 100644 index 000000000..aa5c1ff99 --- /dev/null +++ b/debian/po/fr.po | |||
@@ -0,0 +1,169 @@ | |||
1 | # translation of fr.po to French | ||
2 | # | ||
3 | # Translators, if you are not familiar with the PO format, gettext | ||
4 | # documentation is worth reading, especially sections dedicated to | ||
5 | # this format, e.g. by running: | ||
6 | # info -n '(gettext)PO Files' | ||
7 | # info -n '(gettext)Header Entry' | ||
8 | # | ||
9 | # Some information specific to po-debconf are available at | ||
10 | # /usr/share/doc/po-debconf/README-trans | ||
11 | # or http://www.debian.org/intl/l10n/po-debconf/README-trans | ||
12 | # | ||
13 | # Developers do not need to manually edit POT or PO files. | ||
14 | # | ||
15 | # Christian Perrier <bubulle@debian.org>, 2007. | ||
16 | msgid "" | ||
17 | msgstr "" | ||
18 | "Project-Id-Version: fr\n" | ||
19 | "Report-Msgid-Bugs-To: debian-ssh@lists.debian.org\n" | ||
20 | "POT-Creation-Date: 2007-08-19 15:36+0100\n" | ||
21 | "PO-Revision-Date: 2007-04-23 18:05+0200\n" | ||
22 | "Last-Translator: Christian Perrier <bubulle@debian.org>\n" | ||
23 | "Language-Team: French <debian-l10n-french@lists.debian.org>\n" | ||
24 | "MIME-Version: 1.0\n" | ||
25 | "Content-Type: text/plain; charset=UTF-8\n" | ||
26 | "Content-Transfer-Encoding: 8bit\n" | ||
27 | "X-Generator: KBabel 1.11.4\n" | ||
28 | |||
29 | #. Type: boolean | ||
30 | #. Description | ||
31 | #: ../openssh-server.templates.master:1001 | ||
32 | msgid "Generate a new configuration file for OpenSSH?" | ||
33 | msgstr "Faut-il créer un nouveau fichier de configuration pour OpenSSH ?" | ||
34 | |||
35 | #. Type: boolean | ||
36 | #. Description | ||
37 | #: ../openssh-server.templates.master:1001 | ||
38 | msgid "" | ||
39 | "This version of OpenSSH has a considerably changed configuration file from " | ||
40 | "the version shipped in Debian 'Potato', which you appear to be upgrading " | ||
41 | "from. This package can now generate a new configuration file (/etc/ssh/sshd." | ||
42 | "config), which will work with the new server version, but will not contain " | ||
43 | "any customizations you made with the old version." | ||
44 | msgstr "" | ||
45 | "Cette version d'OpenSSH utilise un fichier de configuration qui a fortement " | ||
46 | "changé depuis la version contenue dans la distribution Debian « Potato », " | ||
47 | "depuis laquelle vous semblez faire une mise à jour. Un nouveau fichier de " | ||
48 | "configuration (/etc/ssh/sshd.config) qui fonctionnera avec la nouvelle " | ||
49 | "version du serveur peut être créé, mais ne contiendra aucun des réglages que " | ||
50 | "vous aviez faits avec la version précédente." | ||
51 | |||
52 | #. Type: boolean | ||
53 | #. Description | ||
54 | #: ../openssh-server.templates.master:1001 | ||
55 | msgid "" | ||
56 | "Please note that this new configuration file will set the value of " | ||
57 | "'PermitRootLogin' to 'yes' (meaning that anyone knowing the root password " | ||
58 | "can ssh directly in as root). Please read the README.Debian file for more " | ||
59 | "details about this design choice." | ||
60 | msgstr "" | ||
61 | "Veuillez noter que ce nouveau fichier de configuration positionnera la " | ||
62 | "valeur de « PermitRootLogin » à « yes » (ce qui signifie que quiconque " | ||
63 | "connaissant le mot de passe du superutilisateur peut se connecter en tant " | ||
64 | "que tel sur la machine). Veuillez consulter le fichier README.Debian pour " | ||
65 | "plus d'informations à propos de ce choix." | ||
66 | |||
67 | #. Type: boolean | ||
68 | #. Description | ||
69 | #: ../openssh-server.templates.master:1001 | ||
70 | msgid "" | ||
71 | "It is strongly recommended that you choose to generate a new configuration " | ||
72 | "file now." | ||
73 | msgstr "" | ||
74 | "Il est fortement recommandé de créer un nouveau fichier de configuration." | ||
75 | |||
76 | #. Type: boolean | ||
77 | #. Description | ||
78 | #: ../openssh-server.templates.master:2001 | ||
79 | msgid "Do you want to risk killing active SSH sessions?" | ||
80 | msgstr "Voulez-vous risquer de rompre les sessions SSH actives ?" | ||
81 | |||
82 | #. Type: boolean | ||
83 | #. Description | ||
84 | #: ../openssh-server.templates.master:2001 | ||
85 | msgid "" | ||
86 | "The currently installed version of /etc/init.d/ssh is likely to kill all " | ||
87 | "running sshd instances. If you are doing this upgrade via an SSH session, " | ||
88 | "you're likely to be disconnected and leave the upgrade procedure unfinished." | ||
89 | msgstr "" | ||
90 | "La version de /etc/init.d/ssh actuellement installée va vraisemblablement " | ||
91 | "interrompre toutes les instances de sshd en cours. Si vous êtes en train de " | ||
92 | "faire cette mise à niveau à l'aide de SSH, la connexion sera probablement " | ||
93 | "coupée et la mise à jour sera interrompue." | ||
94 | |||
95 | #. Type: boolean | ||
96 | #. Description | ||
97 | #: ../openssh-server.templates.master:2001 | ||
98 | msgid "" | ||
99 | "This can be fixed by manually adding \"--pidfile /var/run/sshd.pid\" to the " | ||
100 | "start-stop-daemon line in the stop section of the file." | ||
101 | msgstr "" | ||
102 | "Cela peut être corrigé en ajoutant « --pidfile /var/run/sshd.pid » à la " | ||
103 | "ligne « start-stop-daemon » dans /etc/init.d/ssh, dans la section « stop » " | ||
104 | "du fichier." | ||
105 | |||
106 | #. Type: note | ||
107 | #. Description | ||
108 | #: ../openssh-server.templates.master:3001 | ||
109 | msgid "New host key mandatory" | ||
110 | msgstr "Nouvelle clé d'hôte obligatoire" | ||
111 | |||
112 | #. Type: note | ||
113 | #. Description | ||
114 | #: ../openssh-server.templates.master:3001 | ||
115 | msgid "" | ||
116 | "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " | ||
117 | "algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " | ||
118 | "utility from the old (non-free) SSH installation does not appear to be " | ||
119 | "available." | ||
120 | msgstr "" | ||
121 | "La clé d'hôte actuelle, /etc/ssh/ssh_host_key, est chiffrée avec IDEA. " | ||
122 | "OpenSSH ne peut utiliser ce fichier de clé, et l'utilitaire ssh-keygen de " | ||
123 | "l'installation précédente (non libre) de SSH n'a pas été trouvé." | ||
124 | |||
125 | #. Type: note | ||
126 | #. Description | ||
127 | #: ../openssh-server.templates.master:3001 | ||
128 | msgid "You need to manually generate a new host key." | ||
129 | msgstr "Vous devez générer une nouvelle clé d'hôte vous-même." | ||
130 | |||
131 | #. Type: boolean | ||
132 | #. Description | ||
133 | #: ../openssh-server.templates.master:4001 | ||
134 | msgid "Disable challenge-response authentication?" | ||
135 | msgstr "Faut-il désactiver l'authentification par défi-réponse ?" | ||
136 | |||
137 | #. Type: boolean | ||
138 | #. Description | ||
139 | #: ../openssh-server.templates.master:4001 | ||
140 | msgid "" | ||
141 | "Password authentication appears to be disabled in the current OpenSSH server " | ||
142 | "configuration. In order to prevent users from logging in using passwords " | ||
143 | "(perhaps using only public key authentication instead) with recent versions " | ||
144 | "of OpenSSH, you must disable challenge-response authentication, or else " | ||
145 | "ensure that your PAM configuration does not allow Unix password file " | ||
146 | "authentication." | ||
147 | msgstr "" | ||
148 | "L'authentification par mots de passe semble être désactivée dans la " | ||
149 | "configuration actuelle du serveur OpenSSH. Afin d'empêcher les utilisateurs " | ||
150 | "de se connecter avec un mot de passe (pour, par exemple n'autoriser que " | ||
151 | "l'authentification par clé publique) avec les versions récentes d'OpenSSH, " | ||
152 | "vous devez aussi désactiver l'authentification par défi-réponse, ou alors " | ||
153 | "vous assurer que votre configuration de PAM n'autorise pas " | ||
154 | "l'authentification avec le fichier de mots de passe Unix." | ||
155 | |||
156 | #. Type: boolean | ||
157 | #. Description | ||
158 | #: ../openssh-server.templates.master:4001 | ||
159 | msgid "" | ||
160 | "If you disable challenge-response authentication, then users will not be " | ||
161 | "able to log in using passwords. If you leave it enabled (the default " | ||
162 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
163 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
164 | msgstr "" | ||
165 | "Si vous désactivez l'authentification par défi-réponse, alors les " | ||
166 | "utilisateurs ne pourront pas se connecter en entrant un mot de passe. Si " | ||
167 | "vous la laissez active (ce qui est la valeur par défaut), alors l'option " | ||
168 | "« PasswordAuthentication no » n'aura d'effet que si vous ajustez aussi la " | ||
169 | "configuration de PAM dans /etc/pam.d/ssh." | ||
diff --git a/debian/po/gl.po b/debian/po/gl.po new file mode 100644 index 000000000..1168c0264 --- /dev/null +++ b/debian/po/gl.po | |||
@@ -0,0 +1,193 @@ | |||
1 | # Galician translation of openssh's debconf templates. | ||
2 | # This file is distributed under the same license as the openssh package. | ||
3 | # | ||
4 | # 2006, 2007 Jacobo Tarrio <jtarrio@debian.org> | ||
5 | # | ||
6 | msgid "" | ||
7 | msgstr "" | ||
8 | "Project-Id-Version: openssh\n" | ||
9 | "Report-Msgid-Bugs-To: debian-ssh@lists.debian.org\n" | ||
10 | "POT-Creation-Date: 2007-08-19 15:36+0100\n" | ||
11 | "PO-Revision-Date: 2007-04-24 18:09+0200\n" | ||
12 | "Last-Translator: Jacobo Tarrio <jtarrio@debian.org>\n" | ||
13 | "Language-Team: Galician <proxecto@trasno.net>\n" | ||
14 | "MIME-Version: 1.0\n" | ||
15 | "Content-Type: text/plain; charset=UTF-8\n" | ||
16 | "Content-Transfer-Encoding: 8bit\n" | ||
17 | |||
18 | #. Type: boolean | ||
19 | #. Description | ||
20 | #: ../openssh-server.templates.master:1001 | ||
21 | msgid "Generate a new configuration file for OpenSSH?" | ||
22 | msgstr "¿Xerar un novo ficheiro de configuración para OpenSSH?" | ||
23 | |||
24 | #. Type: boolean | ||
25 | #. Description | ||
26 | #: ../openssh-server.templates.master:1001 | ||
27 | msgid "" | ||
28 | "This version of OpenSSH has a considerably changed configuration file from " | ||
29 | "the version shipped in Debian 'Potato', which you appear to be upgrading " | ||
30 | "from. This package can now generate a new configuration file (/etc/ssh/sshd." | ||
31 | "config), which will work with the new server version, but will not contain " | ||
32 | "any customizations you made with the old version." | ||
33 | msgstr "" | ||
34 | "Esta versión de OpenSSH ten un ficheiro de configuración que cambiou moito " | ||
35 | "con respecto á versión que se subministrou con Debian \"Potato\", desde a " | ||
36 | "que semella que se está a actualizar. Este paquete pode xerar agora un novo " | ||
37 | "ficheiro de configuración (/etc/ssh/sshd.config) que ha funcionar coa nova " | ||
38 | "versión do servidor, pero que non ha conter ningunha personalización que " | ||
39 | "teña feito na versión antiga." | ||
40 | |||
41 | # | msgid "" | ||
42 | # | "Please note that this new configuration file will set the value of " | ||
43 | # | "'PermitRootLogin' to 'yes' (meaning that anyone knowing the root password " | ||
44 | # | "can ssh directly in as root). Please read the README.Debian file for more " | ||
45 | # | "details about this design choice." | ||
46 | #. Type: boolean | ||
47 | #. Description | ||
48 | #: ../openssh-server.templates.master:1001 | ||
49 | msgid "" | ||
50 | "Please note that this new configuration file will set the value of " | ||
51 | "'PermitRootLogin' to 'yes' (meaning that anyone knowing the root password " | ||
52 | "can ssh directly in as root). Please read the README.Debian file for more " | ||
53 | "details about this design choice." | ||
54 | msgstr "" | ||
55 | "Teña en conta que este novo ficheiro de configuración ha establecer o valor " | ||
56 | "de de \"PermitRootLogin\" a \"yes\" (o que significa que calquera que coñeza " | ||
57 | "o contrasinal do administrador ha poder conectarse directamente coma \"root" | ||
58 | "\" mediante ssh). Consulte o ficheiro README.Debian para ter máis detalles " | ||
59 | "sobre esta decisión de deseño." | ||
60 | |||
61 | #. Type: boolean | ||
62 | #. Description | ||
63 | #: ../openssh-server.templates.master:1001 | ||
64 | msgid "" | ||
65 | "It is strongly recommended that you choose to generate a new configuration " | ||
66 | "file now." | ||
67 | msgstr "" | ||
68 | "Recoméndase encarecidamente que xere agora un novo ficheiro de configuración." | ||
69 | |||
70 | #. Type: boolean | ||
71 | #. Description | ||
72 | #: ../openssh-server.templates.master:2001 | ||
73 | msgid "Do you want to risk killing active SSH sessions?" | ||
74 | msgstr "¿Quere arriscarse a matar as sesións de SSH activas?" | ||
75 | |||
76 | #. Type: boolean | ||
77 | #. Description | ||
78 | #: ../openssh-server.templates.master:2001 | ||
79 | msgid "" | ||
80 | "The currently installed version of /etc/init.d/ssh is likely to kill all " | ||
81 | "running sshd instances. If you are doing this upgrade via an SSH session, " | ||
82 | "you're likely to be disconnected and leave the upgrade procedure unfinished." | ||
83 | msgstr "" | ||
84 | "É posible que a versión de /etc/init.d/ssh que instalou vaia matar tódalas " | ||
85 | "instancias de sshd en execución. Se está a facer esta actualización mediante " | ||
86 | "unha sesión SSH, é probable que se desconecte e este procedemento de " | ||
87 | "actualización quede sen rematar." | ||
88 | |||
89 | #. Type: boolean | ||
90 | #. Description | ||
91 | #: ../openssh-server.templates.master:2001 | ||
92 | msgid "" | ||
93 | "This can be fixed by manually adding \"--pidfile /var/run/sshd.pid\" to the " | ||
94 | "start-stop-daemon line in the stop section of the file." | ||
95 | msgstr "" | ||
96 | "Isto pode arranxarse engadindo \"--pidfile /var/run/sshd.pid\" á liña start-" | ||
97 | "stop-daemon da sección stop do ficheiro." | ||
98 | |||
99 | #. Type: note | ||
100 | #. Description | ||
101 | #: ../openssh-server.templates.master:3001 | ||
102 | msgid "New host key mandatory" | ||
103 | msgstr "É obrigatorio ter unha nova clave de servidor" | ||
104 | |||
105 | #. Type: note | ||
106 | #. Description | ||
107 | #: ../openssh-server.templates.master:3001 | ||
108 | msgid "" | ||
109 | "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " | ||
110 | "algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " | ||
111 | "utility from the old (non-free) SSH installation does not appear to be " | ||
112 | "available." | ||
113 | msgstr "" | ||
114 | "A clave de servidor actual, armacenada en /etc/ssh/ssh_host_key, está " | ||
115 | "cifrada mediante o algoritmo IDEA. OpenSSH non pode xestionar este ficheiro " | ||
116 | "de clave de servidor, e non semella que estea dispoñible a utilidade ssh-" | ||
117 | "keygen da anterior instalación de SSH (non libre)." | ||
118 | |||
119 | #. Type: note | ||
120 | #. Description | ||
121 | #: ../openssh-server.templates.master:3001 | ||
122 | msgid "You need to manually generate a new host key." | ||
123 | msgstr "Ten que xerar unha nova clave de servidor." | ||
124 | |||
125 | #. Type: boolean | ||
126 | #. Description | ||
127 | #: ../openssh-server.templates.master:4001 | ||
128 | msgid "Disable challenge-response authentication?" | ||
129 | msgstr "¿Desactivar a autenticación por desafÃo-resposta?" | ||
130 | |||
131 | #. Type: boolean | ||
132 | #. Description | ||
133 | #: ../openssh-server.templates.master:4001 | ||
134 | msgid "" | ||
135 | "Password authentication appears to be disabled in the current OpenSSH server " | ||
136 | "configuration. In order to prevent users from logging in using passwords " | ||
137 | "(perhaps using only public key authentication instead) with recent versions " | ||
138 | "of OpenSSH, you must disable challenge-response authentication, or else " | ||
139 | "ensure that your PAM configuration does not allow Unix password file " | ||
140 | "authentication." | ||
141 | msgstr "" | ||
142 | "Semella que a autenticación por contrasinal está desactivada na " | ||
143 | "configuración actual do servidor de OpenSSH. Para impedir que os usuarios se " | ||
144 | "conecten empregando contrasinais (empregando no seu canto, por exemplo, " | ||
145 | "autenticación mediante clave pública), nas versións recentes de OpenSSH ten " | ||
146 | "que desactivar a autenticación por desafÃo-resposta ou asegurarse de que a " | ||
147 | "súa configuración de PAM non permita a autenticación por ficheiro de " | ||
148 | "contrasinais de Unix." | ||
149 | |||
150 | #. Type: boolean | ||
151 | #. Description | ||
152 | #: ../openssh-server.templates.master:4001 | ||
153 | msgid "" | ||
154 | "If you disable challenge-response authentication, then users will not be " | ||
155 | "able to log in using passwords. If you leave it enabled (the default " | ||
156 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
157 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
158 | msgstr "" | ||
159 | "Se desactiva a autenticación por desafÃo-resposta, os usuarios non han poder " | ||
160 | "conectarse empregando contrasinais. Se a deixa activada (a resposta por " | ||
161 | "defecto) a opción \"PasswordAuthentication no\" non ha ter ningún efecto " | ||
162 | "útil a menos que tamén axuste a súa configuración de PAM en /etc/pam.d/ssh." | ||
163 | |||
164 | #~ msgid "Warning: you must create a new host key" | ||
165 | #~ msgstr "Aviso: ten que crear unha nove chave de servidor" | ||
166 | |||
167 | #~ msgid "Warning: telnetd is installed --- probably not a good idea" | ||
168 | #~ msgstr "" | ||
169 | #~ "Aviso: telnetd está instalado --- seguramente non sexa unha boa idea" | ||
170 | |||
171 | #~ msgid "" | ||
172 | #~ "I'd advise you to either remove the telnetd package (if you don't " | ||
173 | #~ "actually need to offer telnet access) or install telnetd-ssl so that " | ||
174 | #~ "there is at least some chance that telnet sessions will not be sending " | ||
175 | #~ "unencrypted login/password and session information over the network." | ||
176 | #~ msgstr "" | ||
177 | #~ "Recoméndase que elimine o paquete telnetd (se non precisa de fornecer " | ||
178 | #~ "acceso por telnet) ou instale telnetd-ssl para que exista alomenos " | ||
179 | #~ "algunha posibilidade de que as sesións telnet non envÃen información de " | ||
180 | #~ "usuario/contrasinal e das sesións sen cifrar pola rede." | ||
181 | |||
182 | #~ msgid "Warning: rsh-server is installed --- probably not a good idea" | ||
183 | #~ msgstr "" | ||
184 | #~ "Aviso: rsh-server está instalado --- seguramente non sexa unha boa idea" | ||
185 | |||
186 | #~ msgid "" | ||
187 | #~ "having rsh-server installed undermines the security that you were " | ||
188 | #~ "probably wanting to obtain by installing ssh. I'd advise you to remove " | ||
189 | #~ "that package." | ||
190 | #~ msgstr "" | ||
191 | #~ "ao ter rsh-server instalado pérdese a seguridade que probablemente " | ||
192 | #~ "pretendÃa obter ao instalar ssh. Recoméndase que se desinstale ese " | ||
193 | #~ "paquete." | ||
diff --git a/debian/po/it.po b/debian/po/it.po new file mode 100644 index 000000000..e5b3d3740 --- /dev/null +++ b/debian/po/it.po | |||
@@ -0,0 +1,159 @@ | |||
1 | # Italian (it) translation of debconf templates for openssh | ||
2 | # Copyright (C) 2006 Software in the Public Interest | ||
3 | # This file is distributed under the same license as the openssh package. | ||
4 | # Renato Gini <rgini@openlabs.it>, 2003 - 2005 | ||
5 | # Luca Monducci <luca.mo@tiscali.it>, 2006, 2007. | ||
6 | # | ||
7 | msgid "" | ||
8 | msgstr "" | ||
9 | "Project-Id-Version: openssh 4.3p2 italian debconf templates\n" | ||
10 | "Report-Msgid-Bugs-To: debian-ssh@lists.debian.org\n" | ||
11 | "POT-Creation-Date: 2007-08-19 15:36+0100\n" | ||
12 | "PO-Revision-Date: 2007-04-25 11:08+0200\n" | ||
13 | "Last-Translator: Luca Monducci <luca.mo@tiscali.it>\n" | ||
14 | "Language-Team: Italian <debian-l10n-italian@lists.debian.org>\n" | ||
15 | "MIME-Version: 1.0\n" | ||
16 | "Content-Type: text/plain; charset=UTF-8\n" | ||
17 | "Content-Transfer-Encoding: 8bit\n" | ||
18 | |||
19 | #. Type: boolean | ||
20 | #. Description | ||
21 | #: ../openssh-server.templates.master:1001 | ||
22 | msgid "Generate a new configuration file for OpenSSH?" | ||
23 | msgstr "Generare un nuovo file di configurazione per OpenSSH?" | ||
24 | |||
25 | #. Type: boolean | ||
26 | #. Description | ||
27 | #: ../openssh-server.templates.master:1001 | ||
28 | msgid "" | ||
29 | "This version of OpenSSH has a considerably changed configuration file from " | ||
30 | "the version shipped in Debian 'Potato', which you appear to be upgrading " | ||
31 | "from. This package can now generate a new configuration file (/etc/ssh/sshd." | ||
32 | "config), which will work with the new server version, but will not contain " | ||
33 | "any customizations you made with the old version." | ||
34 | msgstr "" | ||
35 | "Questa versione di OpenSSH contiene un file di configurazione decisamente " | ||
36 | "diverso da quello distribuito in Debian \"Potato\", che sembra essere quello " | ||
37 | "che si sta aggiornando. Questo pacchetto è in grado di generare " | ||
38 | "automaticamente un nuovo file di configurazione (/etc/ssh/sshd.config) " | ||
39 | "adatto alla nuova versione del server, ma che non contiene nessuna delle " | ||
40 | "personalizzazioni apportate nella precedente versione." | ||
41 | |||
42 | #. Type: boolean | ||
43 | #. Description | ||
44 | #: ../openssh-server.templates.master:1001 | ||
45 | msgid "" | ||
46 | "Please note that this new configuration file will set the value of " | ||
47 | "'PermitRootLogin' to 'yes' (meaning that anyone knowing the root password " | ||
48 | "can ssh directly in as root). Please read the README.Debian file for more " | ||
49 | "details about this design choice." | ||
50 | msgstr "" | ||
51 | "Notare che nel nuovo file di configurazione il valore di «PermitRootLogin» è " | ||
52 | "impostato a «yes» (quindi chiunque conosca la password di root può " | ||
53 | "collegarsi tramite ssh direttamente come root). Per ulteriori dettagli su " | ||
54 | "questa scelta si veda il file README.Debian." | ||
55 | |||
56 | #. Type: boolean | ||
57 | #. Description | ||
58 | #: ../openssh-server.templates.master:1001 | ||
59 | msgid "" | ||
60 | "It is strongly recommended that you choose to generate a new configuration " | ||
61 | "file now." | ||
62 | msgstr "" | ||
63 | "È vivamente raccomandata la scelta di far generare automaticamente un nuovo " | ||
64 | "file di configurazione." | ||
65 | |||
66 | #. Type: boolean | ||
67 | #. Description | ||
68 | #: ../openssh-server.templates.master:2001 | ||
69 | msgid "Do you want to risk killing active SSH sessions?" | ||
70 | msgstr "Si vuole rischiare di terminare le sessioni SSH attive?" | ||
71 | |||
72 | #. Type: boolean | ||
73 | #. Description | ||
74 | #: ../openssh-server.templates.master:2001 | ||
75 | msgid "" | ||
76 | "The currently installed version of /etc/init.d/ssh is likely to kill all " | ||
77 | "running sshd instances. If you are doing this upgrade via an SSH session, " | ||
78 | "you're likely to be disconnected and leave the upgrade procedure unfinished." | ||
79 | msgstr "" | ||
80 | "È probabile che la versione di /etc/init.d/ssh attualmente installata " | ||
81 | "termini tutte le istanze di sshd attive. Se si sta effettuando questo " | ||
82 | "aggiornamento tramite una sessione SSH, è possibile che la sessione venga " | ||
83 | "chiusa e che la procedura di aggiornamento rimanga incompleta." | ||
84 | |||
85 | #. Type: boolean | ||
86 | #. Description | ||
87 | #: ../openssh-server.templates.master:2001 | ||
88 | msgid "" | ||
89 | "This can be fixed by manually adding \"--pidfile /var/run/sshd.pid\" to the " | ||
90 | "start-stop-daemon line in the stop section of the file." | ||
91 | msgstr "" | ||
92 | "È possibile evitare ciò aggiungendo manualmente «--pidfile /var/run/sshd." | ||
93 | "pid» alla riga start-stop-daemon nella sezione stop del file." | ||
94 | |||
95 | #. Type: note | ||
96 | #. Description | ||
97 | #: ../openssh-server.templates.master:3001 | ||
98 | msgid "New host key mandatory" | ||
99 | msgstr "Necessaria una nuova chiave host" | ||
100 | |||
101 | #. Type: note | ||
102 | #. Description | ||
103 | #: ../openssh-server.templates.master:3001 | ||
104 | msgid "" | ||
105 | "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " | ||
106 | "algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " | ||
107 | "utility from the old (non-free) SSH installation does not appear to be " | ||
108 | "available." | ||
109 | msgstr "" | ||
110 | "L'attuale chiave host, contenuta in /etc/ssh/ssh_host_key, è cifrata con " | ||
111 | "l'algoritmo IDEA. OpenSSH non è in grado di gestire questa chiave host e non " | ||
112 | "è disponibile il programma (non-free) ssh-keygen dalla precedente " | ||
113 | "installazione di SSH." | ||
114 | |||
115 | #. Type: note | ||
116 | #. Description | ||
117 | #: ../openssh-server.templates.master:3001 | ||
118 | msgid "You need to manually generate a new host key." | ||
119 | msgstr "È necessario generare manualmente una nuova chiave host." | ||
120 | |||
121 | #. Type: boolean | ||
122 | #. Description | ||
123 | #: ../openssh-server.templates.master:4001 | ||
124 | msgid "Disable challenge-response authentication?" | ||
125 | msgstr "Disabilitare l'autenticazione interattiva?" | ||
126 | |||
127 | #. Type: boolean | ||
128 | #. Description | ||
129 | #: ../openssh-server.templates.master:4001 | ||
130 | msgid "" | ||
131 | "Password authentication appears to be disabled in the current OpenSSH server " | ||
132 | "configuration. In order to prevent users from logging in using passwords " | ||
133 | "(perhaps using only public key authentication instead) with recent versions " | ||
134 | "of OpenSSH, you must disable challenge-response authentication, or else " | ||
135 | "ensure that your PAM configuration does not allow Unix password file " | ||
136 | "authentication." | ||
137 | msgstr "" | ||
138 | "Nell'attuale configurazione del server OpenSSH è disabilitata " | ||
139 | "l'autenticazione tramite password. Con le versioni più recenti di OpenSSH " | ||
140 | "per impedire l'accesso degli utenti al sistema con la password (per esempio " | ||
141 | "l'accesso deve essere possibile solo tramite chiavi pubbliche) si deve " | ||
142 | "disabilitare l'autenticazione interattiva oppure si deve verificare che PAM " | ||
143 | "sia configurato in modo da non consentire l'autenticazione tramite il file " | ||
144 | "delle password Unix." | ||
145 | |||
146 | #. Type: boolean | ||
147 | #. Description | ||
148 | #: ../openssh-server.templates.master:4001 | ||
149 | msgid "" | ||
150 | "If you disable challenge-response authentication, then users will not be " | ||
151 | "able to log in using passwords. If you leave it enabled (the default " | ||
152 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
153 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
154 | msgstr "" | ||
155 | "Se l'autenticazione interattiva è disabilitata gli utenti non possono " | ||
156 | "effettuare l'accesso al sistema con la password. Invece se, come previsto " | ||
157 | "dalla configurazione predefinita, è abilitata allora l'opzione " | ||
158 | "«PasswordAuthentication no» non ha effetto fino a quando non si interviene " | ||
159 | "anche sulla configurazione di PAM in /etc/pam.d/ssh." | ||
diff --git a/debian/po/ja.po b/debian/po/ja.po new file mode 100644 index 000000000..c448de9d4 --- /dev/null +++ b/debian/po/ja.po | |||
@@ -0,0 +1,158 @@ | |||
1 | # | ||
2 | # Translators, if you are not familiar with the PO format, gettext | ||
3 | # documentation is worth reading, especially sections dedicated to | ||
4 | # this format, e.g. by running: | ||
5 | # info -n '(gettext)PO Files' | ||
6 | # info -n '(gettext)Header Entry' | ||
7 | # | ||
8 | # Some information specific to po-debconf are available at | ||
9 | # /usr/share/doc/po-debconf/README-trans | ||
10 | # or http://www.debian.org/intl/l10n/po-debconf/README-trans | ||
11 | # | ||
12 | # Developers do not need to manually edit POT or PO files. | ||
13 | # | ||
14 | msgid "" | ||
15 | msgstr "" | ||
16 | "Project-Id-Version: openssh\n" | ||
17 | "Report-Msgid-Bugs-To: debian-ssh@lists.debian.org\n" | ||
18 | "POT-Creation-Date: 2007-08-19 15:36+0100\n" | ||
19 | "PO-Revision-Date: 2007-04-25 21:52+0900\n" | ||
20 | "Last-Translator: Kenshi Muto <kmuto@debian.org>\n" | ||
21 | "Language-Team: Japanese <debian-japanese@lists.debian.org>\n" | ||
22 | "MIME-Version: 1.0\n" | ||
23 | "Content-Type: text/plain; charset=UTF-8\n" | ||
24 | "Content-Transfer-Encoding: 8bit\n" | ||
25 | |||
26 | #. Type: boolean | ||
27 | #. Description | ||
28 | #: ../openssh-server.templates.master:1001 | ||
29 | msgid "Generate a new configuration file for OpenSSH?" | ||
30 | msgstr "OpenSSH ã®æ–°ã—ã„è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã‚’作りã¾ã™ã‹?" | ||
31 | |||
32 | #. Type: boolean | ||
33 | #. Description | ||
34 | #: ../openssh-server.templates.master:1001 | ||
35 | msgid "" | ||
36 | "This version of OpenSSH has a considerably changed configuration file from " | ||
37 | "the version shipped in Debian 'Potato', which you appear to be upgrading " | ||
38 | "from. This package can now generate a new configuration file (/etc/ssh/sshd." | ||
39 | "config), which will work with the new server version, but will not contain " | ||
40 | "any customizations you made with the old version." | ||
41 | msgstr "" | ||
42 | "OpenSSH ã®ã“ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã¯ã€Debian 'Potato' ã§æä¾›ã—ã¦ã„ãŸãƒãƒ¼ã‚¸ãƒ§ãƒ³ (ã„ã¾ã€" | ||
43 | "ãã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã‹ã‚‰ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã‚¢ãƒƒãƒ—を試ã¿ã¦ã„ã‚‹ã¨ã“ã‚) ã‹ã‚‰ã€è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ãŒ" | ||
44 | "大幅ã«å¤‰åŒ–ã—ã¦ã„ã¾ã™ã€‚ã“ã®ãƒ‘ッケージã¯ã€æ–°ã—ã„ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã®ã‚µãƒ¼ãƒã§ä½¿ã†ã“ã¨ãŒ" | ||
45 | "ã§ãã‚‹æ–°ã—ã„è¨å®šãƒ•ã‚¡ã‚¤ãƒ« (/etc/ssh/sshd.config) を今生æˆã™ã‚‹ã“ã¨ãŒã§ãã¾ã™" | ||
46 | "ãŒã€å¤ã„ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã®è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã«åŠ ãˆã¦ã„ãŸã‚«ã‚¹ã‚¿ãƒžã‚¤ã‚ºã¯ã„ãšã‚Œã‚‚å«ã¾ã‚Œã¾ã›" | ||
47 | "ん。" | ||
48 | |||
49 | #. Type: boolean | ||
50 | #. Description | ||
51 | #: ../openssh-server.templates.master:1001 | ||
52 | msgid "" | ||
53 | "Please note that this new configuration file will set the value of " | ||
54 | "'PermitRootLogin' to 'yes' (meaning that anyone knowing the root password " | ||
55 | "can ssh directly in as root). Please read the README.Debian file for more " | ||
56 | "details about this design choice." | ||
57 | msgstr "" | ||
58 | "ã“ã®æ–°ã—ã„è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã¯ã€ã€ŒPermitRootLoginã€ã‚’「yesã€ã«è¨å®šã—ã¾ã™ (ã¤ã¾ã‚Šã€" | ||
59 | "root ã®ãƒ‘スワードを知ã£ã¦ã„る人ãªã‚‰èª°ã§ã‚‚直接ãƒã‚°ã‚¤ãƒ³ã§ãã¾ã™)。ã“ã®ã‚ˆã†ãªè¨" | ||
60 | "計をé¸ã‚“ã§ã„ã‚‹ç†ç”±ã®è©³ç´°ã«ã¤ã„ã¦ã¯ã€README.Debian ã‚’èªã‚“ã§ãã ã•ã„。" | ||
61 | |||
62 | #. Type: boolean | ||
63 | #. Description | ||
64 | #: ../openssh-server.templates.master:1001 | ||
65 | msgid "" | ||
66 | "It is strongly recommended that you choose to generate a new configuration " | ||
67 | "file now." | ||
68 | msgstr "æ–°ã—ã„è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã‚’今生æˆã™ã‚‹ã“ã¨ã‚’å¼·ããŠå‹§ã‚ã—ã¾ã™ã€‚" | ||
69 | |||
70 | #. Type: boolean | ||
71 | #. Description | ||
72 | #: ../openssh-server.templates.master:2001 | ||
73 | msgid "Do you want to risk killing active SSH sessions?" | ||
74 | msgstr "接続ä¸ã® SSH セッションãŒåˆ‡ã‚Œã‚‹ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“ãŒã‚ˆã„ã§ã™ã‹?" | ||
75 | |||
76 | #. Type: boolean | ||
77 | #. Description | ||
78 | #: ../openssh-server.templates.master:2001 | ||
79 | msgid "" | ||
80 | "The currently installed version of /etc/init.d/ssh is likely to kill all " | ||
81 | "running sshd instances. If you are doing this upgrade via an SSH session, " | ||
82 | "you're likely to be disconnected and leave the upgrade procedure unfinished." | ||
83 | msgstr "" | ||
84 | "ç¾åœ¨ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚ŒãŸãƒãƒ¼ã‚¸ãƒ§ãƒ³ã® /etc/init.d/ssh ã¯ã€ãŠãらã実行ä¸ã® sshd " | ||
85 | "インスタンスをã™ã¹ã¦æ®ºã—ã¾ã™ã€‚ã“ã®ã‚¢ãƒƒãƒ—グレードを SSH セッション経由ã§è¡Œã£ã¦" | ||
86 | "ã„ã‚‹å ´åˆã€ã‚ãªãŸã¯åˆ‡æ–ã•ã‚Œã€ã‚¢ãƒƒãƒ—グレード処ç†ã¯ä¸å®Œå…¨ãªã¾ã¾ã«ãªã‚‹ã§ã—ょã†ã€‚" | ||
87 | |||
88 | #. Type: boolean | ||
89 | #. Description | ||
90 | #: ../openssh-server.templates.master:2001 | ||
91 | msgid "" | ||
92 | "This can be fixed by manually adding \"--pidfile /var/run/sshd.pid\" to the " | ||
93 | "start-stop-daemon line in the stop section of the file." | ||
94 | msgstr "" | ||
95 | "ã“ã®çŠ¶æ³ã‚’ä¿®æ£ã™ã‚‹ã«ã¯ã€ãƒ•ã‚¡ã‚¤ãƒ«ã® stop セクション㮠start-stop-daemon ã®è¡Œã«" | ||
96 | "「--pidfile /var/run/sshd.pidã€ã¨æ‰‹å‹•ã§è¿½åŠ ã—ã¾ã™ã€‚" | ||
97 | |||
98 | #. Type: note | ||
99 | #. Description | ||
100 | #: ../openssh-server.templates.master:3001 | ||
101 | msgid "New host key mandatory" | ||
102 | msgstr "æ–°ã—ã„ホストã‚ーãŒå¿…è¦ã§ã™" | ||
103 | |||
104 | #. Type: note | ||
105 | #. Description | ||
106 | #: ../openssh-server.templates.master:3001 | ||
107 | msgid "" | ||
108 | "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " | ||
109 | "algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " | ||
110 | "utility from the old (non-free) SSH installation does not appear to be " | ||
111 | "available." | ||
112 | msgstr "" | ||
113 | "/etc/ssh/ssh_host_key ã«ã‚ã‚‹ç¾åœ¨ã®ãƒ›ã‚¹ãƒˆã‚ー㯠IDEA ã§æš—å·åŒ–ã•ã‚Œã¦ã„ã‚ã™ã€‚" | ||
114 | "OpenSSH ã¯ã“ã®ãƒ›ã‚¹ãƒˆã‚ーファイルを扱ãˆãšã€å¤ã„ (フリーã§ã¯ãªã„) SSH ã® ssh-" | ||
115 | "keygen ユーティリティã¯ã‚‚ã†åˆ©ç”¨ã§ãã¾ã›ã‚“。" | ||
116 | |||
117 | #. Type: note | ||
118 | #. Description | ||
119 | #: ../openssh-server.templates.master:3001 | ||
120 | msgid "You need to manually generate a new host key." | ||
121 | msgstr "æ–°ã—ã„ホストã‚ーを手動ã§ç”Ÿæˆã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚" | ||
122 | |||
123 | #. Type: boolean | ||
124 | #. Description | ||
125 | #: ../openssh-server.templates.master:4001 | ||
126 | msgid "Disable challenge-response authentication?" | ||
127 | msgstr "ãƒãƒ£ãƒ¬ãƒ³ã‚¸-レスãƒãƒ³ã‚¹èªè¨¼ã‚’無効ã«ã—ã¾ã™ã‹?" | ||
128 | |||
129 | #. Type: boolean | ||
130 | #. Description | ||
131 | #: ../openssh-server.templates.master:4001 | ||
132 | msgid "" | ||
133 | "Password authentication appears to be disabled in the current OpenSSH server " | ||
134 | "configuration. In order to prevent users from logging in using passwords " | ||
135 | "(perhaps using only public key authentication instead) with recent versions " | ||
136 | "of OpenSSH, you must disable challenge-response authentication, or else " | ||
137 | "ensure that your PAM configuration does not allow Unix password file " | ||
138 | "authentication." | ||
139 | msgstr "" | ||
140 | "ç¾åœ¨ã® OpenSSH サーãƒã®è¨å®šã§ã¯ãƒ‘スワードèªè¨¼ãŒç„¡åŠ¹ã«ãªã£ã¦ã„るよã†ã§ã™ã€‚" | ||
141 | "OpenSSH ã®æœ€è¿‘ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã§ãƒ‘スワードを使ã£ã¦ãƒ¦ãƒ¼ã‚¶ãŒãƒã‚°ã‚¤ãƒ³ã™ã‚‹ã®ã‚’防ã " | ||
142 | "(多分公開éµèªè¨¼ã ã‘を代ã‚ã‚Šã«ä½¿ã†) ãŸã‚ã«ã¯ã€ãƒãƒ£ãƒ¬ãƒ³ã‚¸-レスãƒãƒ³ã‚¹èªè¨¼ã‚’無効" | ||
143 | "ã«ã™ã‚‹ã‹ã€PAM è¨å®šã§ Unix パスワードファイルèªè¨¼ã‚’絶対ã«è¨±å¯ã—ãªã„よã†ã«ã™ã‚‹" | ||
144 | "å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚" | ||
145 | |||
146 | #. Type: boolean | ||
147 | #. Description | ||
148 | #: ../openssh-server.templates.master:4001 | ||
149 | msgid "" | ||
150 | "If you disable challenge-response authentication, then users will not be " | ||
151 | "able to log in using passwords. If you leave it enabled (the default " | ||
152 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
153 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
154 | msgstr "" | ||
155 | "ãƒãƒ£ãƒ¬ãƒ³ã‚¸-レスãƒãƒ³ã‚¹èªè¨¼ã‚’無効ã«ã™ã‚‹å ´åˆã€ãƒ¦ãƒ¼ã‚¶ã¯ãƒ‘スワードを使ã£ã¦ãƒã‚°ã‚¤ãƒ³" | ||
156 | "ã§ããªããªã‚Šã¾ã™ã€‚有効 (デフォルト) ã®ã¾ã¾ã«ã—ã¦ãŠãã¨ã€/etc/pam.d/ssh ã«ã‚" | ||
157 | "ã‚‹ PAM è¨å®šã‚’調節ã—ãªã„é™ã‚Šã€'PasswordAuthentication no' オプションã¯åŠ¹æžœã‚’æŒ" | ||
158 | "ãŸãªããªã‚Šã¾ã™ã€‚" | ||
diff --git a/debian/po/ko.po b/debian/po/ko.po new file mode 100644 index 000000000..f5a213ccc --- /dev/null +++ b/debian/po/ko.po | |||
@@ -0,0 +1,150 @@ | |||
1 | # Korean translations for openssh package | ||
2 | # openssh íŒ¨í‚¤ì§€ì— ëŒ€í•œ í•œêµì–´ 번ì—문. | ||
3 | # Copyright (C) 2007 THE openssh'S COPYRIGHT HOLDER | ||
4 | # This file is distributed under the same license as the openssh package. | ||
5 | # Sunjae Park <darehanl@gmail.com>, 2007. | ||
6 | # | ||
7 | msgid "" | ||
8 | msgstr "" | ||
9 | "Project-Id-Version: openssh\n" | ||
10 | "Report-Msgid-Bugs-To: debian-ssh@lists.debian.org\n" | ||
11 | "POT-Creation-Date: 2007-08-19 15:36+0100\n" | ||
12 | "PO-Revision-Date: 2007-05-15 19:28+0900\n" | ||
13 | "Last-Translator: Sunjae Park <darehanl@gmail.com>\n" | ||
14 | "Language-Team: Korean <debian-l10n-korean@lists.debian.org>\n" | ||
15 | "MIME-Version: 1.0\n" | ||
16 | "Content-Type: text/plain; charset=UTF-8\n" | ||
17 | "Content-Transfer-Encoding: 8bit\n" | ||
18 | "Plural-Forms: nplurals=1; plural=0;\n" | ||
19 | |||
20 | #. Type: boolean | ||
21 | #. Description | ||
22 | #: ../openssh-server.templates.master:1001 | ||
23 | msgid "Generate a new configuration file for OpenSSH?" | ||
24 | msgstr "OpenSSH ì„¤ì • 파ì¼ì„ 새로 만들까요?" | ||
25 | |||
26 | #. Type: boolean | ||
27 | #. Description | ||
28 | #: ../openssh-server.templates.master:1001 | ||
29 | msgid "" | ||
30 | "This version of OpenSSH has a considerably changed configuration file from " | ||
31 | "the version shipped in Debian 'Potato', which you appear to be upgrading " | ||
32 | "from. This package can now generate a new configuration file (/etc/ssh/sshd." | ||
33 | "config), which will work with the new server version, but will not contain " | ||
34 | "any customizations you made with the old version." | ||
35 | msgstr "" | ||
36 | "ì´ë²ˆ OpenSSH ë²„ì „ì€ ì§€ê¸ˆ ì‚¬ìš©í•˜ê³ ê³„ì‹œëŠ” 듯한 ë°ë¹„안 'Potato'ì˜ OpenSSH ë²„ì „" | ||
37 | "과는 í¬ê²Œ 다른 ì„¤ì • 파ì¼ì„ 사용합니다. ì´ ê¾¸ëŸ¬ë¯¸ëŠ” 새로 설치ë˜ëŠ” 서버 ë²„ì „ì— " | ||
38 | "맞는 ì„¤ì • 파ì¼(/etc/ssh/sshd.config)ì„ ìƒˆë¡œ 만들 수 있습니다만, ì´ì „ ë²„ì „ì—" | ||
39 | "ì„œ 변경한 ë‚´ì—ì€ ì ìš©ë˜ì§€ 않습니다." | ||
40 | |||
41 | #. Type: boolean | ||
42 | #. Description | ||
43 | #: ../openssh-server.templates.master:1001 | ||
44 | msgid "" | ||
45 | "Please note that this new configuration file will set the value of " | ||
46 | "'PermitRootLogin' to 'yes' (meaning that anyone knowing the root password " | ||
47 | "can ssh directly in as root). Please read the README.Debian file for more " | ||
48 | "details about this design choice." | ||
49 | msgstr "" | ||
50 | "ì°¸ê³ ë¡œ 새로 설치ë˜ëŠ” ì„¤ì •íŒŒì¼ì€ 'PermitRootLogin'ì˜ ê°’ì„ 'yes'ë¡œ ì„¤ì •í•©ë‹ˆë‹¤" | ||
51 | "(ë”°ë¼ì„œ root 비밀번호를 ì•Œê³ ìžˆëŠ” ì‚¬ëžŒì€ ëˆ„êµ¬ë‚˜ rootë¡œ ì§ì ‘ ssh 로그ì¸í• 수 " | ||
52 | "있습니다). ì´ë ‡ê²Œ ê²°ì •í•œ ì´ìœ ì— ëŒ€í•´ì„œ ìžì„¸ížˆ ì•Œê³ ìž í•˜ì‹ ë‹¤ë©´ README.Debian " | ||
53 | "파ì¼ì„ 참조하시기 ë°”ëžë‹ˆë‹¤." | ||
54 | |||
55 | #. Type: boolean | ||
56 | #. Description | ||
57 | #: ../openssh-server.templates.master:1001 | ||
58 | msgid "" | ||
59 | "It is strongly recommended that you choose to generate a new configuration " | ||
60 | "file now." | ||
61 | msgstr "ì„¤ì • 파ì¼ì„ 지금 새로 만드시길 ê°•ë ¥ížˆ 권장합니다." | ||
62 | |||
63 | #. Type: boolean | ||
64 | #. Description | ||
65 | #: ../openssh-server.templates.master:2001 | ||
66 | msgid "Do you want to risk killing active SSH sessions?" | ||
67 | msgstr "현재 ì‚¬ìš©ì¤‘ì¸ SSH ì„¸ì…˜ì„ ì£½ì—¬ë„ ê´œì°®ìŠµë‹ˆê¹Œ?" | ||
68 | |||
69 | #. Type: boolean | ||
70 | #. Description | ||
71 | #: ../openssh-server.templates.master:2001 | ||
72 | msgid "" | ||
73 | "The currently installed version of /etc/init.d/ssh is likely to kill all " | ||
74 | "running sshd instances. If you are doing this upgrade via an SSH session, " | ||
75 | "you're likely to be disconnected and leave the upgrade procedure unfinished." | ||
76 | msgstr "" | ||
77 | "현재 ì„¤ì¹˜ëœ /etc/init.d/ssh ë²„ì „ì€ ì‚¬ìš©ì¤‘ì¸ sshd ì¸ìŠ¤í„´ìŠ¤ë¥¼ ëª¨ë‘ ì£½ì¼ ê²ƒìž…ë‹ˆ" | ||
78 | "다. 만약 SSH ì„¸ì…˜ì„ í†µí•´ ì´ ì—…ê·¸ë ˆì´ë“œë¥¼ í•˜ê³ ìžˆë‹¤ë©´ ë„ì¤‘ì— ì—°ê²°ì´ í•´ì œë˜ì–´ " | ||
79 | "ì—…ê·¸ë ˆì´ë“œ ìž‘ì—…ì´ ë„ì¤‘ì— ì¤‘ë‹¨ë 수 있습니다." | ||
80 | |||
81 | #. Type: boolean | ||
82 | #. Description | ||
83 | #: ../openssh-server.templates.master:2001 | ||
84 | msgid "" | ||
85 | "This can be fixed by manually adding \"--pidfile /var/run/sshd.pid\" to the " | ||
86 | "start-stop-daemon line in the stop section of the file." | ||
87 | msgstr "" | ||
88 | "파ì¼ì˜ stop 구ì—ì— ìžˆëŠ” start-stop-daemonì— \"--pidfile /var/run/sshd.pid" | ||
89 | "\"ì„ ì¶”ê°€í•˜ì‹œë©´ ì´ ë¬¸ì œë¥¼ í•´ê²°í• ìˆ˜ 있습니다." | ||
90 | |||
91 | #. Type: note | ||
92 | #. Description | ||
93 | #: ../openssh-server.templates.master:3001 | ||
94 | msgid "New host key mandatory" | ||
95 | msgstr "호스트키 새로 만들어야 함" | ||
96 | |||
97 | #. Type: note | ||
98 | #. Description | ||
99 | #: ../openssh-server.templates.master:3001 | ||
100 | msgid "" | ||
101 | "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " | ||
102 | "algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " | ||
103 | "utility from the old (non-free) SSH installation does not appear to be " | ||
104 | "available." | ||
105 | msgstr "" | ||
106 | "/etc/ssh/ssh_host_keyì— ìžˆëŠ” 현재 호스트키늘 IDEA ì•Œê³ ë¦¬ì¦˜ìœ¼ë¡œ 암호화ë˜ì–´ìžˆìŠµ" | ||
107 | "니다. OpenSSH는 ì´ í˜¸ìŠ¤íŠ¸í‚¤ 파ì¼ì„ 다루지 못하며, ì´ì „ì— ì„¤ì¹˜ë˜ì—ˆë˜ (비ìžìœ ) " | ||
108 | "SSH í”„ë¡œê·¸ëž¨ì˜ ssh-keygen ì‘ìš©í”„ë¡œê·¸ëž¨ì´ ì—†ëŠ” 것 같습니다." | ||
109 | |||
110 | #. Type: note | ||
111 | #. Description | ||
112 | #: ../openssh-server.templates.master:3001 | ||
113 | msgid "You need to manually generate a new host key." | ||
114 | msgstr "호스트키를 ì§ì ‘ 새로 ìƒì„±í•˜ì…”야 합니다." | ||
115 | |||
116 | #. Type: boolean | ||
117 | #. Description | ||
118 | #: ../openssh-server.templates.master:4001 | ||
119 | msgid "Disable challenge-response authentication?" | ||
120 | msgstr "ì œê¸°-ì‘답 ì¸ì¦ë°©ì‹ì„ í•´ì œí•˜ë„ë¡ í• ê¹Œìš”?" | ||
121 | |||
122 | #. Type: boolean | ||
123 | #. Description | ||
124 | #: ../openssh-server.templates.master:4001 | ||
125 | msgid "" | ||
126 | "Password authentication appears to be disabled in the current OpenSSH server " | ||
127 | "configuration. In order to prevent users from logging in using passwords " | ||
128 | "(perhaps using only public key authentication instead) with recent versions " | ||
129 | "of OpenSSH, you must disable challenge-response authentication, or else " | ||
130 | "ensure that your PAM configuration does not allow Unix password file " | ||
131 | "authentication." | ||
132 | msgstr "" | ||
133 | "í˜„ìž¬ì˜ OpenSSH 서버 ì„¤ì •ì— ë¹„ë°€ë²ˆí˜¸ ì¸ì¦ë°©ì‹ì´ í•´ì œë˜ì–´ 있습니다. 최근 ë²„ì „" | ||
134 | "ì˜ OpenSSHì—ì„œ 사용ìžë“¤ì´ (공개키 ë°©ì‹ë§Œ 허용하기 위해서 ë“±ì˜ ì´ìœ ë¡œ) 비밀번" | ||
135 | "호로 로그ì¸í•˜ì§€ 못하ë„ë¡ í•˜ì‹œë ¤ë©´ ì œê¸°-ì‘답 ì¸ì¦ë°©ì‹ì„ í•´ì œí•˜ì‹œë“ ì§€ ìœ ë‹‰ìŠ¤ " | ||
136 | "password íŒŒì¼ ì¸ì¦ë°©ì‹ì„ 사용하지 못하ë„ë¡ PAM ì„¤ì •ì„ í•˜ì…”ì•¼ 합니다." | ||
137 | |||
138 | #. Type: boolean | ||
139 | #. Description | ||
140 | #: ../openssh-server.templates.master:4001 | ||
141 | msgid "" | ||
142 | "If you disable challenge-response authentication, then users will not be " | ||
143 | "able to log in using passwords. If you leave it enabled (the default " | ||
144 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
145 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
146 | msgstr "" | ||
147 | "ì œê¸°-ì‘답 ì¸ì¦ë°©ì‹ì„ í•´ì œí•˜ë©´ 사용ìžë“¤ì€ 비밀번호를 ì´ìš©í•˜ì—¬ 로그ì¸í•˜ì§€ 못하" | ||
148 | "게 ë©ë‹ˆë‹¤. (기본 ì„¤ì •ëŒ€ë¡œ) í•´ì œí•˜ì§€ 않으시면 /etc/pam.d/sshì— ìžˆëŠ” PAM ì„¤ì •" | ||
149 | "ì„ ë³€ê²½í•˜ì§€ 않으실 경우 'PasswordAuthentication no' ì˜µì…˜ì€ ì•„ë¬´ëŸ° ì˜í–¥ì„ 주" | ||
150 | "지 못합니다." | ||
diff --git a/debian/po/nb.po b/debian/po/nb.po new file mode 100644 index 000000000..d1f645cfb --- /dev/null +++ b/debian/po/nb.po | |||
@@ -0,0 +1,153 @@ | |||
1 | # translation of nb.po to Norwegian Bokmål | ||
2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER | ||
3 | # This file is distributed under the same license as the PACKAGE package. | ||
4 | # | ||
5 | # Bjørn Steensrud <bjornst@powertech.no>, 2007. | ||
6 | msgid "" | ||
7 | msgstr "" | ||
8 | "Project-Id-Version: nb\n" | ||
9 | "Report-Msgid-Bugs-To: debian-ssh@lists.debian.org\n" | ||
10 | "POT-Creation-Date: 2007-08-19 15:36+0100\n" | ||
11 | "PO-Revision-Date: 2007-04-24 19:14+0200\n" | ||
12 | "Last-Translator: Bjørn Steensrud <bjornst@powertech.no>\n" | ||
13 | "Language-Team: Norwegian Bokmål <i18n-nb@lister.ping.uio.no>\n" | ||
14 | "MIME-Version: 1.0\n" | ||
15 | "Content-Type: text/plain; charset=UTF-8\n" | ||
16 | "Content-Transfer-Encoding: 8bit\n" | ||
17 | "X-Generator: KBabel 1.11.4\n" | ||
18 | |||
19 | #. Type: boolean | ||
20 | #. Description | ||
21 | #: ../openssh-server.templates.master:1001 | ||
22 | msgid "Generate a new configuration file for OpenSSH?" | ||
23 | msgstr "Skal ny oppsettsfil for OpenSSH lages?" | ||
24 | |||
25 | #. Type: boolean | ||
26 | #. Description | ||
27 | #: ../openssh-server.templates.master:1001 | ||
28 | msgid "" | ||
29 | "This version of OpenSSH has a considerably changed configuration file from " | ||
30 | "the version shipped in Debian 'Potato', which you appear to be upgrading " | ||
31 | "from. This package can now generate a new configuration file (/etc/ssh/sshd." | ||
32 | "config), which will work with the new server version, but will not contain " | ||
33 | "any customizations you made with the old version." | ||
34 | msgstr "" | ||
35 | "Det ser ut til at du oppgraderer fra Debian «Potato», og denne versjonen av " | ||
36 | "OpenSSH har ganske store endringer i oppsettsfila. Denne pakka kan nå lage " | ||
37 | "en ny oppsettsfil (/etc/ssh/sshd.config) som fungerer med den nye " | ||
38 | "tjenerversjonen, men ikke inneholder noen tilpasninger som kan være gjort " | ||
39 | "lokalt i den gamle versjonen." | ||
40 | |||
41 | #. Type: boolean | ||
42 | #. Description | ||
43 | #: ../openssh-server.templates.master:1001 | ||
44 | msgid "" | ||
45 | "Please note that this new configuration file will set the value of " | ||
46 | "'PermitRootLogin' to 'yes' (meaning that anyone knowing the root password " | ||
47 | "can ssh directly in as root). Please read the README.Debian file for more " | ||
48 | "details about this design choice." | ||
49 | msgstr "" | ||
50 | "Merk at denne nye oppsettsfila setter verdien av «PermitRootLogin» til " | ||
51 | "«yes» (slik at alle som kjenner root-passordet kan logge inn direkte med ssh " | ||
52 | "som root). Les README.Debian-fila for å finne ut mer om dette oppsettsvalget." | ||
53 | |||
54 | #. Type: boolean | ||
55 | #. Description | ||
56 | #: ../openssh-server.templates.master:1001 | ||
57 | msgid "" | ||
58 | "It is strongly recommended that you choose to generate a new configuration " | ||
59 | "file now." | ||
60 | msgstr "" | ||
61 | "Det anbefales sterkt at denne pakka får lov til å lage en ny oppsettsfil nå." | ||
62 | |||
63 | #. Type: boolean | ||
64 | #. Description | ||
65 | #: ../openssh-server.templates.master:2001 | ||
66 | msgid "Do you want to risk killing active SSH sessions?" | ||
67 | msgstr "Vil du risikere å avbryte aktive SSH-økter?" | ||
68 | |||
69 | #. Type: boolean | ||
70 | #. Description | ||
71 | #: ../openssh-server.templates.master:2001 | ||
72 | msgid "" | ||
73 | "The currently installed version of /etc/init.d/ssh is likely to kill all " | ||
74 | "running sshd instances. If you are doing this upgrade via an SSH session, " | ||
75 | "you're likely to be disconnected and leave the upgrade procedure unfinished." | ||
76 | msgstr "" | ||
77 | "Den versjonen av /etc/init.d/ssh som nå er installert vil antakelig stoppe " | ||
78 | "alle sshd-instanser som kjører. Hvis denne oppgraderingen gjøres over en SSH-" | ||
79 | "økt, så risikerer du å bli frakoblet og oppgraderingen blir ikke fullført." | ||
80 | |||
81 | #. Type: boolean | ||
82 | #. Description | ||
83 | #: ../openssh-server.templates.master:2001 | ||
84 | msgid "" | ||
85 | "This can be fixed by manually adding \"--pidfile /var/run/sshd.pid\" to the " | ||
86 | "start-stop-daemon line in the stop section of the file." | ||
87 | msgstr "" | ||
88 | "Dette kan rettes på ved å legge til manuelt «--pidfile /var/run/sshd.pid» " | ||
89 | "til start-stop-daemon linja i stopp-delen av fila." | ||
90 | |||
91 | #. Type: note | ||
92 | #. Description | ||
93 | #: ../openssh-server.templates.master:3001 | ||
94 | msgid "New host key mandatory" | ||
95 | msgstr "Ny vertsnøkkel obligatorisk" | ||
96 | |||
97 | #. Type: note | ||
98 | #. Description | ||
99 | #: ../openssh-server.templates.master:3001 | ||
100 | msgid "" | ||
101 | "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " | ||
102 | "algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " | ||
103 | "utility from the old (non-free) SSH installation does not appear to be " | ||
104 | "available." | ||
105 | msgstr "" | ||
106 | "Den gjeldende vertsnøkkelen, i /etc/ssh/ssh_host_key, er kryptert med IDEA-" | ||
107 | "algoritmen. OpenSSH kan ikke håndtere denne vertsnøkkelfila, og det ser ikke " | ||
108 | "ut til at verktøyet ssh-keygen fra den gamle (ikke-frie) SSH-installasjonen " | ||
109 | "er tilgjengelig." | ||
110 | |||
111 | #. Type: note | ||
112 | #. Description | ||
113 | #: ../openssh-server.templates.master:3001 | ||
114 | msgid "You need to manually generate a new host key." | ||
115 | msgstr "En ny vertsnøkkel må lages manuelt." | ||
116 | |||
117 | #. Type: boolean | ||
118 | #. Description | ||
119 | #: ../openssh-server.templates.master:4001 | ||
120 | msgid "Disable challenge-response authentication?" | ||
121 | msgstr "Skal autentisering med utfordring/svar slås av?" | ||
122 | |||
123 | #. Type: boolean | ||
124 | #. Description | ||
125 | #: ../openssh-server.templates.master:4001 | ||
126 | msgid "" | ||
127 | "Password authentication appears to be disabled in the current OpenSSH server " | ||
128 | "configuration. In order to prevent users from logging in using passwords " | ||
129 | "(perhaps using only public key authentication instead) with recent versions " | ||
130 | "of OpenSSH, you must disable challenge-response authentication, or else " | ||
131 | "ensure that your PAM configuration does not allow Unix password file " | ||
132 | "authentication." | ||
133 | msgstr "" | ||
134 | "Det ser ut til at passord-autentisering er slått av i det gjeldende " | ||
135 | "tjeneroppsettet for OpenSSH. For å hindre brukere i å logge inn med passord " | ||
136 | "med nyere versjoner av OpenSSH (kanskje med autentisering med kryptonøkler i " | ||
137 | "stedet), så må autentisering med utfordring-svar slås av, eller det må " | ||
138 | "sjekkes at PAM-oppsettet er satt til ikke å tillate autentisering mot Unix " | ||
139 | "passord-fila." | ||
140 | |||
141 | #. Type: boolean | ||
142 | #. Description | ||
143 | #: ../openssh-server.templates.master:4001 | ||
144 | msgid "" | ||
145 | "If you disable challenge-response authentication, then users will not be " | ||
146 | "able to log in using passwords. If you leave it enabled (the default " | ||
147 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
148 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
149 | msgstr "" | ||
150 | "Hvis autentisering med utfordring-svar er slått av, så kan brukere ikke " | ||
151 | "logge inn med passord. Hvis det står på (som er standard), så har det ingen " | ||
152 | "virkning å sette «PasswordAuthentication no» med mindre PAM-oppsettet i /etc/" | ||
153 | "pam.d/ssh også justeres." | ||
diff --git a/debian/po/nl.po b/debian/po/nl.po new file mode 100644 index 000000000..5fc800347 --- /dev/null +++ b/debian/po/nl.po | |||
@@ -0,0 +1,201 @@ | |||
1 | # | ||
2 | # Translators, if you are not familiar with the PO format, gettext | ||
3 | # documentation is worth reading, especially sections dedicated to | ||
4 | # this format, e.g. by running: | ||
5 | # info -n '(gettext)PO Files' | ||
6 | # info -n '(gettext)Header Entry' | ||
7 | # | ||
8 | # Some information specific to po-debconf are available at | ||
9 | # /usr/share/doc/po-debconf/README-trans | ||
10 | # or http://www.debian.org/intl/l10n/po-debconf/README-trans | ||
11 | # | ||
12 | # Developers do not need to manually edit POT or PO files. | ||
13 | # | ||
14 | msgid "" | ||
15 | msgstr "" | ||
16 | "Project-Id-Version: openssh 3.6.1p2-9\n" | ||
17 | "Report-Msgid-Bugs-To: debian-ssh@lists.debian.org\n" | ||
18 | "POT-Creation-Date: 2007-08-19 15:36+0100\n" | ||
19 | "PO-Revision-Date: 2007-04-28 20:40+0100\n" | ||
20 | "Last-Translator: Bart Cornelis <cobaco@skolelinux.no>\n" | ||
21 | "Language-Team: debian-l10n-dutch <debian-l10n-dutch@lists.debian.org>\n" | ||
22 | "MIME-Version: 1.0\n" | ||
23 | "Content-Type: text/plain; charset=utf-8\n" | ||
24 | "Content-Transfer-Encoding: 8bit\n" | ||
25 | "X-Poedit-Language: Dutch\n" | ||
26 | |||
27 | #. Type: boolean | ||
28 | #. Description | ||
29 | #: ../openssh-server.templates.master:1001 | ||
30 | msgid "Generate a new configuration file for OpenSSH?" | ||
31 | msgstr "" | ||
32 | "Wilt u dat er een nieuw configuratiebestand aangemaakt wordt voor OpenSSH?" | ||
33 | |||
34 | #. Type: boolean | ||
35 | #. Description | ||
36 | #: ../openssh-server.templates.master:1001 | ||
37 | msgid "" | ||
38 | "This version of OpenSSH has a considerably changed configuration file from " | ||
39 | "the version shipped in Debian 'Potato', which you appear to be upgrading " | ||
40 | "from. This package can now generate a new configuration file (/etc/ssh/sshd." | ||
41 | "config), which will work with the new server version, but will not contain " | ||
42 | "any customizations you made with the old version." | ||
43 | msgstr "" | ||
44 | "Deze versie van OpenSSH gebruikt een configuratiebestand dat sterk veranderd " | ||
45 | "is ten opzichte van dat in Debian 'Potato' (waarvan u lijkt op te " | ||
46 | "waarderen). Het pakket kan nu een nieuw configuratiebestand (/etc/ssh/sshd." | ||
47 | "config) genereren dat met de nieuwe versie werkt. Dit gegenereerde bestand " | ||
48 | "zal echter de door u gemaakte aanpassingen in het oude configuratiebestand " | ||
49 | "niet overnemen." | ||
50 | |||
51 | #. Type: boolean | ||
52 | #. Description | ||
53 | #: ../openssh-server.templates.master:1001 | ||
54 | msgid "" | ||
55 | "Please note that this new configuration file will set the value of " | ||
56 | "'PermitRootLogin' to 'yes' (meaning that anyone knowing the root password " | ||
57 | "can ssh directly in as root). Please read the README.Debian file for more " | ||
58 | "details about this design choice." | ||
59 | msgstr "" | ||
60 | "Merk op dat dit nieuwe configuratiebestand de waarde van 'PermitRootLogin' " | ||
61 | "op 'yes' zet (wat betekent dat iedereen die het root-wachtwoord kent via ssh " | ||
62 | "rechtstreeks als root kan aanmelden). Meer informatie over deze ontwerpkeuze " | ||
63 | "vindt u in het bestand README.Debian." | ||
64 | |||
65 | #. Type: boolean | ||
66 | #. Description | ||
67 | #: ../openssh-server.templates.master:1001 | ||
68 | msgid "" | ||
69 | "It is strongly recommended that you choose to generate a new configuration " | ||
70 | "file now." | ||
71 | msgstr "" | ||
72 | "Het wordt ten sterkste aangeraden om nu het nieuwe configuratiebestand te " | ||
73 | "laten genereren." | ||
74 | |||
75 | #. Type: boolean | ||
76 | #. Description | ||
77 | #: ../openssh-server.templates.master:2001 | ||
78 | msgid "Do you want to risk killing active SSH sessions?" | ||
79 | msgstr "Wilt u het afsluiten van actieve SSH-sessies riskeren?" | ||
80 | |||
81 | #. Type: boolean | ||
82 | #. Description | ||
83 | #: ../openssh-server.templates.master:2001 | ||
84 | msgid "" | ||
85 | "The currently installed version of /etc/init.d/ssh is likely to kill all " | ||
86 | "running sshd instances. If you are doing this upgrade via an SSH session, " | ||
87 | "you're likely to be disconnected and leave the upgrade procedure unfinished." | ||
88 | msgstr "" | ||
89 | "De /etc/init.d/ssh versie die u geïnstalleerd hebt sluit waarschijnlijk alle " | ||
90 | "lopende sshd-instanties af. Als u deze opwaardering via een SSH-sessie " | ||
91 | "uitvoert verliest u waarschijnlijk de verbinding waardoor de " | ||
92 | "opwaarderingsprocedure onafgemaakt blijft." | ||
93 | |||
94 | #. Type: boolean | ||
95 | #. Description | ||
96 | #: ../openssh-server.templates.master:2001 | ||
97 | msgid "" | ||
98 | "This can be fixed by manually adding \"--pidfile /var/run/sshd.pid\" to the " | ||
99 | "start-stop-daemon line in the stop section of the file." | ||
100 | msgstr "" | ||
101 | "U kunt dit handmatig repareren door \"--pidfile /var/run/sshd.pid\" toe te " | ||
102 | "voegen aan de start-stop-daemon regel in de stop-sectie van het bestand." | ||
103 | |||
104 | #. Type: note | ||
105 | #. Description | ||
106 | #: ../openssh-server.templates.master:3001 | ||
107 | msgid "New host key mandatory" | ||
108 | msgstr "Een nieuwe computersleutel is verplicht" | ||
109 | |||
110 | #. Type: note | ||
111 | #. Description | ||
112 | #: ../openssh-server.templates.master:3001 | ||
113 | msgid "" | ||
114 | "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " | ||
115 | "algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " | ||
116 | "utility from the old (non-free) SSH installation does not appear to be " | ||
117 | "available." | ||
118 | msgstr "" | ||
119 | "De huidige computersleutel in /etc/ssh/ssh_host_key is versleuteld met het " | ||
120 | "IDEA-algoritme. OpenSSH kan dit computer-sleutelbestand niet aan, en het ssh-" | ||
121 | "keygen programma van de oude (niet-vrije) SSH-installatie is niet " | ||
122 | "beschikbaar." | ||
123 | |||
124 | #. Type: note | ||
125 | #. Description | ||
126 | #: ../openssh-server.templates.master:3001 | ||
127 | msgid "You need to manually generate a new host key." | ||
128 | msgstr "U dient bijgevolg handmatig een nieuwe computersleutel te genereren." | ||
129 | |||
130 | #. Type: boolean | ||
131 | #. Description | ||
132 | #: ../openssh-server.templates.master:4001 | ||
133 | msgid "Disable challenge-response authentication?" | ||
134 | msgstr "Challenge-response-authenticatie deactiveren?" | ||
135 | |||
136 | #. Type: boolean | ||
137 | #. Description | ||
138 | #: ../openssh-server.templates.master:4001 | ||
139 | msgid "" | ||
140 | "Password authentication appears to be disabled in the current OpenSSH server " | ||
141 | "configuration. In order to prevent users from logging in using passwords " | ||
142 | "(perhaps using only public key authentication instead) with recent versions " | ||
143 | "of OpenSSH, you must disable challenge-response authentication, or else " | ||
144 | "ensure that your PAM configuration does not allow Unix password file " | ||
145 | "authentication." | ||
146 | msgstr "" | ||
147 | "Zo te zien is wachtwoord-authenticatie momenteel gedeactiveerd in uw OpenSSH-" | ||
148 | "serverconfiguratie. Om te voorkomen dat gebruikers van recente OpenSSH-" | ||
149 | "versies inloggen met behulp van wachtwoorden (en in plaats daarvan enkel " | ||
150 | "publieke-sleutel authenticatie te gebruiken), dient challenge-response-" | ||
151 | "authenticatie gedeactiveerd te worden, of dient u ervoor te zorgen dat uw " | ||
152 | "PAM-configuratie geen Unix 'password'-bestand-authenticatie toe laat." | ||
153 | |||
154 | #. Type: boolean | ||
155 | #. Description | ||
156 | #: ../openssh-server.templates.master:4001 | ||
157 | msgid "" | ||
158 | "If you disable challenge-response authentication, then users will not be " | ||
159 | "able to log in using passwords. If you leave it enabled (the default " | ||
160 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
161 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
162 | msgstr "" | ||
163 | "Wanneer u challenge-response-authenticatie deactiveert kunnen gebruikers " | ||
164 | "niet meer inloggen met behulp van wachtwoorden. Als u het geactiveerd laat " | ||
165 | "(de standaarwaarde) zal de 'PasswordAuthentication no' optie geen (nuttig) " | ||
166 | "effect hebben tenzij u ook de PAM-configuratie aanpast in /etc/pam.d/ssh." | ||
167 | |||
168 | #~ msgid "Warning: you must create a new host key" | ||
169 | #~ msgstr "" | ||
170 | #~ "Waarschuwing: er dient een nieuwe (encryptie)sleutel aangemaakt te worden " | ||
171 | #~ "voor deze computer." | ||
172 | |||
173 | #~ msgid "Warning: telnetd is installed --- probably not a good idea" | ||
174 | #~ msgstr "" | ||
175 | #~ "Waarschuwing: telnetd is geïnstalleerd -- dit is waarschijnlijk geen goed " | ||
176 | #~ "idee" | ||
177 | |||
178 | #~ msgid "" | ||
179 | #~ "I'd advise you to either remove the telnetd package (if you don't " | ||
180 | #~ "actually need to offer telnet access) or install telnetd-ssl so that " | ||
181 | #~ "there is at least some chance that telnet sessions will not be sending " | ||
182 | #~ "unencrypted login/password and session information over the network." | ||
183 | #~ msgstr "" | ||
184 | #~ "Het is aan te raden om of het telnetd-pakket te verwijderen (indien u " | ||
185 | #~ "geen telnettoegang hoeft aan te bieden), of telnetd-ssl te installeren " | ||
186 | #~ "zodat er enige kans is dat telnetsessies geen onversleutelde " | ||
187 | #~ "gebruikersnaam/wachtwoord en sessie informatie over het netwerk versturen." | ||
188 | |||
189 | #~ msgid "Warning: rsh-server is installed --- probably not a good idea" | ||
190 | #~ msgstr "" | ||
191 | #~ "Waarschuwing: rsh-server is geïnstalleerd -- dit is waarschijnlijk geen " | ||
192 | #~ "goed idee" | ||
193 | |||
194 | #~ msgid "" | ||
195 | #~ "having rsh-server installed undermines the security that you were " | ||
196 | #~ "probably wanting to obtain by installing ssh. I'd advise you to remove " | ||
197 | #~ "that package." | ||
198 | #~ msgstr "" | ||
199 | #~ "Een rsh-server geïnstalleerd hebben ondermijnt de beveiliging die u " | ||
200 | #~ "(waarschijnlijk net) probeerde te verkrijgen door ssh te installeren. We " | ||
201 | #~ "raden u aan dan ook aan om dat pakket te verwijderen." | ||
diff --git a/debian/po/pl.po b/debian/po/pl.po new file mode 100644 index 000000000..b8d7d2b7c --- /dev/null +++ b/debian/po/pl.po | |||
@@ -0,0 +1,402 @@ | |||
1 | # | ||
2 | # Translators, if you are not familiar with the PO format, gettext | ||
3 | # documentation is worth reading, especially sections dedicated to | ||
4 | # this format, e.g. by running: | ||
5 | # info -n '(gettext)PO Files' | ||
6 | # info -n '(gettext)Header Entry' | ||
7 | # | ||
8 | # Some information specific to po-debconf are available at | ||
9 | # /usr/share/doc/po-debconf/README-trans | ||
10 | # or http://www.debian.org/intl/l10n/po-debconf/README-trans | ||
11 | # | ||
12 | # Developers do not need to manually edit POT or PO files. | ||
13 | # | ||
14 | msgid "" | ||
15 | msgstr "" | ||
16 | "Project-Id-Version: PACKAGE VERSION\n" | ||
17 | "Report-Msgid-Bugs-To: debian-ssh@lists.debian.org\n" | ||
18 | "POT-Creation-Date: 2007-08-19 15:36+0100\n" | ||
19 | "PO-Revision-Date: 2004-04-08 18:28+0200\n" | ||
20 | "Last-Translator: Emil Nowak <emil5@go2.pl>\n" | ||
21 | "Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\n" | ||
22 | "MIME-Version: 1.0\n" | ||
23 | "Content-Type: text/plain; charset=ISO-8859-2\n" | ||
24 | "Content-Transfer-Encoding: 8bit\n" | ||
25 | |||
26 | #. Type: boolean | ||
27 | #. Description | ||
28 | #: ../openssh-server.templates.master:1001 | ||
29 | #, fuzzy | ||
30 | msgid "Generate a new configuration file for OpenSSH?" | ||
31 | msgstr "Wygeneruj nowy plik konfiguracyjny" | ||
32 | |||
33 | #. Type: boolean | ||
34 | #. Description | ||
35 | #: ../openssh-server.templates.master:1001 | ||
36 | #, fuzzy | ||
37 | msgid "" | ||
38 | "This version of OpenSSH has a considerably changed configuration file from " | ||
39 | "the version shipped in Debian 'Potato', which you appear to be upgrading " | ||
40 | "from. This package can now generate a new configuration file (/etc/ssh/sshd." | ||
41 | "config), which will work with the new server version, but will not contain " | ||
42 | "any customizations you made with the old version." | ||
43 | msgstr "" | ||
44 | "W tej wersji OpenSSH zmieni³ siê plik konfiguracyjny w stosunku do wersji " | ||
45 | "dostarczanej z Debianem 'Potato', któr± zdajesz siê aktualizowaæ. Mogê teraz " | ||
46 | "wygenerowaæ nowy plik konfiguracyjny (/etc/ssh/sshd.config), który bêdzie " | ||
47 | "dzia³a³ z now± wersj± serwera, ale nie bêdzie zawiera³ ¿adnych dokonanych " | ||
48 | "przez ciebie w starej wersji zmian." | ||
49 | |||
50 | #. Type: boolean | ||
51 | #. Description | ||
52 | #: ../openssh-server.templates.master:1001 | ||
53 | #, fuzzy | ||
54 | #| msgid "" | ||
55 | #| "Please note that this new configuration file will set the value of " | ||
56 | #| "'PermitRootLogin' to yes (meaning that anyone knowing the root password " | ||
57 | #| "can ssh directly in as root). It is the opinion of the maintainer that " | ||
58 | #| "this is the correct default (see README.Debian for more details), but you " | ||
59 | #| "can always edit sshd_config and set it to no if you wish." | ||
60 | msgid "" | ||
61 | "Please note that this new configuration file will set the value of " | ||
62 | "'PermitRootLogin' to 'yes' (meaning that anyone knowing the root password " | ||
63 | "can ssh directly in as root). Please read the README.Debian file for more " | ||
64 | "details about this design choice." | ||
65 | msgstr "" | ||
66 | "Zauwa¿ proszê, ¿e nowy plik konfiguracyjny bêdzie ustawia³ warto¶æ opcji " | ||
67 | "'PermitRootLogin' na 'tak' (co oznacza, ¿e ka¿dy kto zna has³o root'a mo¿e " | ||
68 | "zdalnie zalogowaæ siê przez ssh jako root). W opinii opiekuna pakietu to " | ||
69 | "jest poprawna warto¶æ domy¶lna (szczegó³y w README.Debian), ale mo¿esz sobie " | ||
70 | "wyedytowaæ sshd_config i ustawiæ tê opcjê na 'nie' je¶li siê z t± opini± nie " | ||
71 | "zgadzasz." | ||
72 | |||
73 | #. Type: boolean | ||
74 | #. Description | ||
75 | #: ../openssh-server.templates.master:1001 | ||
76 | #, fuzzy | ||
77 | msgid "" | ||
78 | "It is strongly recommended that you choose to generate a new configuration " | ||
79 | "file now." | ||
80 | msgstr "" | ||
81 | "Jest bardzo wskazane aby¶ pozwoli³ mi wygenerowaæ nowy plik konfiguracyjny." | ||
82 | |||
83 | #. Type: boolean | ||
84 | #. Description | ||
85 | #: ../openssh-server.templates.master:2001 | ||
86 | #, fuzzy | ||
87 | #| msgid "Do you want to continue (and risk killing active ssh sessions)?" | ||
88 | msgid "Do you want to risk killing active SSH sessions?" | ||
89 | msgstr "Czy chcesz kontynuowaæ (i ryzykowaæ przerwaniem aktywnych sesji ssh) ?" | ||
90 | |||
91 | #. Type: boolean | ||
92 | #. Description | ||
93 | #: ../openssh-server.templates.master:2001 | ||
94 | #, fuzzy | ||
95 | #| msgid "" | ||
96 | #| "The version of /etc/init.d/ssh that you have installed, is likely to kill " | ||
97 | #| "all running sshd instances. If you are doing this upgrade via an ssh " | ||
98 | #| "session, that would be a Bad Thing(tm)." | ||
99 | msgid "" | ||
100 | "The currently installed version of /etc/init.d/ssh is likely to kill all " | ||
101 | "running sshd instances. If you are doing this upgrade via an SSH session, " | ||
102 | "you're likely to be disconnected and leave the upgrade procedure unfinished." | ||
103 | msgstr "" | ||
104 | "Zainstalowana w³a¶nie wersja /etc/init.d/ssh mo¿e zabiæ wszystkie dzia³aj±ce " | ||
105 | "obecnie kopie sshd. Je¶li wykonujesz t± aktualizacjê przez ssh, to by³aby " | ||
106 | "Z³a Rzecz(tm)." | ||
107 | |||
108 | #. Type: boolean | ||
109 | #. Description | ||
110 | #: ../openssh-server.templates.master:2001 | ||
111 | #, fuzzy | ||
112 | #| msgid "" | ||
113 | #| "You can fix this by adding \"--pidfile /var/run/sshd.pid\" to the start-" | ||
114 | #| "stop-daemon line in the stop section of the file." | ||
115 | msgid "" | ||
116 | "This can be fixed by manually adding \"--pidfile /var/run/sshd.pid\" to the " | ||
117 | "start-stop-daemon line in the stop section of the file." | ||
118 | msgstr "" | ||
119 | "Mo¿esz to naprawiæ dodaj±c \"--pidfile /var/run/sshd.pid\" do linijki start-" | ||
120 | "stop-daemon w sekcji stop tego pliku." | ||
121 | |||
122 | #. Type: note | ||
123 | #. Description | ||
124 | #: ../openssh-server.templates.master:3001 | ||
125 | msgid "New host key mandatory" | ||
126 | msgstr "" | ||
127 | |||
128 | #. Type: note | ||
129 | #. Description | ||
130 | #: ../openssh-server.templates.master:3001 | ||
131 | #, fuzzy | ||
132 | msgid "" | ||
133 | "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " | ||
134 | "algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " | ||
135 | "utility from the old (non-free) SSH installation does not appear to be " | ||
136 | "available." | ||
137 | msgstr "" | ||
138 | "Istnieje stary /etc/ssh/ssh_host_key, który jest zaszyfrowany przez IDEA. " | ||
139 | "OpenSSH nie umie korzystaæ z tak zaszyfrowanego klucza, a nie mo¿e znale¼æ " | ||
140 | "polecenia ssh-keygen ze starego SSH (non-free)." | ||
141 | |||
142 | #. Type: note | ||
143 | #. Description | ||
144 | #: ../openssh-server.templates.master:3001 | ||
145 | #, fuzzy | ||
146 | #| msgid "You will need to generate a new host key." | ||
147 | msgid "You need to manually generate a new host key." | ||
148 | msgstr "Bêdziesz musia³ wygenerowaæ nowy klucz hosta." | ||
149 | |||
150 | #. Type: boolean | ||
151 | #. Description | ||
152 | #: ../openssh-server.templates.master:4001 | ||
153 | msgid "Disable challenge-response authentication?" | ||
154 | msgstr "" | ||
155 | |||
156 | #. Type: boolean | ||
157 | #. Description | ||
158 | #: ../openssh-server.templates.master:4001 | ||
159 | msgid "" | ||
160 | "Password authentication appears to be disabled in the current OpenSSH server " | ||
161 | "configuration. In order to prevent users from logging in using passwords " | ||
162 | "(perhaps using only public key authentication instead) with recent versions " | ||
163 | "of OpenSSH, you must disable challenge-response authentication, or else " | ||
164 | "ensure that your PAM configuration does not allow Unix password file " | ||
165 | "authentication." | ||
166 | msgstr "" | ||
167 | |||
168 | #. Type: boolean | ||
169 | #. Description | ||
170 | #: ../openssh-server.templates.master:4001 | ||
171 | msgid "" | ||
172 | "If you disable challenge-response authentication, then users will not be " | ||
173 | "able to log in using passwords. If you leave it enabled (the default " | ||
174 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
175 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
176 | msgstr "" | ||
177 | |||
178 | #~ msgid "Warning: you must create a new host key" | ||
179 | #~ msgstr "Uwaga: musisz utworzyæ nowy klucz hosta" | ||
180 | |||
181 | #~ msgid "Warning: telnetd is installed --- probably not a good idea" | ||
182 | #~ msgstr "" | ||
183 | #~ "Uwaga: telnetd jest zainstalowany --- prawdopodobnie nienajlepszy pomys³" | ||
184 | |||
185 | #~ msgid "" | ||
186 | #~ "I'd advise you to either remove the telnetd package (if you don't " | ||
187 | #~ "actually need to offer telnet access) or install telnetd-ssl so that " | ||
188 | #~ "there is at least some chance that telnet sessions will not be sending " | ||
189 | #~ "unencrypted login/password and session information over the network." | ||
190 | #~ msgstr "" | ||
191 | #~ "Radzi³bym albo usun±æ pakiet telnetd (je¶li nie potrzebujesz koniecznie " | ||
192 | #~ "udostêpniaæ telnet'a) albo zainstalowaæ telnetd-ssl aby by³a choæ " | ||
193 | #~ "szansza, ¿e sesje telnet nie bêd± przesy³aæ niezaszyfrowanego loginu/" | ||
194 | #~ "has³a oraz danych sesji przez sieæ." | ||
195 | |||
196 | #~ msgid "Warning: rsh-server is installed --- probably not a good idea" | ||
197 | #~ msgstr "" | ||
198 | #~ "Uwaga: serwer rsh jest zainstalowany --- prawdopodobnie nienajlepszy " | ||
199 | #~ "pomys³" | ||
200 | |||
201 | #~ msgid "" | ||
202 | #~ "having rsh-server installed undermines the security that you were " | ||
203 | #~ "probably wanting to obtain by installing ssh. I'd advise you to remove " | ||
204 | #~ "that package." | ||
205 | #~ msgstr "" | ||
206 | #~ "Posiadanie zainstalowanego serwera rsh podminowuje zabezpieczenia, które " | ||
207 | #~ "prawdopodobnie starasz siê uzyskaæ instaluj±c ssh. Radzi³bym usun±æ ten " | ||
208 | #~ "pakiet." | ||
209 | |||
210 | #~ msgid "Do you want ssh-keysign to be installed SUID root?" | ||
211 | #~ msgstr "Czy chcesz aby ssh-keysign by³ zainstalowany jako SUID root?" | ||
212 | |||
213 | #~ msgid "" | ||
214 | #~ "You have the option of installing the ssh-keysign helper with the SUID " | ||
215 | #~ "bit set." | ||
216 | #~ msgstr "" | ||
217 | #~ "Masz mo¿liwo¶æ zainstalowania pomocniczego programu ssh-keysign z " | ||
218 | #~ "w³±czonym bitem SETUID." | ||
219 | |||
220 | #~ msgid "" | ||
221 | #~ "If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 " | ||
222 | #~ "host-based authentication." | ||
223 | #~ msgstr "" | ||
224 | #~ "Je¶li uczynisz ssh-keysign SUIDowym, bêdziesz móg³ u¿ywaæ opartej na " | ||
225 | #~ "hostach autoryzacji drugiej wersji protoko³u SSH." | ||
226 | |||
227 | #~ msgid "" | ||
228 | #~ "If in doubt, I suggest you install it with SUID. If it causes problems " | ||
229 | #~ "you can change your mind later by running: dpkg-reconfigure ssh" | ||
230 | #~ msgstr "" | ||
231 | #~ "Je¶li masz w±tpliwo¶ci, radzê zainstalowaæ go z SUIDem. Je¶li to sprawia " | ||
232 | #~ "problemy, mo¿esz zmieniæ swoje zdanie uruchamiaj±c pó¼niej polecenie: " | ||
233 | #~ "dpkg-reconfigure ssh" | ||
234 | |||
235 | #~ msgid "Allow SSH protocol 2 only" | ||
236 | #~ msgstr "Zezwalaj wy³±cznie na wersjê 2 protoko³u SSH" | ||
237 | |||
238 | #~ msgid "" | ||
239 | #~ "This version of OpenSSH supports version 2 of the ssh protocol, which is " | ||
240 | #~ "much more secure. Disabling ssh 1 is encouraged, however this will slow " | ||
241 | #~ "things down on low end machines and might prevent older clients from " | ||
242 | #~ "connecting (the ssh client shipped with \"potato\" is affected)." | ||
243 | #~ msgstr "" | ||
244 | #~ "Ta wersja OpenSSH wspiera drug± wersjê protoko³u ssh, która jest znacznie " | ||
245 | #~ "bardziej bezpieczna. Wy³±czenie ssh 1 jest zalecane, choæ spowalnia to " | ||
246 | #~ "dzia³anie na starych maszynach i mo¿e uniemo¿liwiæ po³±czenie starszym " | ||
247 | #~ "wersjom klientów (dotyczy to np. klienta ssh do³±czanego do \"potato\")." | ||
248 | |||
249 | #~ msgid "" | ||
250 | #~ "Also please note that keys used for protocol 1 are different so you will " | ||
251 | #~ "not be able to use them if you only allow protocol 2 connections." | ||
252 | #~ msgstr "" | ||
253 | #~ "Ponadto, zauwa¿ proszê, ¿e klucze u¿ywane przez protokó³ 1 s± inne, wiêc " | ||
254 | #~ "nie bêdziesz móg³ ich u¿ywaæ je¶li zezwolisz na korzystanie wy³±cznie z " | ||
255 | #~ "wersji 2 protoko³u." | ||
256 | |||
257 | #~ msgid "" | ||
258 | #~ "If you later change your mind about this setting, README.Debian has " | ||
259 | #~ "instructions on what to do to your sshd_config file." | ||
260 | #~ msgstr "" | ||
261 | #~ "Je¶li pó¼niej zmienisz zdanie co do tego ustawienia, to instrukcje co " | ||
262 | #~ "zmieniæ w sshd_config znajduj± siê w README.Debian." | ||
263 | |||
264 | #~ msgid "NOTE: Forwarding of X11 and Authorization disabled by default." | ||
265 | #~ msgstr "" | ||
266 | #~ "UWAGA: Przekazywanie (forwarding) X11 i Autoryzacji jest domy¶lnie " | ||
267 | #~ "wy³±czone." | ||
268 | |||
269 | #~ msgid "" | ||
270 | #~ "For security reasons, the Debian version of ssh has ForwardX11 and " | ||
271 | #~ "ForwardAgent set to ``off'' by default." | ||
272 | #~ msgstr "" | ||
273 | #~ "Ze wzglêdów bezpieczeñstwa Debianowa wersja ssh ma ForwardX11 i " | ||
274 | #~ "ForwardAgent ustawione domy¶lnie na 'off'." | ||
275 | |||
276 | #~ msgid "" | ||
277 | #~ "You can enable it for servers you trust, either in one of the " | ||
278 | #~ "configuration files, or with the -X command line option." | ||
279 | #~ msgstr "" | ||
280 | #~ "Dla zaufanych serwerów mo¿esz w³±czyæ te opcje w pliku konfiguracyjnym " | ||
281 | #~ "lub przy pomocy opcji -X z linii komend." | ||
282 | |||
283 | #~ msgid "More details can be found in /usr/share/doc/ssh/README.Debian" | ||
284 | #~ msgstr "Wiêcej szczegó³ów znajdziesz w /usr/share/doc/ssh/README.Debian." | ||
285 | |||
286 | #~ msgid "ssh2 keys merged in configuration files" | ||
287 | #~ msgstr "klucze ssh2 w³±czone do plików konfiguracyjnych" | ||
288 | |||
289 | #~ msgid "" | ||
290 | #~ "As of version 3 OpenSSH no longer uses separate files for ssh1 and ssh2 " | ||
291 | #~ "keys. This means the authorized_keys2 and known_hosts2 files are no " | ||
292 | #~ "longer needed. They will still be read in order to maintain backwards " | ||
293 | #~ "compatibility" | ||
294 | #~ msgstr "" | ||
295 | #~ "Pocz±wszy od wersji 3 OpenSSH nie u¿ywa ju¿ osobnych plików dla kluczy " | ||
296 | #~ "ssh1 i ssh2. Oznacza to, ¿e pliki authorized_keys2 i known_hosts2 nie s± " | ||
297 | #~ "ju¿ potrzebne. Bêd± one jednak odczytywane aby zachowaæ wsteczn± " | ||
298 | #~ "kompatybilno¶æ." | ||
299 | |||
300 | #~ msgid "Do you want to run the sshd server?" | ||
301 | #~ msgstr "Czy chcesz uruchamiaæ serwer sshd ?" | ||
302 | |||
303 | #~ msgid "This package contains both the ssh client, and the sshd server." | ||
304 | #~ msgstr "Ten pakiet zawiera zarówno klienta ssh, jak i serwer sshd." | ||
305 | |||
306 | #~ msgid "" | ||
307 | #~ "Normally the sshd Secure Shell Server will be run to allow remote logins " | ||
308 | #~ "via ssh." | ||
309 | #~ msgstr "" | ||
310 | #~ "Normalnie serwer sshd (Secure Shell Server) bêdzie uruchomiony aby " | ||
311 | #~ "umo¿liwiæ zdalny dostêp przez ssh." | ||
312 | |||
313 | #~ msgid "" | ||
314 | #~ "If you are only interested in using the ssh client for outbound " | ||
315 | #~ "connections on this machine, and don't want to log into it at all using " | ||
316 | #~ "ssh, then you can disable sshd here." | ||
317 | #~ msgstr "" | ||
318 | #~ "Je¶li jeste¶ zainteresowany u¿ywaniem wy³±cznie klienta ssh dla po³±czeñ " | ||
319 | #~ "wychodz±cych z tej maszyny, i nie chcesz siê na ni± logowaæ przy pomocy " | ||
320 | #~ "ssh, to mo¿esz teraz wy³±czyæ serwer sshd." | ||
321 | |||
322 | #~ msgid "Environment options on keys have been deprecated" | ||
323 | #~ msgstr "Odradzamy stosowanie ustawieñ ¶rodowiskowych dla kluczy." | ||
324 | |||
325 | #~ msgid "" | ||
326 | #~ "This version of OpenSSH disables the environment option for public keys " | ||
327 | #~ "by default, in order to avoid certain attacks (for example, LD_PRELOAD). " | ||
328 | #~ "If you are using this option in an authorized_keys file, beware that the " | ||
329 | #~ "keys in question will no longer work until the option is removed." | ||
330 | #~ msgstr "" | ||
331 | #~ "Ta wersja OpenSSH ma wy³±czon± opcjê wykorzystywania ustawieñ " | ||
332 | #~ "¶rodowiskowych dla kluczy publicznych. Mo¿na dziêki temu unikn±æ pewnych " | ||
333 | #~ "ataków (jak np.: LD_PRELOAD). Je¿eli u¿ywasz tej opcji w pliku " | ||
334 | #~ "authorized_keys, to zawarte w nim klucze nie bêd± dzia³aæ dopóki ta opcja " | ||
335 | #~ "nie zostanie usuniêta." | ||
336 | |||
337 | #~ msgid "" | ||
338 | #~ "To re-enable this option, set \"PermitUserEnvironment yes\" in /etc/ssh/" | ||
339 | #~ "sshd_config after the upgrade is complete, taking note of the warning in " | ||
340 | #~ "the sshd_config(5) manual page." | ||
341 | #~ msgstr "" | ||
342 | #~ "Aby ponownie w³±czyæ tê opcjê, nale¿y dodaæ wpis \"PermitUserEnvironment " | ||
343 | #~ "yes\" do pliku /etc/ssh/sshd_config po ukoñczeniu aktualizacji. Przy " | ||
344 | #~ "zmianie konfiguracji nale¿y zapoznaæ siê z informacjami zawartymi na " | ||
345 | #~ "stronie podrêcznika systemowego sshd_config(5)." | ||
346 | |||
347 | #~ msgid "Privilege separation" | ||
348 | #~ msgstr "Separacja uprawnieñ" | ||
349 | |||
350 | #~ msgid "" | ||
351 | #~ "Privilege separation is turned on by default, so if you decide you want " | ||
352 | #~ "it turned off, you need to add \"UsePrivilegeSeparation no\" to /etc/ssh/" | ||
353 | #~ "sshd_config." | ||
354 | #~ msgstr "" | ||
355 | #~ "Separacja uprawnieñ jest domy¶lnie w³±czona, wiêc je¶li zdecydujesz siê " | ||
356 | #~ "j± wy³±czyæ, musisz dodaæ \"UsePrivilegeSeparation no\" do pliku /etc/ssh/" | ||
357 | #~ "sshd_config." | ||
358 | |||
359 | #~ msgid "Enable Privilege separation" | ||
360 | #~ msgstr "W³±czenie separacji uprawnieñ" | ||
361 | |||
362 | #~ msgid "" | ||
363 | #~ "This version of OpenSSH contains the new privilege separation option. " | ||
364 | #~ "This significantly reduces the quantity of code that runs as root, and " | ||
365 | #~ "therefore reduces the impact of security holes in sshd." | ||
366 | #~ msgstr "" | ||
367 | #~ "Ta wersja OpenSSH zawiera now± opcjê separacji uprawnieñ. Znacz±co " | ||
368 | #~ "zmniejsza ona ilo¶æ kodu, który jest uruchamiany jako root i co za tym " | ||
369 | #~ "idzie redukuje efekty luk bezpieczeñstwa w sshd." | ||
370 | |||
371 | #~ msgid "" | ||
372 | #~ "Unfortunately, privilege separation interacts badly with PAM. Any PAM " | ||
373 | #~ "session modules that need to run as root (pam_mkhomedir, for example) " | ||
374 | #~ "will fail, and PAM keyboard-interactive authentication won't work." | ||
375 | #~ msgstr "" | ||
376 | #~ "Niestety separacja uprawnieñ ¼le reaguje z PAMem. Jakikolwiek modu³ sesji " | ||
377 | #~ "PAM, który musi byæ uruchamiany jako root (pam_mkhomedir, na przyk³ad) " | ||
378 | #~ "zawiedzie. Nie bêdzie dzia³aæ równie¿ interaktywna autentykacja z " | ||
379 | #~ "klawiatury (keyboard-interactive authentication)." | ||
380 | |||
381 | #, fuzzy | ||
382 | #~ msgid "" | ||
383 | #~ "Since you've opted to have me generate an sshd_config file for you, you " | ||
384 | #~ "can choose whether or not to have privilege separation turned on or not. " | ||
385 | #~ "Unless you know you need to use PAM features that won't work with this " | ||
386 | #~ "option, you should enable it." | ||
387 | #~ msgstr "" | ||
388 | #~ "Zdecydowa³e¶ siê na to abym wygenerowa³ dla ciebie plik sshd_config, i " | ||
389 | #~ "mo¿esz wybraæ czy chcesz w³±czyæ Separacjê Uprawnieñ, czy te¿ nie. Je¶li " | ||
390 | #~ "nie u¿ywasz j±dra z serii 2.0 (w którym to przypadku *musisz* " | ||
391 | #~ "odpowiedzieæ tutaj 'nie' albo sshd w ogóle nie ruszy) i je¶li nie musisz " | ||
392 | #~ "korzystaæ z mo¿liwo¶ci PAMa, które nie bêd± dzia³a³y z t± opcj±, " | ||
393 | #~ "powiniene¶ odpowiedzieæ tutaj 'tak'." | ||
394 | |||
395 | #~ msgid "" | ||
396 | #~ "NB! If you are running a 2.0 series Linux kernel, then privilege " | ||
397 | #~ "separation will not work at all, and your sshd will fail to start unless " | ||
398 | #~ "you explicitly turn privilege separation off." | ||
399 | #~ msgstr "" | ||
400 | #~ "UWAGA! Je¿eli u¿ywasz j±dra Linux'a z serii 2.0, to separacja uprawnieñ w " | ||
401 | #~ "ogóle nie bêdzie dzia³aæ i sshd nie wystartuje dopóki w³asnorêcznie nie " | ||
402 | #~ "wy³±czysz separacji uprawnieñ w /etc/ssh/sshd_config." | ||
diff --git a/debian/po/pt.po b/debian/po/pt.po new file mode 100644 index 000000000..40ee3f945 --- /dev/null +++ b/debian/po/pt.po | |||
@@ -0,0 +1,153 @@ | |||
1 | # Portuguese translation of openssh debconf messages. | ||
2 | # This file is distributed under the same license as the openssh package. | ||
3 | # Ricardo Silva <ardoric@gmail.com>, 2007. | ||
4 | # | ||
5 | msgid "" | ||
6 | msgstr "" | ||
7 | "Project-Id-Version: openssh 4.3p2-3\n" | ||
8 | "Report-Msgid-Bugs-To: debian-ssh@lists.debian.org\n" | ||
9 | "POT-Creation-Date: 2007-08-19 15:36+0100\n" | ||
10 | "PO-Revision-Date: 2007-05-09 22:21+0100\n" | ||
11 | "Last-Translator: Ricardo Silva <ardoric@gmail.com>\n" | ||
12 | "Language-Team: Native Portuguese <traduz@debianpt.org>\n" | ||
13 | "MIME-Version: 1.0\n" | ||
14 | "Content-Type: text/plain; charset=UTF-8\n" | ||
15 | "Content-Transfer-Encoding: 8bit\n" | ||
16 | |||
17 | #. Type: boolean | ||
18 | #. Description | ||
19 | #: ../openssh-server.templates.master:1001 | ||
20 | msgid "Generate a new configuration file for OpenSSH?" | ||
21 | msgstr "Gerar um ficheiro de configuração novo para o OpenSSH?" | ||
22 | |||
23 | #. Type: boolean | ||
24 | #. Description | ||
25 | #: ../openssh-server.templates.master:1001 | ||
26 | msgid "" | ||
27 | "This version of OpenSSH has a considerably changed configuration file from " | ||
28 | "the version shipped in Debian 'Potato', which you appear to be upgrading " | ||
29 | "from. This package can now generate a new configuration file (/etc/ssh/sshd." | ||
30 | "config), which will work with the new server version, but will not contain " | ||
31 | "any customizations you made with the old version." | ||
32 | msgstr "" | ||
33 | "Esta versão do OpenSSH tem um ficheiro de configuração bastante diferente da " | ||
34 | "versão que vinha com o Debian 'Potato', que parece ser de onde está a " | ||
35 | "actualizar. Este pacote pode agora gerar um novo ficheiro de configuração (/" | ||
36 | "etc/ssh/sshd.config), que irá funcionar com a nova versão do servidor, mas " | ||
37 | "não conterá nenhuma alteração que tenha feito à versão antiga." | ||
38 | |||
39 | #. Type: boolean | ||
40 | #. Description | ||
41 | #: ../openssh-server.templates.master:1001 | ||
42 | msgid "" | ||
43 | "Please note that this new configuration file will set the value of " | ||
44 | "'PermitRootLogin' to 'yes' (meaning that anyone knowing the root password " | ||
45 | "can ssh directly in as root). Please read the README.Debian file for more " | ||
46 | "details about this design choice." | ||
47 | msgstr "" | ||
48 | "Por favor note que este novo ficheiro de configuração terá 'PermitRootLogin' " | ||
49 | "definido para 'yes' (o que significa que qualquer pessoa que saiba a palavra-" | ||
50 | "chave de root pode ligar-se directamente como root a partir do ssh). Por " | ||
51 | "favor leia o ficheiro README.Debian para mais detalhes sobre esta escolha." | ||
52 | |||
53 | #. Type: boolean | ||
54 | #. Description | ||
55 | #: ../openssh-server.templates.master:1001 | ||
56 | msgid "" | ||
57 | "It is strongly recommended that you choose to generate a new configuration " | ||
58 | "file now." | ||
59 | msgstr "" | ||
60 | "É fortemente recomendado que escolha gerar um novo ficheiro de configuração " | ||
61 | "agora." | ||
62 | |||
63 | #. Type: boolean | ||
64 | #. Description | ||
65 | #: ../openssh-server.templates.master:2001 | ||
66 | msgid "Do you want to risk killing active SSH sessions?" | ||
67 | msgstr "Quer arriscar matar sessões activas de SSH?" | ||
68 | |||
69 | #. Type: boolean | ||
70 | #. Description | ||
71 | #: ../openssh-server.templates.master:2001 | ||
72 | msgid "" | ||
73 | "The currently installed version of /etc/init.d/ssh is likely to kill all " | ||
74 | "running sshd instances. If you are doing this upgrade via an SSH session, " | ||
75 | "you're likely to be disconnected and leave the upgrade procedure unfinished." | ||
76 | msgstr "" | ||
77 | "A versão do /etc/init.d/ssh que tem instalado provavelmente terminará todas " | ||
78 | "as instâncias de sshd. Se vai actualizar através de uma sessão ssh, é " | ||
79 | "possÃvel que a sua sessão seja terminada e que deixe o procedimento de " | ||
80 | "actualização por terminar." | ||
81 | |||
82 | #. Type: boolean | ||
83 | #. Description | ||
84 | #: ../openssh-server.templates.master:2001 | ||
85 | msgid "" | ||
86 | "This can be fixed by manually adding \"--pidfile /var/run/sshd.pid\" to the " | ||
87 | "start-stop-daemon line in the stop section of the file." | ||
88 | msgstr "" | ||
89 | "Isto pode ser arranjado adicionando \"--pidfile /var/run/sshd.pid\" Ã linha " | ||
90 | "start-stop-daemon na secção stop do ficheiro." | ||
91 | |||
92 | #. Type: note | ||
93 | #. Description | ||
94 | #: ../openssh-server.templates.master:3001 | ||
95 | msgid "New host key mandatory" | ||
96 | msgstr "Uma nova chave de anfitrião é obrigatória" | ||
97 | |||
98 | #. Type: note | ||
99 | #. Description | ||
100 | #: ../openssh-server.templates.master:3001 | ||
101 | msgid "" | ||
102 | "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " | ||
103 | "algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " | ||
104 | "utility from the old (non-free) SSH installation does not appear to be " | ||
105 | "available." | ||
106 | msgstr "" | ||
107 | "A chave actual, em /etc/ssh/ssh_host_key, está cifrada com o algoritmo IDEA. " | ||
108 | "O OpenSSH não consegue usar este ficheiro, e o utilitário ssh-keygen da " | ||
109 | "antiga (e não livre) instalação do SSH não parece estar disponÃvel." | ||
110 | |||
111 | #. Type: note | ||
112 | #. Description | ||
113 | #: ../openssh-server.templates.master:3001 | ||
114 | msgid "You need to manually generate a new host key." | ||
115 | msgstr "Terá de gerar manualmente uma nova chave para o host." | ||
116 | |||
117 | #. Type: boolean | ||
118 | #. Description | ||
119 | #: ../openssh-server.templates.master:4001 | ||
120 | msgid "Disable challenge-response authentication?" | ||
121 | msgstr "Desactivar autenticação por desafio-resposta?" | ||
122 | |||
123 | #. Type: boolean | ||
124 | #. Description | ||
125 | #: ../openssh-server.templates.master:4001 | ||
126 | msgid "" | ||
127 | "Password authentication appears to be disabled in the current OpenSSH server " | ||
128 | "configuration. In order to prevent users from logging in using passwords " | ||
129 | "(perhaps using only public key authentication instead) with recent versions " | ||
130 | "of OpenSSH, you must disable challenge-response authentication, or else " | ||
131 | "ensure that your PAM configuration does not allow Unix password file " | ||
132 | "authentication." | ||
133 | msgstr "" | ||
134 | "Autenticação por palavra-chave aparenta estar desactivada na sua " | ||
135 | "configuração actual do servidor OpenSSH. De forma a impedir que os " | ||
136 | "utilizadores se liguem usando palavras-chave (talvez usando apenas " | ||
137 | "autenticação por chave pública) com versões recentes do OpenSSH, tem de " | ||
138 | "desactivar a autenticação por desafio-resposta, ou assegurar-se que a sua " | ||
139 | "configuração do PAM não permite autenticação pelo ficheiro password de Unix." | ||
140 | |||
141 | #. Type: boolean | ||
142 | #. Description | ||
143 | #: ../openssh-server.templates.master:4001 | ||
144 | msgid "" | ||
145 | "If you disable challenge-response authentication, then users will not be " | ||
146 | "able to log in using passwords. If you leave it enabled (the default " | ||
147 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
148 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
149 | msgstr "" | ||
150 | "Se desactivar autenticação por pedido-resposta, os utilizadores não serão " | ||
151 | "capazes de se ligar usando palavras-chave. Se deixar activado (a resposta " | ||
152 | "por omissão), então a opção 'PasswordAuthentication no' não terá efeito a " | ||
153 | "não ser que também ajuste a configuração do PAM em /etc/pam.d/ssh." | ||
diff --git a/debian/po/pt_BR.po b/debian/po/pt_BR.po new file mode 100644 index 000000000..9d684e11e --- /dev/null +++ b/debian/po/pt_BR.po | |||
@@ -0,0 +1,387 @@ | |||
1 | # openssh's po-debconf Brazilian Portuguese translation. | ||
2 | # Copyright (C) 2007, André LuÃs Lopes | ||
3 | # This file is distributed under the same license as the openssh package. | ||
4 | # André LuÃs Lopes <andrelop@debian.org>, 2007. | ||
5 | # Eder L. Marques <frolic@debian-ce.org>, 2007. | ||
6 | # | ||
7 | msgid "" | ||
8 | msgstr "pt_BR utf-8\n" | ||
9 | "Project-Id-Version: openssh_1:4.6p1-5\n" | ||
10 | "Report-Msgid-Bugs-To: matthew@debian.org\n" | ||
11 | "POT-Creation-Date: 2007-04-24 16:48+0200\n" | ||
12 | "PO-Revision-Date: 2007-08-25 23:24-0300\n" | ||
13 | "Last-Translator: Eder L. Marques <frolic@debian-ce.org>\n" | ||
14 | "Language-Team: l10n Portuguese <debian-l10n-portuguese@lists.debian.org>\n" | ||
15 | "MIME-Version: 1.0\n" | ||
16 | "Content-Type: text/plain; charset=UTF-8\n" | ||
17 | "Content-Transfer-Encoding: 8bit\n" | ||
18 | |||
19 | #. Type: boolean | ||
20 | #. Description | ||
21 | #: ../openssh-server.templates.master:2001 | ||
22 | msgid "Generate a new configuration file for OpenSSH?" | ||
23 | msgstr "Gerar um novo arquivo de configuração para o OpenSSH?" | ||
24 | |||
25 | #. Type: boolean | ||
26 | #. Description | ||
27 | #: ../openssh-server.templates.master:2001 | ||
28 | msgid "" | ||
29 | "This version of OpenSSH has a considerably changed configuration file from " | ||
30 | "the version shipped in Debian 'Potato', which you appear to be upgrading " | ||
31 | "from. This package can now generate a new configuration file (/etc/ssh/sshd." | ||
32 | "config), which will work with the new server version, but will not contain " | ||
33 | "any customizations you made with the old version." | ||
34 | msgstr "" | ||
35 | "Esta versão do OpenSSH possui um arquivo de configuração consideravelmente " | ||
36 | "diferente da versão fornecida com o Debian 'Potato', a versão do Debian " | ||
37 | "a partir da qual você parece estar atualizando. Este pacote pode agora gerar " | ||
38 | "um novo arquivo de configuração (/etc/ssh/sshd_config), o qual irá funcionar " | ||
39 | "com a nova versão do servidor sshd mas não irá conter nenhuma personalização " | ||
40 | "que você possa ter feito na versão anterior." | ||
41 | |||
42 | #. Type: boolean | ||
43 | #. Description | ||
44 | #: ../openssh-server.templates.master:2001 | ||
45 | msgid "" | ||
46 | "Please note that this new configuration file will set the value of " | ||
47 | "'PermitRootLogin' to 'yes' (meaning that anyone knowing the root password " | ||
48 | "can ssh directly in as root). Please read the README.Debian file for more " | ||
49 | "details about this design choice." | ||
50 | msgstr "" | ||
51 | "Por favor, note que este novo arquivo de configuração irá definir o valor da " | ||
52 | "opção 'PermitRootLogin' para 'yes' (o que significa que qualquer pessoa " | ||
53 | "que conheça a senha do root poderá conectar via ssh diretamente como root). " | ||
54 | "Por favor, leia os arquivos README.Debian para maiores detalhes sobre essa " | ||
55 | "escolha de design." | ||
56 | |||
57 | #. Type: boolean | ||
58 | #. Description | ||
59 | #: ../openssh-server.templates.master:2001 | ||
60 | msgid "" | ||
61 | "It is strongly recommended that you choose to generate a new configuration " | ||
62 | "file now." | ||
63 | msgstr "" | ||
64 | "É fortemente recomendado que você escolha gerar um novo arquivo de " | ||
65 | "configuração agora." | ||
66 | |||
67 | #. Type: boolean | ||
68 | #. Description | ||
69 | #: ../openssh-server.templates.master:3001 | ||
70 | msgid "Do you want to risk killing active SSH sessions?" | ||
71 | msgstr "Você deseja arriscar matar (\"kill\") as sessões SSH ativas?" | ||
72 | |||
73 | #. Type: boolean | ||
74 | #. Description | ||
75 | #: ../openssh-server.templates.master:3001 | ||
76 | msgid "" | ||
77 | "The currently installed version of /etc/init.d/ssh is likely to kill all " | ||
78 | "running sshd instances. If you are doing this upgrade via an SSH session, " | ||
79 | "you're likely to be disconnected and leave the upgrade procedure unfinished." | ||
80 | msgstr "" | ||
81 | "A versão instalada atualmente de /etc/init.d/ssh está prestes a derrubar " | ||
82 | "todas as instâncias sshd em execução. Se você estiver fazendo esta " | ||
83 | "atualização através de uma sessão SSH, você provavelmente será desconectado " | ||
84 | "e deixará este processo de atualização incompleto." | ||
85 | |||
86 | #. Type: boolean | ||
87 | #. Description | ||
88 | #: ../openssh-server.templates.master:3001 | ||
89 | msgid "" | ||
90 | "This can be fixed by manually adding \"--pidfile /var/run/sshd.pid\" to the " | ||
91 | "start-stop-daemon line in the stop section of the file." | ||
92 | msgstr "" | ||
93 | "Você pode corrigir isto adicionando \"--pidfile /var/run/sshd.pid\" na linha " | ||
94 | "start-stop-daemon na seção stop deste arquivo." | ||
95 | |||
96 | #. Type: note | ||
97 | #. Description | ||
98 | #: ../openssh-server.templates.master:4001 | ||
99 | msgid "New host key mandatory" | ||
100 | msgstr "Nova chave de máquina obrigatória" | ||
101 | |||
102 | #. Type: note | ||
103 | #. Description | ||
104 | #: ../openssh-server.templates.master:4001 | ||
105 | msgid "" | ||
106 | "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " | ||
107 | "algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " | ||
108 | "utility from the old (non-free) SSH installation does not appear to be " | ||
109 | "available." | ||
110 | msgstr "" | ||
111 | "A chave de máquina atual, em /etc/ssh/ssh_host_key, é criptografada " | ||
112 | "utilizando o algoritmo IDEA. O OpenSSH não pode gerenciar esse arquivo de " | ||
113 | "chave de máquina, e o utilitário ssh-keygen da antiga (e não livre) " | ||
114 | "instalação SSH não parece estar disponÃvel." | ||
115 | |||
116 | |||
117 | #. Type: note | ||
118 | #. Description | ||
119 | #: ../openssh-server.templates.master:4001 | ||
120 | msgid "You need to manually generate a new host key." | ||
121 | msgstr "Você precisa gerar manualmente uma chave de máquina." | ||
122 | |||
123 | #. Type: boolean | ||
124 | #. Description | ||
125 | #: ../openssh-server.templates.master:5001 | ||
126 | msgid "Disable challenge-response authentication?" | ||
127 | msgstr "Desabilitar autenticação desafio-resposta (\"challenge-response\")?" | ||
128 | |||
129 | #. Type: boolean | ||
130 | #. Description | ||
131 | #: ../openssh-server.templates.master:5001 | ||
132 | msgid "" | ||
133 | "Password authentication appears to be disabled in the current OpenSSH server " | ||
134 | "configuration. In order to prevent users from logging in using passwords " | ||
135 | "(perhaps using only public key authentication instead) with recent versions " | ||
136 | "of OpenSSH, you must disable challenge-response authentication, or else " | ||
137 | "ensure that your PAM configuration does not allow Unix password file " | ||
138 | "authentication." | ||
139 | msgstr "" | ||
140 | "A autenticação através de senha parece estar desabilitada em sua " | ||
141 | "configuração atual do servidor OpenSSH. Para que seja possÃvel evitar que " | ||
142 | "usuários se autentiquem utilizando senhas (talvez utilizando somente " | ||
143 | "autenticação através de chaves públicas) em versões recentes do OpenSSH você " | ||
144 | "deve desabilitar a autenticação desafio-resposta (\"challenge-response\") ou " | ||
145 | "então se certificar que sua configuração PAM não permita autenticação " | ||
146 | "através do arquivos de senhas Unix (\"password\")." | ||
147 | |||
148 | #. Type: boolean | ||
149 | #. Description | ||
150 | #: ../openssh-server.templates.master:5001 | ||
151 | msgid "" | ||
152 | "If you disable challenge-response authentication, then users will not be " | ||
153 | "able to log in using passwords. If you leave it enabled (the default " | ||
154 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
155 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
156 | msgstr "" | ||
157 | "Caso você desabilite a autenticação desafio-resposta " | ||
158 | "(\"challenge-response\"), os usuários não poderão se autenticar utilizando " | ||
159 | "suas senhas. Se você deixá-la habilitada (a resposta padrão), então a opção " | ||
160 | "'PasswordAuthentication no' não terá efeito útil a menos que você também " | ||
161 | "ajuste sua configuração PAM em /etc/pam.d/ssh." | ||
162 | |||
163 | #~ msgid "Warning: you must create a new host key" | ||
164 | #~ msgstr "Aviso: você deve criar uma nova host key" | ||
165 | |||
166 | #~ msgid "Warning: telnetd is installed --- probably not a good idea" | ||
167 | #~ msgstr "Aviso: telnetd está instalado --- provavelmente não é uma boa idéia" | ||
168 | |||
169 | #~ msgid "" | ||
170 | #~ "I'd advise you to either remove the telnetd package (if you don't " | ||
171 | #~ "actually need to offer telnet access) or install telnetd-ssl so that " | ||
172 | #~ "there is at least some chance that telnet sessions will not be sending " | ||
173 | #~ "unencrypted login/password and session information over the network." | ||
174 | #~ msgstr "" | ||
175 | #~ "Eu recomendaria a você ou remover o pacote telnetd (se você atualmente " | ||
176 | #~ "não precisa oferecer acesso telnet) ou instalar telnetd-ssl. Assim existe " | ||
177 | #~ "pelo menos uma chance das sessões telnet não enviarem login/senha não " | ||
178 | #~ "criptografadas e informações de sessão através da rede." | ||
179 | |||
180 | #~ msgid "Warning: rsh-server is installed --- probably not a good idea" | ||
181 | #~ msgstr "" | ||
182 | #~ "Aviso: rsh-server está instalado --- provavelmente não é uma boa idéia" | ||
183 | |||
184 | #~ msgid "" | ||
185 | #~ "having rsh-server installed undermines the security that you were " | ||
186 | #~ "probably wanting to obtain by installing ssh. I'd advise you to remove " | ||
187 | #~ "that package." | ||
188 | #~ msgstr "" | ||
189 | #~ "Possuir o rsh-server instalado minará a segurança que você estava " | ||
190 | #~ "provavelmente querendo obter instalando o ssh. Eu recomendaria a você " | ||
191 | #~ "remover este pacote." | ||
192 | |||
193 | #~ msgid "Do you want ssh-keysign to be installed SUID root?" | ||
194 | #~ msgstr "Deseja que que ssh-keysign seja instalado 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 | #~ "Existe a opção de instalar o cliente auxiliar ssh-keysign com o bit SUID " | ||
201 | #~ "definido." | ||
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 | #~ "Caso você instale o ssh-keysign com o bit SUID ativado, você será capaz " | ||
208 | #~ "de usar a autenticação baseada em host do protocolo SSH 2." | ||
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 | #~ "Caso esteja em dúvida, é sugerido que você instale com o bit SUID " | ||
215 | #~ "ativado. Caso isso cause problemas e você mude de idéia posteriormente " | ||
216 | #~ "execute o comando : dpkg-reconfigure ssh" | ||
217 | |||
218 | #~ msgid "Allow SSH protocol 2 only" | ||
219 | #~ msgstr "Permitir somente protocolo SSH versão 2" | ||
220 | |||
221 | #~ msgid "" | ||
222 | #~ "This version of OpenSSH supports version 2 of the ssh protocol, which is " | ||
223 | #~ "much more secure. Disabling ssh 1 is encouraged, however this will slow " | ||
224 | #~ "things down on low end machines and might prevent older clients from " | ||
225 | #~ "connecting (the ssh client shipped with \"potato\" is affected)." | ||
226 | #~ msgstr "" | ||
227 | #~ "Esta versão do OpenSSH suporta a versão 2 do protocolo ssh, a qual é " | ||
228 | #~ "muito mais segura que a versão anterior. É recomendado desabilitar o " | ||
229 | #~ "suporte ao protocolo ssh versão 1, porém isto fará com que conexões " | ||
230 | #~ "fiquem mais lentas em máquinas mais antigas e pode impedir que clientes " | ||
231 | #~ "antigos consigam se conectar (o cliente ssh fornecido com a versão do " | ||
232 | #~ "Debian 2.2 \"potato\" é afetada.)" | ||
233 | |||
234 | #~ msgid "" | ||
235 | #~ "Also please note that keys used for protocol 1 are different so you will " | ||
236 | #~ "not be able to use them if you only allow protocol 2 connections." | ||
237 | #~ msgstr "" | ||
238 | #~ "Por favor note também que as chaves usadas para o protocolo 1 são " | ||
239 | #~ "diferentes portanto você não poderá usá-las caso você somente permita " | ||
240 | #~ "conexões usando o protocolo 2." | ||
241 | |||
242 | #~ msgid "" | ||
243 | #~ "If you later change your mind about this setting, README.Debian has " | ||
244 | #~ "instructions on what to do to your sshd_config file." | ||
245 | #~ msgstr "" | ||
246 | #~ "Caso você posteriormente mude de idéia sobre esta configuração, o arquivo " | ||
247 | #~ "README.Debian deste pacote possui instruções sobre o que mudar em seu " | ||
248 | #~ "arquivo de configuração sshd_config." | ||
249 | |||
250 | #~ msgid "NOTE: Forwarding of X11 and Authorization disabled by default." | ||
251 | #~ msgstr "NOTA: Encaminhamento de X11 e Autorização desabilitados por padrão." | ||
252 | |||
253 | #~ msgid "" | ||
254 | #~ "For security reasons, the Debian version of ssh has ForwardX11 and " | ||
255 | #~ "ForwardAgent set to ``off'' by default." | ||
256 | #~ msgstr "" | ||
257 | #~ "Por razôes de segurança, a versão Debian do ssh tem as opções ForwardX11 " | ||
258 | #~ "e ForwardAgent definidas como ``off'' por padrão." | ||
259 | |||
260 | #~ msgid "" | ||
261 | #~ "You can enable it for servers you trust, either in one of the " | ||
262 | #~ "configuration files, or with the -X command line option." | ||
263 | #~ msgstr "" | ||
264 | #~ "Você pode habilitar isso para servidores que você confia, ou em um dos " | ||
265 | #~ "arquivos de configuração, ou com a opção de linha de comando -X." | ||
266 | |||
267 | #~ msgid "More details can be found in /usr/share/doc/ssh/README.Debian" | ||
268 | #~ msgstr "" | ||
269 | #~ "Maiores detalhes podem ser encontrados em /usr/share/doc/ssh/README." | ||
270 | #~ "Debian." | ||
271 | |||
272 | #~ msgid "ssh2 keys merged in configuration files" | ||
273 | #~ msgstr "Chaves ssh2 incluÃdas nos arquivos de configuração" | ||
274 | |||
275 | #~ msgid "" | ||
276 | #~ "As of version 3 OpenSSH no longer uses separate files for ssh1 and ssh2 " | ||
277 | #~ "keys. This means the authorized_keys2 and known_hosts2 files are no " | ||
278 | #~ "longer needed. They will still be read in order to maintain backwards " | ||
279 | #~ "compatibility" | ||
280 | #~ msgstr "" | ||
281 | #~ "A partir do versão 3 o OpenSSH não usa mais arquivos separados para as " | ||
282 | #~ "chaves ssh1 e ssh2. Isto significa que os arquivos \"authorized_keys2\" e " | ||
283 | #~ "\"know_hosts2\" não são mais necessários. Os mesmos continuarão a ser " | ||
284 | #~ "lidos para manter a compatibilidade com versões anteriores." | ||
285 | |||
286 | #~ msgid "Do you want to run the sshd server?" | ||
287 | #~ msgstr "Você deseja executar o servidor sshd ?" | ||
288 | |||
289 | #~ msgid "This package contains both the ssh client, and the sshd server." | ||
290 | #~ msgstr "Este pacote contém ambos o cliente ssh e o servidor sshd." | ||
291 | |||
292 | #~ msgid "" | ||
293 | #~ "Normally the sshd Secure Shell Server will be run to allow remote logins " | ||
294 | #~ "via ssh." | ||
295 | #~ msgstr "" | ||
296 | #~ "Normalmente o sshd Secure Shell Server será executado para permitir " | ||
297 | #~ "logins remotos via ssh." | ||
298 | |||
299 | #~ msgid "" | ||
300 | #~ "If you are only interested in using the ssh client for outbound " | ||
301 | #~ "connections on this machine, and don't want to log into it at all using " | ||
302 | #~ "ssh, then you can disable sshd here." | ||
303 | #~ msgstr "" | ||
304 | #~ "Se você está interessado somente em usar o cliente ssh para conexões para " | ||
305 | #~ "fora desta máquina, e não quer logar na mesma usando ssh, então você pode " | ||
306 | #~ "desabilitar o sshd aqui." | ||
307 | |||
308 | #~ msgid "Environment options on keys have been deprecated" | ||
309 | #~ msgstr "Opções ed ambiente sobre chaves estão obsoletas" | ||
310 | |||
311 | #~ msgid "" | ||
312 | #~ "This version of OpenSSH disables the environment option for public keys " | ||
313 | #~ "by default, in order to avoid certain attacks (for example, LD_PRELOAD). " | ||
314 | #~ "If you are using this option in an authorized_keys file, beware that the " | ||
315 | #~ "keys in question will no longer work until the option is removed." | ||
316 | #~ msgstr "" | ||
317 | #~ "Esta versão do OpenSSH desabilita a opção de ambiente para chaves " | ||
318 | #~ "públicas por padrão par evitar certos ataques (por exemplo, LD_PRELOAD). " | ||
319 | #~ "Caso você esteja usando esta opção em um arquivo authorized_keys, tenha " | ||
320 | #~ "cuidado pois as chaves em questão não irão mais funcionar até que esta " | ||
321 | #~ "opção seja removida." | ||
322 | |||
323 | #~ msgid "" | ||
324 | #~ "To re-enable this option, set \"PermitUserEnvironment yes\" in /etc/ssh/" | ||
325 | #~ "sshd_config after the upgrade is complete, taking note of the warning in " | ||
326 | #~ "the sshd_config(5) manual page." | ||
327 | #~ msgstr "" | ||
328 | #~ "Para reabilitar esta opção, defina a opção \"PermitUserEnvironment yes\" " | ||
329 | #~ "no arquivo /et/ssh/sshd_config depois da a atualização terminar, " | ||
330 | #~ "atentando para o aviso na página de manual do sshd_config(5)." | ||
331 | |||
332 | #~ msgid "Privilege separation" | ||
333 | #~ msgstr "Separação de Previlégios" | ||
334 | |||
335 | #~ msgid "" | ||
336 | #~ "Privilege separation is turned on by default, so if you decide you want " | ||
337 | #~ "it turned off, you need to add \"UsePrivilegeSeparation no\" to /etc/ssh/" | ||
338 | #~ "sshd_config." | ||
339 | #~ msgstr "" | ||
340 | #~ "A separação de previlégios está habilitado por padrão, portanto caso você " | ||
341 | #~ "decida que deseja desabilitá-la você precisará adicionar a linha " | ||
342 | #~ "\"UsePrivilegeSeparation no\" ao arquivo /etc/ssh/sshd_config." | ||
343 | |||
344 | #~ msgid "Enable Privilege separation" | ||
345 | #~ msgstr "Habilitar Separação de Privilégios" | ||
346 | |||
347 | #~ msgid "" | ||
348 | #~ "This version of OpenSSH contains the new privilege separation option. " | ||
349 | #~ "This significantly reduces the quantity of code that runs as root, and " | ||
350 | #~ "therefore reduces the impact of security holes in sshd." | ||
351 | #~ msgstr "" | ||
352 | #~ "Esta versão do OpenSSH contém a nova opção de separação de privilégios. " | ||
353 | #~ "Esta opção reduz significativamente a quantidade de código que é " | ||
354 | #~ "executada como root e portanto reduz o impacto de falhas de segurança no " | ||
355 | #~ "sshd." | ||
356 | |||
357 | #~ msgid "" | ||
358 | #~ "Unfortunately, privilege separation interacts badly with PAM. Any PAM " | ||
359 | #~ "session modules that need to run as root (pam_mkhomedir, for example) " | ||
360 | #~ "will fail, and PAM keyboard-interactive authentication won't work." | ||
361 | #~ msgstr "" | ||
362 | #~ "Infelizmente, a separação de privilégios interage de maneira ruim com o " | ||
363 | #~ "PAM. Quaisquer módulos de sessão PAM que precisem ser executados como " | ||
364 | #~ "root (pam_mkhomedir, por exemplo) irão falhar e autenticação interativa " | ||
365 | #~ "com teclado do PAM não funcionará." | ||
366 | |||
367 | #~ msgid "" | ||
368 | #~ "Since you've opted to have me generate an sshd_config file for you, you " | ||
369 | #~ "can choose whether or not to have privilege separation turned on or not. " | ||
370 | #~ "Unless you know you need to use PAM features that won't work with this " | ||
371 | #~ "option, you should enable it." | ||
372 | #~ msgstr "" | ||
373 | #~ "Uma vez que você optou por permitir que o debconf gere um arquivo " | ||
374 | #~ "sshd_config para você, é possÃvel escolher se você deseja ter ou não o " | ||
375 | #~ "recurso de separação de privilégios habilitado. A menos que você saiba " | ||
376 | #~ "que utiliza recursos PAM que não funcionarão com esta opção habilitada, " | ||
377 | #~ "você deverá habilitar esse recurso." | ||
378 | |||
379 | #~ msgid "" | ||
380 | #~ "NB! If you are running a 2.0 series Linux kernel, then privilege " | ||
381 | #~ "separation will not work at all, and your sshd will fail to start unless " | ||
382 | #~ "you explicitly turn privilege separation off." | ||
383 | #~ msgstr "" | ||
384 | #~ "NB ! Caso você esteja executando um kernel Linux da séria 2.0 o recurso " | ||
385 | #~ "de separação de privilégios não funcionará e seu daemon sshd irá falhar " | ||
386 | #~ "ao iniciar a menos que você explicitamente desabilite o recurso de " | ||
387 | #~ "separação de privilégios." | ||
diff --git a/debian/po/ro.po b/debian/po/ro.po new file mode 100644 index 000000000..8d03a09b1 --- /dev/null +++ b/debian/po/ro.po | |||
@@ -0,0 +1,177 @@ | |||
1 | # Romanian translation of openssh. | ||
2 | # Copyright (C) 2006 THE openssh'S COPYRIGHT HOLDER | ||
3 | # This file is distributed under the same license as the openssh package. | ||
4 | # | ||
5 | # Stan Ioan-Eugen <stan.ieugen@gmail.com>, 2006. | ||
6 | # Igor Stirbu <igor.stirbu@gmail.com>, 2007. | ||
7 | msgid "" | ||
8 | msgstr "" | ||
9 | "Project-Id-Version: openssh 1.4\n" | ||
10 | "Report-Msgid-Bugs-To: debian-ssh@lists.debian.org\n" | ||
11 | "POT-Creation-Date: 2007-08-19 15:36+0100\n" | ||
12 | "PO-Revision-Date: 2007-05-01 05:45+0300\n" | ||
13 | "Last-Translator: Igor Stirbu <igor.stirbu@gmail.com>\n" | ||
14 | "Language-Team: Romanian <debian-l10n-romanian@lists.debian.org>\n" | ||
15 | "MIME-Version: 1.0\n" | ||
16 | "Content-Type: text/plain; charset=UTF-8\n" | ||
17 | "Content-Transfer-Encoding: 8bit\n" | ||
18 | "X-Generator: KBabel 1.11.4\n" | ||
19 | "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " | ||
20 | "20)) ? 1 : 2;\n" | ||
21 | |||
22 | #. Type: boolean | ||
23 | #. Description | ||
24 | #: ../openssh-server.templates.master:1001 | ||
25 | msgid "Generate a new configuration file for OpenSSH?" | ||
26 | msgstr "Să se genereze un fișier nou de configurare pentru OpenSSH?" | ||
27 | |||
28 | #. Type: boolean | ||
29 | #. Description | ||
30 | #: ../openssh-server.templates.master:1001 | ||
31 | msgid "" | ||
32 | "This version of OpenSSH has a considerably changed configuration file from " | ||
33 | "the version shipped in Debian 'Potato', which you appear to be upgrading " | ||
34 | "from. This package can now generate a new configuration file (/etc/ssh/sshd." | ||
35 | "config), which will work with the new server version, but will not contain " | ||
36 | "any customizations you made with the old version." | ||
37 | msgstr "" | ||
38 | "Această versiune de OpenSSH are un fișier de configurare considerabil " | ||
39 | "modificat față de versiunea care vine cu Debian 'Potato', pe care se pare că " | ||
40 | "o actualizați. Acest pachet poate genera acum un nou fișier de configurare (/" | ||
41 | "etc/ssh/sshd.config), care va funcționa cu noua versiune de server, dar nu " | ||
42 | "va conține nici o personalizare făcută pentru versiunea anterioară." | ||
43 | |||
44 | #. Type: boolean | ||
45 | #. Description | ||
46 | #: ../openssh-server.templates.master:1001 | ||
47 | msgid "" | ||
48 | "Please note that this new configuration file will set the value of " | ||
49 | "'PermitRootLogin' to 'yes' (meaning that anyone knowing the root password " | ||
50 | "can ssh directly in as root). Please read the README.Debian file for more " | ||
51 | "details about this design choice." | ||
52 | msgstr "" | ||
53 | "A se reține că acest fișier nou de configurare va stabili valoarea opțiunii " | ||
54 | "'PermitRootLogin' la „yes†(ceea ce înseamnă că cine știe parola de root se " | ||
55 | "poate autentifica prin ssh direct ca root). Părerea responsabilului de " | ||
56 | "pachet este că aceasta trebuie să fie valoarea implicită (a se vedea " | ||
57 | "fișierul README.Debian pentru detalii suplimentare), dar, dacă doriți, " | ||
58 | "puteți edita oricând fișierul sshd_config pentru a stabili valoarea opțiunii " | ||
59 | "la „noâ€." | ||
60 | |||
61 | #. Type: boolean | ||
62 | #. Description | ||
63 | #: ../openssh-server.templates.master:1001 | ||
64 | msgid "" | ||
65 | "It is strongly recommended that you choose to generate a new configuration " | ||
66 | "file now." | ||
67 | msgstr "Este indicat să alegeți acum generarea un nou fișier de configurare." | ||
68 | |||
69 | #. Type: boolean | ||
70 | #. Description | ||
71 | #: ../openssh-server.templates.master:2001 | ||
72 | msgid "Do you want to risk killing active SSH sessions?" | ||
73 | msgstr "Doriți să riscați întreruperea sesiunilor ssh active?" | ||
74 | |||
75 | #. Type: boolean | ||
76 | #. Description | ||
77 | #: ../openssh-server.templates.master:2001 | ||
78 | msgid "" | ||
79 | "The currently installed version of /etc/init.d/ssh is likely to kill all " | ||
80 | "running sshd instances. If you are doing this upgrade via an SSH session, " | ||
81 | "you're likely to be disconnected and leave the upgrade procedure unfinished." | ||
82 | msgstr "" | ||
83 | "Este foarte probabil ca această versiune de /etc/init.d/ssh pe care o aveți " | ||
84 | "instalată să omoare toate instanțele sshd care rulează. Dacă faceți această " | ||
85 | "actualizare printr-o sesiune ssh, atunci este posibil să fiți deconectați și " | ||
86 | "actualizarea să rămână neterminată." | ||
87 | |||
88 | #. Type: boolean | ||
89 | #. Description | ||
90 | #: ../openssh-server.templates.master:2001 | ||
91 | msgid "" | ||
92 | "This can be fixed by manually adding \"--pidfile /var/run/sshd.pid\" to the " | ||
93 | "start-stop-daemon line in the stop section of the file." | ||
94 | msgstr "" | ||
95 | "Puteți repara manual acest lucru adăugând „--pidfile /var/run/sshd.pid†la " | ||
96 | "linia start-stop-daemon în secțiunea stop a fișierului." | ||
97 | |||
98 | #. Type: note | ||
99 | #. Description | ||
100 | #: ../openssh-server.templates.master:3001 | ||
101 | msgid "New host key mandatory" | ||
102 | msgstr "O cheie nouă este obligatorie" | ||
103 | |||
104 | #. Type: note | ||
105 | #. Description | ||
106 | #: ../openssh-server.templates.master:3001 | ||
107 | msgid "" | ||
108 | "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " | ||
109 | "algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " | ||
110 | "utility from the old (non-free) SSH installation does not appear to be " | ||
111 | "available." | ||
112 | msgstr "" | ||
113 | "Cheia curentă în /etc/ssh/ssh_host_key este criptată cu algoritmul IDEA." | ||
114 | "OpenSSH nu suportă acest tip de cheie, iar utilitarul ssh-keygen din " | ||
115 | "versiunea SSH (non-liberă) anterior instalată nu pare să fie disponibil." | ||
116 | |||
117 | #. Type: note | ||
118 | #. Description | ||
119 | #: ../openssh-server.templates.master:3001 | ||
120 | msgid "You need to manually generate a new host key." | ||
121 | msgstr "Va trebui să generați manual o nouă cheie pentru sistem." | ||
122 | |||
123 | #. Type: boolean | ||
124 | #. Description | ||
125 | #: ../openssh-server.templates.master:4001 | ||
126 | msgid "Disable challenge-response authentication?" | ||
127 | msgstr "Dezactivează modul de autentificare provocare-răspuns?" | ||
128 | |||
129 | #. Type: boolean | ||
130 | #. Description | ||
131 | #: ../openssh-server.templates.master:4001 | ||
132 | msgid "" | ||
133 | "Password authentication appears to be disabled in the current OpenSSH server " | ||
134 | "configuration. In order to prevent users from logging in using passwords " | ||
135 | "(perhaps using only public key authentication instead) with recent versions " | ||
136 | "of OpenSSH, you must disable challenge-response authentication, or else " | ||
137 | "ensure that your PAM configuration does not allow Unix password file " | ||
138 | "authentication." | ||
139 | msgstr "" | ||
140 | "Autentificarea pe bază de parole pare dezactivată în configurația curentă a " | ||
141 | "serverului OpenSSH. Pentru a împiedica utilizatorii să se autentifice " | ||
142 | "folosind parole (probabil folosind doar autentificarea cu chei publice) în " | ||
143 | "versiunile recente OpenSSH trebuie să dezactivați autentificarea tip " | ||
144 | "provocare-răspuns, sau asigurați-vă că configurația PAM nu permite " | ||
145 | "autentificarea cu fișierul de parole Unix." | ||
146 | |||
147 | #. Type: boolean | ||
148 | #. Description | ||
149 | #: ../openssh-server.templates.master:4001 | ||
150 | msgid "" | ||
151 | "If you disable challenge-response authentication, then users will not be " | ||
152 | "able to log in using passwords. If you leave it enabled (the default " | ||
153 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
154 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
155 | msgstr "" | ||
156 | "Dacă dezactivați autentificarea pe bază de provocare-răspuns, utilizatorii " | ||
157 | "nu vor mai putea să se autentifice folosind parolele. Dacă nu o dezactivați " | ||
158 | "(răspunsul implicit), aunci opțiunea 'PasswordAuthentification no' va fi " | ||
159 | "utilizabilă doar dacă modificați și configurația PAM din /etc/pam.d/ssh." | ||
160 | |||
161 | #~ msgid "Warning: you must create a new host key" | ||
162 | #~ msgstr "Avertizare: trebuie să creați o nouă cheie pentru sistem" | ||
163 | |||
164 | #~ msgid "Warning: telnetd is installed --- probably not a good idea" | ||
165 | #~ msgstr "" | ||
166 | #~ "Avertizare: telnetd este instalat --- probabil că nu este o idee bună" | ||
167 | |||
168 | #~ msgid "" | ||
169 | #~ "I'd advise you to either remove the telnetd package (if you don't " | ||
170 | #~ "actually need to offer telnet access) or install telnetd-ssl so that " | ||
171 | #~ "there is at least some chance that telnet sessions will not be sending " | ||
172 | #~ "unencrypted login/password and session information over the network." | ||
173 | #~ msgstr "" | ||
174 | #~ "Un sfat bun este fie să ștergeți pachetul telnetd (dacă întradevăr nu-l " | ||
175 | #~ "utilizați) fie să instalați telnetd-ssl astfel încât să existe " | ||
176 | #~ "posibilitatea ca sesiunile telnet să nu trimită informații necriptate de " | ||
177 | #~ "autentificare/parole prin rețea." | ||
diff --git a/debian/po/ru.po b/debian/po/ru.po new file mode 100644 index 000000000..5c5540f88 --- /dev/null +++ b/debian/po/ru.po | |||
@@ -0,0 +1,165 @@ | |||
1 | # translation of openssh to Russian | ||
2 | # | ||
3 | # Translators, if you are not familiar with the PO format, gettext | ||
4 | # documentation is worth reading, especially sections dedicated to | ||
5 | # this format, e.g. by running: | ||
6 | # info -n '(gettext)PO Files' | ||
7 | # info -n '(gettext)Header Entry' | ||
8 | # Some information specific to po-debconf are available at | ||
9 | # /usr/share/doc/po-debconf/README-trans | ||
10 | # or http://www.debian.org/intl/l10n/po-debconf/README-trans# | ||
11 | # Developers do not need to manually edit POT or PO files. | ||
12 | # Yuriy Talakan' <yt@drsk.ru>, 2007. | ||
13 | # | ||
14 | msgid "" | ||
15 | msgstr "" | ||
16 | "Project-Id-Version: openssh_ru\n" | ||
17 | "Report-Msgid-Bugs-To: debian-ssh@lists.debian.org\n" | ||
18 | "POT-Creation-Date: 2007-08-19 15:36+0100\n" | ||
19 | "PO-Revision-Date: 2007-05-08 12:11+0300\n" | ||
20 | "Last-Translator: Yuriy Talakan' <yt@drsk.ru>\n" | ||
21 | "Language-Team: Russian <debian-l10n-russian@lists.debian.org>\n" | ||
22 | "MIME-Version: 1.0\n" | ||
23 | "Content-Type: text/plain; charset=UTF-8\n" | ||
24 | "Content-Transfer-Encoding: 8bit\n" | ||
25 | "X-Generator: KBabel 1.9.1\n" | ||
26 | "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" | ||
27 | "10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" | ||
28 | |||
29 | #. Type: boolean | ||
30 | #. Description | ||
31 | #: ../openssh-server.templates.master:1001 | ||
32 | msgid "Generate a new configuration file for OpenSSH?" | ||
33 | msgstr "Создать новый файл наÑтроек Ð´Ð»Ñ OpenSSH?" | ||
34 | |||
35 | #. Type: boolean | ||
36 | #. Description | ||
37 | #: ../openssh-server.templates.master:1001 | ||
38 | msgid "" | ||
39 | "This version of OpenSSH has a considerably changed configuration file from " | ||
40 | "the version shipped in Debian 'Potato', which you appear to be upgrading " | ||
41 | "from. This package can now generate a new configuration file (/etc/ssh/sshd." | ||
42 | "config), which will work with the new server version, but will not contain " | ||
43 | "any customizations you made with the old version." | ||
44 | msgstr "" | ||
45 | "Файл наÑтроек Ñтой верÑии OpenSSH значительно отличаетÑÑ Ð¾Ñ‚ файла верÑии, " | ||
46 | "ÐºÐ¾Ñ‚Ð¾Ñ€Ð°Ñ Ð¿Ð¾ÑтавлÑлаÑÑŒ Ñ Debian 'Potato', и которую вы, кажетÑÑ, обновлÑете. " | ||
47 | "Ðтот пакет может ÑÐµÐ¹Ñ‡Ð°Ñ Ñоздать новый файл наÑтроек (/etc/ssh/sshd.config), " | ||
48 | "который будет работать Ñ Ñервером новой верÑии, но не будет Ñодержать " | ||
49 | "наÑтроек, которые вы Ñделали в Ñтарой верÑии." | ||
50 | |||
51 | #. Type: boolean | ||
52 | #. Description | ||
53 | #: ../openssh-server.templates.master:1001 | ||
54 | msgid "" | ||
55 | "Please note that this new configuration file will set the value of " | ||
56 | "'PermitRootLogin' to 'yes' (meaning that anyone knowing the root password " | ||
57 | "can ssh directly in as root). Please read the README.Debian file for more " | ||
58 | "details about this design choice." | ||
59 | msgstr "" | ||
60 | "Обратите внимание, что Ñтот новый файл наÑтроек уÑтановит значение параметра " | ||
61 | "'PermitRootLogin' в 'yes' (Ñто означает, что каждый знающий пароль " | ||
62 | "ÑÑƒÐ¿ÐµÑ€Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð¼Ð¾Ð¶ÐµÑ‚ войти в ÑиÑтему по ssh как Ñуперпользователь). " | ||
63 | "ПожалуйÑта, прочтите файл README.Debian Ð´Ð»Ñ Ñ€Ð°Ð·ÑŠÑÑÐ½ÐµÐ½Ð¸Ñ Ð´ÐµÑ‚Ð°Ð»ÐµÐ¹ Ñтого выбора." | ||
64 | |||
65 | #. Type: boolean | ||
66 | #. Description | ||
67 | #: ../openssh-server.templates.master:1001 | ||
68 | msgid "" | ||
69 | "It is strongly recommended that you choose to generate a new configuration " | ||
70 | "file now." | ||
71 | msgstr "" | ||
72 | "ÐаÑтоÑтельно рекомендуетÑÑ Ð²Ñ‹Ð±Ñ€Ð°Ñ‚ÑŒ ÑÐµÐ¹Ñ‡Ð°Ñ Ñоздание нового файла наÑтроек." | ||
73 | |||
74 | #. Type: boolean | ||
75 | #. Description | ||
76 | #: ../openssh-server.templates.master:2001 | ||
77 | msgid "Do you want to risk killing active SSH sessions?" | ||
78 | msgstr "Ð’Ñ‹ хотите пойти на риÑк потерÑÑ‚ÑŒ активные SSH ÑоединениÑ?" | ||
79 | |||
80 | #. Type: boolean | ||
81 | #. Description | ||
82 | #: ../openssh-server.templates.master:2001 | ||
83 | msgid "" | ||
84 | "The currently installed version of /etc/init.d/ssh is likely to kill all " | ||
85 | "running sshd instances. If you are doing this upgrade via an SSH session, " | ||
86 | "you're likely to be disconnected and leave the upgrade procedure unfinished." | ||
87 | msgstr "" | ||
88 | "УÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ð°Ñ Ð² наÑтоÑщее Ð²Ñ€ÐµÐ¼Ñ Ð²ÐµÑ€ÑÐ¸Ñ /etc/init.d/ssh, вероÑтно, уничтожит " | ||
89 | "вÑе запущенные ÑкземплÑры sshd. ЕÑли вы выполнÑете Ñто обновление через SSH " | ||
90 | "Ñоединение, то Ñкорее вÑего вы будете отключены и процедура Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ " | ||
91 | "оÑтанетÑÑ Ð½Ðµ завершенной." | ||
92 | |||
93 | #. Type: boolean | ||
94 | #. Description | ||
95 | #: ../openssh-server.templates.master:2001 | ||
96 | msgid "" | ||
97 | "This can be fixed by manually adding \"--pidfile /var/run/sshd.pid\" to the " | ||
98 | "start-stop-daemon line in the stop section of the file." | ||
99 | msgstr "" | ||
100 | "Ðто может быть иÑправлено вручную добавлением \"--pidfile /var/run/sshd.pid" | ||
101 | "\" в Ñтроку start-stop-daemon в разделе stop Ñтого файла." | ||
102 | |||
103 | #. Type: note | ||
104 | #. Description | ||
105 | #: ../openssh-server.templates.master:3001 | ||
106 | msgid "New host key mandatory" | ||
107 | msgstr "Ðеобходим новый хоÑÑ‚-ключ" | ||
108 | |||
109 | #. Type: note | ||
110 | #. Description | ||
111 | #: ../openssh-server.templates.master:3001 | ||
112 | msgid "" | ||
113 | "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " | ||
114 | "algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " | ||
115 | "utility from the old (non-free) SSH installation does not appear to be " | ||
116 | "available." | ||
117 | msgstr "" | ||
118 | "Текущий хоÑÑ‚-ключ, /etc/ssh/ssh_host_key, зашифрован алгоритмом IDEA. " | ||
119 | "OpenSSH не может работать Ñ Ñтим файлом хоÑÑ‚-ключа, и утилита ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ ssh-" | ||
120 | "ключа (ssh-keygen) из прежней (не Ñвободной) инÑталлÑции SSH, кажетÑÑ, " | ||
121 | "недоÑтупна." | ||
122 | |||
123 | #. Type: note | ||
124 | #. Description | ||
125 | #: ../openssh-server.templates.master:3001 | ||
126 | msgid "You need to manually generate a new host key." | ||
127 | msgstr "Вам нужно вручную Ñоздать новый хоÑÑ‚-ключ." | ||
128 | |||
129 | #. Type: boolean | ||
130 | #. Description | ||
131 | #: ../openssh-server.templates.master:4001 | ||
132 | msgid "Disable challenge-response authentication?" | ||
133 | msgstr "Отключить аутентификацию запроÑ-ответ?" | ||
134 | |||
135 | #. Type: boolean | ||
136 | #. Description | ||
137 | #: ../openssh-server.templates.master:4001 | ||
138 | msgid "" | ||
139 | "Password authentication appears to be disabled in the current OpenSSH server " | ||
140 | "configuration. In order to prevent users from logging in using passwords " | ||
141 | "(perhaps using only public key authentication instead) with recent versions " | ||
142 | "of OpenSSH, you must disable challenge-response authentication, or else " | ||
143 | "ensure that your PAM configuration does not allow Unix password file " | ||
144 | "authentication." | ||
145 | msgstr "" | ||
146 | "ÐŸÐ°Ñ€Ð¾Ð»ÑŒÐ½Ð°Ñ Ð°ÑƒÑ‚ÐµÐ½Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ†Ð¸Ñ, кажетÑÑ, отключена в текущей наÑтройке Ñервера " | ||
147 | "OpenSSH. Чтобы запретить пользователÑм вход Ñ Ð¸Ñпользованием паролей " | ||
148 | "(возможно, иÑпользовав вмеÑто Ñтого только аутентификацию по публичному " | ||
149 | "ключу) в новых верÑиÑÑ… OpenSSH, вы должны отключить аутентификацию запроÑ-" | ||
150 | "ответ, либо убедитьÑÑ, что ваша наÑтройка PAM не разрешает аутентификацию по " | ||
151 | "файлу паролей Unix." | ||
152 | |||
153 | #. Type: boolean | ||
154 | #. Description | ||
155 | #: ../openssh-server.templates.master:4001 | ||
156 | msgid "" | ||
157 | "If you disable challenge-response authentication, then users will not be " | ||
158 | "able to log in using passwords. If you leave it enabled (the default " | ||
159 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
160 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
161 | msgstr "" | ||
162 | "ЕÑли вы запретите аутентификацию запроÑ-ответ, пользователи не Ñмогут войти " | ||
163 | "Ñ Ð¸Ñпользованием паролей. ЕÑли вы оÑтавите её разрешенной (ответ по " | ||
164 | "умолчанию), то параметр 'PasswordAuthentication no' не будет иметь Ñилы, до " | ||
165 | "тех пор, пока вы также не откорректируете наÑтройки PAM в /etc/pam.d/ssh." | ||
diff --git a/debian/po/sk.po b/debian/po/sk.po new file mode 100644 index 000000000..5cd4eaace --- /dev/null +++ b/debian/po/sk.po | |||
@@ -0,0 +1,90 @@ | |||
1 | msgid "" | ||
2 | msgstr "" | ||
3 | "Project-Id-Version: openssh 1_4.6p1-5\n" | ||
4 | "Report-Msgid-Bugs-To: matthew@debian.org\n" | ||
5 | "POT-Creation-Date: 2007-04-24 16:48+0200\n" | ||
6 | "PO-Revision-Date: 2007-09-10 22:15+0100\n" | ||
7 | "Last-Translator: Ivan Masár <helix84@centrum.sk>\n" | ||
8 | "Language-Team: Slovak <sk-i18n@lists.linux.sk>\n" | ||
9 | "MIME-Version: 1.0\n" | ||
10 | "Content-Type: text/plain; charset=utf-8\n" | ||
11 | "Content-Transfer-Encoding: 8bit\n" | ||
12 | |||
13 | #. Type: boolean | ||
14 | #. Description | ||
15 | #: ../openssh-server.templates.master:2001 | ||
16 | msgid "Generate a new configuration file for OpenSSH?" | ||
17 | msgstr "VytvoriÅ¥ nový konfiguraÄný súbor pre OpenSSH?" | ||
18 | |||
19 | #. Type: boolean | ||
20 | #. Description | ||
21 | #: ../openssh-server.templates.master:2001 | ||
22 | msgid "This version of OpenSSH has a considerably changed configuration file from the version shipped in Debian 'Potato', which you appear to be upgrading from. This package can now generate a new configuration file (/etc/ssh/sshd.config), which will work with the new server version, but will not contain any customizations you made with the old version." | ||
23 | msgstr "Táto verzia OpenSSH má podstatne zmenený konfiguraÄný súbor v porovnanà s versiou, ktorá sa dodávala s Debian „Potato“, z ktorej, zdá sa, aktualizujete. Tento balÃk teraz môže vytvoriÅ¥ nový konfiguraÄný súbor (/etc/ssh/sshd.config), ktorý bude fungovaÅ¥ s novou verziou servera, ale nebude obsahovaÅ¥ akékoľvek zmeny, ktoré ste urobili v starej verzii." | ||
24 | |||
25 | #. Type: boolean | ||
26 | #. Description | ||
27 | #: ../openssh-server.templates.master:2001 | ||
28 | msgid "Please note that this new configuration file will set the value of 'PermitRootLogin' to 'yes' (meaning that anyone knowing the root password can ssh directly in as root). Please read the README.Debian file for more details about this design choice." | ||
29 | msgstr "ProsÃm, majte na pamäti, že tento nový konfiguraÄný súbor nastavà hodnotu „'PermitRootLogin“ na „áno“ (Äo znamená, že každý, kto pozná heslo úÄtu root, sa bude môcÅ¥ pomocou ssh prihlásiÅ¥ priamo ako root). ProsÃm, preÄÃtajte si podrobnosti o tejto voľbe pri návrhu v súbore README.Debian." | ||
30 | |||
31 | #. Type: boolean | ||
32 | #. Description | ||
33 | #: ../openssh-server.templates.master:2001 | ||
34 | msgid "It is strongly recommended that you choose to generate a new configuration file now." | ||
35 | msgstr "Silne sa odporúÄa, aby ste teraz zvolili vytvorenie nového konfiguraÄného súboru." | ||
36 | |||
37 | #. Type: boolean | ||
38 | #. Description | ||
39 | #: ../openssh-server.templates.master:3001 | ||
40 | msgid "Do you want to risk killing active SSH sessions?" | ||
41 | msgstr "Chcete riskovaÅ¥ zruÅ¡enie aktÃvnych SSH reláciÃ?" | ||
42 | |||
43 | #. Type: boolean | ||
44 | #. Description | ||
45 | #: ../openssh-server.templates.master:3001 | ||
46 | msgid "The currently installed version of /etc/init.d/ssh is likely to kill all running sshd instances. If you are doing this upgrade via an SSH session, you're likely to be disconnected and leave the upgrade procedure unfinished." | ||
47 | msgstr "Momentálne nainÅ¡talovaná verzia /etc/init.d/ssh pravdepodobne ukonÄà vÅ¡etky prebiehajúce inÅ¡tancie sshd. Ak túto aktualizáciu vykonávate cez reláciu SSH pravdepodobne budete odpojený a aktualizácia zostane nedokonÄená." | ||
48 | |||
49 | #. Type: boolean | ||
50 | #. Description | ||
51 | #: ../openssh-server.templates.master:3001 | ||
52 | msgid "This can be fixed by manually adding \"--pidfile /var/run/sshd.pid\" to the start-stop-daemon line in the stop section of the file." | ||
53 | msgstr "Toto je možné manuálne napraviť tým, že pridáte „--pidfile /var/run/sshd.pid“ do stop sekcie súboru start-stop-daemon." | ||
54 | |||
55 | #. Type: note | ||
56 | #. Description | ||
57 | #: ../openssh-server.templates.master:4001 | ||
58 | msgid "New host key mandatory" | ||
59 | msgstr "Nový kÄ¾ÃºÄ hostiteľa je povinný" | ||
60 | |||
61 | #. Type: note | ||
62 | #. Description | ||
63 | #: ../openssh-server.templates.master:4001 | ||
64 | msgid "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA algorithm. OpenSSH can not handle this host key file, and the ssh-keygen utility from the old (non-free) SSH installation does not appear to be available." | ||
65 | msgstr "Aktuálny kÄ¾ÃºÄ hostiteľa v /etc/ssh/ssh_host_key je kryptovaný algoritmom IDEA. OpenSSH nemôže pracovaÅ¥ s týmto súborom s kľúÄom hostiteľa a nástroj ssh-keygen zo starej (neslobodnej) inÅ¡talácie SSH nie je dostupný." | ||
66 | |||
67 | #. Type: note | ||
68 | #. Description | ||
69 | #: ../openssh-server.templates.master:4001 | ||
70 | msgid "You need to manually generate a new host key." | ||
71 | msgstr "MusÃte ruÄne vygenerovaÅ¥ nový kÄ¾ÃºÄ hostiteľa." | ||
72 | |||
73 | #. Type: boolean | ||
74 | #. Description | ||
75 | #: ../openssh-server.templates.master:5001 | ||
76 | msgid "Disable challenge-response authentication?" | ||
77 | msgstr "Vypnúť autentifikáciu výzva-odpoveÄ?" | ||
78 | |||
79 | #. Type: boolean | ||
80 | #. Description | ||
81 | #: ../openssh-server.templates.master:5001 | ||
82 | msgid "Password authentication appears to be disabled in the current OpenSSH server configuration. In order to prevent users from logging in using passwords (perhaps using only public key authentication instead) with recent versions of OpenSSH, you must disable challenge-response authentication, or else ensure that your PAM configuration does not allow Unix password file authentication." | ||
83 | msgstr "Zdá sa, že autentifikácia pomocou hesla je v aktuálnej konfigurácii OpenSSH servera vypnutá. Aby ste zabránili použÃvateľom prihlasovaÅ¥ sa pomocou hesiel (snÃ¡Ä iba použitÃm autentifikácie svojÃm verejným kľúÄom) pri novÅ¡Ãch verziách OpenSSH musÃte vypnúť autentifikáciu výzva-odpoveÄ alebo sa inak uistiÅ¥, že vaÅ¡a konfigurácia PAM neumožňuje autentifikáciu pomocu unixového súboru s heslami." | ||
84 | |||
85 | #. Type: boolean | ||
86 | #. Description | ||
87 | #: ../openssh-server.templates.master:5001 | ||
88 | msgid "If you disable challenge-response authentication, then users will not be able to log in using passwords. If you leave it enabled (the default answer), then the 'PasswordAuthentication no' option will have no useful effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
89 | msgstr "Ak vypnete autentifikáciu výzva-odpoveÄ, použÃvatelia sa nebudú môcÅ¥ prihlasovaÅ¥ pomocou hesiel. Ak ju necháte zapnutú (Å¡tandardná odpoveÄ), potom nebude maÅ¥ voľba „PasswordAuthentication no“ žiadny úÄinok v prÃpade, že tiež vhodne nenastavÃte vaÅ¡u konfiguráciu PAM v /etc/pam.d/ssh." | ||
90 | |||
diff --git a/debian/po/sv.po b/debian/po/sv.po new file mode 100644 index 000000000..6afd25016 --- /dev/null +++ b/debian/po/sv.po | |||
@@ -0,0 +1,193 @@ | |||
1 | # Translators, if you are not familiar with the PO format, gettext | ||
2 | # documentation is worth reading, especially sections dedicated to | ||
3 | # this format, e.g. by running: | ||
4 | # info -n '(gettext)PO Files' | ||
5 | # info -n '(gettext)Header Entry' | ||
6 | # Some information specific to po-debconf are available at | ||
7 | # /usr/share/doc/po-debconf/README-trans | ||
8 | # or http://www.debian.org/intl/l10n/po-debconf/README-trans | ||
9 | # Developers do not need to manually edit POT or PO files. | ||
10 | # , fuzzy | ||
11 | # | ||
12 | # | ||
13 | msgid "" | ||
14 | msgstr "" | ||
15 | "Project-Id-Version: openssh 1:4.3p2-1\n" | ||
16 | "Report-Msgid-Bugs-To: debian-ssh@lists.debian.org\n" | ||
17 | "POT-Creation-Date: 2007-08-19 15:36+0100\n" | ||
18 | "PO-Revision-Date: 2007-04-26 15:55+0100\n" | ||
19 | "Last-Translator: Daniel Nylander <po@danielnylander.se>\n" | ||
20 | "Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n" | ||
21 | "MIME-Version: 1.0\n" | ||
22 | "Content-Type: text/plain; charset=iso-8859-1\n" | ||
23 | "Content-Transfer-Encoding: 8bit\n" | ||
24 | |||
25 | #. Type: boolean | ||
26 | #. Description | ||
27 | #: ../openssh-server.templates.master:1001 | ||
28 | msgid "Generate a new configuration file for OpenSSH?" | ||
29 | msgstr "Generera en ny konfigurationsfil för OpenSSH?" | ||
30 | |||
31 | #. Type: boolean | ||
32 | #. Description | ||
33 | #: ../openssh-server.templates.master:1001 | ||
34 | msgid "" | ||
35 | "This version of OpenSSH has a considerably changed configuration file from " | ||
36 | "the version shipped in Debian 'Potato', which you appear to be upgrading " | ||
37 | "from. This package can now generate a new configuration file (/etc/ssh/sshd." | ||
38 | "config), which will work with the new server version, but will not contain " | ||
39 | "any customizations you made with the old version." | ||
40 | msgstr "" | ||
41 | "Denna version av OpenSSH har ändrat konfigurationsfilen ansenligt från den " | ||
42 | "version som skickades med i Debians \"Potato\"-utgåva som du verkar " | ||
43 | "uppgradera från. Detta paket kan nu generera en ny konfigurationsfil (/etc/" | ||
44 | "ssh/sshd.config) som kommer att fungera med den nya serverversionen men " | ||
45 | "kommer inte att innehålla några anpassningar som du gjorde med den gamla " | ||
46 | "versionen." | ||
47 | |||
48 | #. Type: boolean | ||
49 | #. Description | ||
50 | #: ../openssh-server.templates.master:1001 | ||
51 | msgid "" | ||
52 | "Please note that this new configuration file will set the value of " | ||
53 | "'PermitRootLogin' to 'yes' (meaning that anyone knowing the root password " | ||
54 | "can ssh directly in as root). Please read the README.Debian file for more " | ||
55 | "details about this design choice." | ||
56 | msgstr "" | ||
57 | "Observera att den nya konfigurationsfilen kommer att ställa in värdet för " | ||
58 | "\"PermitRootLogin\" till \"yes\" (vilket betyder att vem som helst som kan " | ||
59 | "root-lösenordet kan logga in direkt som root). Läs filen README.Debian för " | ||
60 | "mer information om det här designvalet." | ||
61 | |||
62 | #. Type: boolean | ||
63 | #. Description | ||
64 | #: ../openssh-server.templates.master:1001 | ||
65 | msgid "" | ||
66 | "It is strongly recommended that you choose to generate a new configuration " | ||
67 | "file now." | ||
68 | msgstr "" | ||
69 | "Det rekommenderas starkt att du väljer att generera en ny konfigurationsfil " | ||
70 | "nu." | ||
71 | |||
72 | #. Type: boolean | ||
73 | #. Description | ||
74 | #: ../openssh-server.templates.master:2001 | ||
75 | msgid "Do you want to risk killing active SSH sessions?" | ||
76 | msgstr "Vill du riskera att döda aktiva SSH-sessioner?" | ||
77 | |||
78 | #. Type: boolean | ||
79 | #. Description | ||
80 | #: ../openssh-server.templates.master:2001 | ||
81 | msgid "" | ||
82 | "The currently installed version of /etc/init.d/ssh is likely to kill all " | ||
83 | "running sshd instances. If you are doing this upgrade via an SSH session, " | ||
84 | "you're likely to be disconnected and leave the upgrade procedure unfinished." | ||
85 | msgstr "" | ||
86 | "Den för närvarande installerade versionen av /etc/init.d/ssh kommer " | ||
87 | "antagligen döda alla körande instanser av sshd. Om du gör denna " | ||
88 | "uppgradering via en SSH-session kommer du sannolikt att kopplas ner och " | ||
89 | "uppgraderingsprocessen lämnas ofärdig." | ||
90 | |||
91 | #. Type: boolean | ||
92 | #. Description | ||
93 | #: ../openssh-server.templates.master:2001 | ||
94 | msgid "" | ||
95 | "This can be fixed by manually adding \"--pidfile /var/run/sshd.pid\" to the " | ||
96 | "start-stop-daemon line in the stop section of the file." | ||
97 | msgstr "" | ||
98 | "Det här kan rättas till genom att manuellt lägga till \"--pidfile /var/run/" | ||
99 | "sshd.pid\" till raden \"start-stop-daemon\" i sektionen \"stop\" i filen." | ||
100 | |||
101 | #. Type: note | ||
102 | #. Description | ||
103 | #: ../openssh-server.templates.master:3001 | ||
104 | msgid "New host key mandatory" | ||
105 | msgstr "Ny värdnyckel är obligatorisk" | ||
106 | |||
107 | #. Type: note | ||
108 | #. Description | ||
109 | #: ../openssh-server.templates.master:3001 | ||
110 | msgid "" | ||
111 | "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " | ||
112 | "algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " | ||
113 | "utility from the old (non-free) SSH installation does not appear to be " | ||
114 | "available." | ||
115 | msgstr "" | ||
116 | "Den aktuella värdnyckel, i /etc/ssh/ssh_host_key, är krypterad med IDEA-" | ||
117 | "algoritmen. OpenSSH kan inte hantera den här värdnyckelfilen och verktyget " | ||
118 | "ssh-keygen från den gamla (ickefria) SSH-installationen verkar inte finnas " | ||
119 | "tillgänglig." | ||
120 | |||
121 | #. Type: note | ||
122 | #. Description | ||
123 | #: ../openssh-server.templates.master:3001 | ||
124 | msgid "You need to manually generate a new host key." | ||
125 | msgstr "Du behöver manuellt generera en ny värdnyckel." | ||
126 | |||
127 | #. Type: boolean | ||
128 | #. Description | ||
129 | #: ../openssh-server.templates.master:4001 | ||
130 | msgid "Disable challenge-response authentication?" | ||
131 | msgstr "Inaktivera challenge-response-autentisering?" | ||
132 | |||
133 | #. Type: boolean | ||
134 | #. Description | ||
135 | #: ../openssh-server.templates.master:4001 | ||
136 | msgid "" | ||
137 | "Password authentication appears to be disabled in the current OpenSSH server " | ||
138 | "configuration. In order to prevent users from logging in using passwords " | ||
139 | "(perhaps using only public key authentication instead) with recent versions " | ||
140 | "of OpenSSH, you must disable challenge-response authentication, or else " | ||
141 | "ensure that your PAM configuration does not allow Unix password file " | ||
142 | "authentication." | ||
143 | msgstr "" | ||
144 | "Lösenordsautentisering verkar vara inaktiverat i din aktuella konfiguration " | ||
145 | "av OpenSSH-servern. För att förhindra att användare loggar in med lösenord " | ||
146 | "(istället kanske endast använder publik nyckelautentisering) med senare " | ||
147 | "versioner av OpenSSH, måste du inaktivera challenge-response-autentisering " | ||
148 | "eller försäkra dig om att din PAM-konfiguration inte tillåter autentisering " | ||
149 | "via Unix lösenordsfil." | ||
150 | |||
151 | #. Type: boolean | ||
152 | #. Description | ||
153 | #: ../openssh-server.templates.master:4001 | ||
154 | msgid "" | ||
155 | "If you disable challenge-response authentication, then users will not be " | ||
156 | "able to log in using passwords. If you leave it enabled (the default " | ||
157 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
158 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
159 | msgstr "" | ||
160 | "Om du inaktiverar challenge-response-autentisering så kan användarna inte " | ||
161 | "logga in med lösenord. Om du lämnar det aktiverat (som är standard) så " | ||
162 | "kommer \"PasswordAuthentication no\" inte att ha någon effekt om du inte " | ||
163 | "justerar din PAM-konfiguration i /etc/pam.d/ssh." | ||
164 | |||
165 | #~ msgid "Warning: you must create a new host key" | ||
166 | #~ msgstr "Varning: du måste skapa en ny värdnyckel" | ||
167 | |||
168 | #~ msgid "Warning: telnetd is installed --- probably not a good idea" | ||
169 | #~ msgstr "Varning: telnetd är installerad --- detta är inte en bra ide" | ||
170 | |||
171 | #~ msgid "" | ||
172 | #~ "I'd advise you to either remove the telnetd package (if you don't " | ||
173 | #~ "actually need to offer telnet access) or install telnetd-ssl so that " | ||
174 | #~ "there is at least some chance that telnet sessions will not be sending " | ||
175 | #~ "unencrypted login/password and session information over the network." | ||
176 | #~ msgstr "" | ||
177 | #~ "Jag föreslår att du antingen tar bort paketet telnetd (om du inte " | ||
178 | #~ "faktiskt behöver erbjuda en telnet-tjänst) eller installera telnetd-ssl " | ||
179 | #~ "så att det i alla fall finns en liten chans att telnet-sessioner inte " | ||
180 | #~ "kommer att sända okrypterade login/lösenord och sessionsinformation över " | ||
181 | #~ "nätverket." | ||
182 | |||
183 | #~ msgid "Warning: rsh-server is installed --- probably not a good idea" | ||
184 | #~ msgstr "Varning: rsh-server är installerad --- kanske inte en bra ide" | ||
185 | |||
186 | #~ msgid "" | ||
187 | #~ "having rsh-server installed undermines the security that you were " | ||
188 | #~ "probably wanting to obtain by installing ssh. I'd advise you to remove " | ||
189 | #~ "that package." | ||
190 | #~ msgstr "" | ||
191 | #~ "att ha rsh-server installerad underbygger säkerheten som du säkerligen " | ||
192 | #~ "ville få genom att installera ssh. Jag föreslår att du tar bort det " | ||
193 | #~ "paketet." | ||
diff --git a/debian/po/ta.po b/debian/po/ta.po new file mode 100644 index 000000000..256ac3907 --- /dev/null +++ b/debian/po/ta.po | |||
@@ -0,0 +1,152 @@ | |||
1 | # translation of openssh.po to TAMIL | ||
2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER | ||
3 | # This file is distributed under the same license as the PACKAGE package. | ||
4 | # | ||
5 | # Dr.T.Vasudevan <agnihot3@gmail.com>, 2007. | ||
6 | msgid "" | ||
7 | msgstr "" | ||
8 | "Project-Id-Version: openssh\n" | ||
9 | "Report-Msgid-Bugs-To: debian-ssh@lists.debian.org\n" | ||
10 | "POT-Creation-Date: 2007-08-19 15:36+0100\n" | ||
11 | "PO-Revision-Date: 2007-04-24 20:52+0530\n" | ||
12 | "Last-Translator: Dr.T.Vasudevan <agnihot3@gmail.com>\n" | ||
13 | "Language-Team: TAMIL <ubuntu-l10n-tam@lists.ubuntu.com>\n" | ||
14 | "MIME-Version: 1.0\n" | ||
15 | "Content-Type: text/plain; charset=UTF-8\n" | ||
16 | "Content-Transfer-Encoding: 8bit\n" | ||
17 | "X-Generator: KBabel 1.11.4\n" | ||
18 | |||
19 | #. Type: boolean | ||
20 | #. Description | ||
21 | #: ../openssh-server.templates.master:1001 | ||
22 | msgid "Generate a new configuration file for OpenSSH?" | ||
23 | msgstr "ஓபன௠எஸà¯à®Žà®¸à¯à®¹à¯†à®šà¯ கà¯à®•à¯ பà¯à®¤à®¿à®¯ வடிவமைபà¯à®ªà¯ கோபà¯à®ªà¯ˆ உரà¯à®µà®¾à®•à¯à®•à®µà®¾?" | ||
24 | |||
25 | #. Type: boolean | ||
26 | #. Description | ||
27 | #: ../openssh-server.templates.master:1001 | ||
28 | msgid "" | ||
29 | "This version of OpenSSH has a considerably changed configuration file from " | ||
30 | "the version shipped in Debian 'Potato', which you appear to be upgrading " | ||
31 | "from. This package can now generate a new configuration file (/etc/ssh/sshd." | ||
32 | "config), which will work with the new server version, but will not contain " | ||
33 | "any customizations you made with the old version." | ||
34 | msgstr "" | ||
35 | "இநà¯à®¤ பதிபà¯à®ªà¯ ஓபன௠எஸà¯à®Žà®¸à¯à®¹à¯†à®šà¯ நீஙà¯à®•à®³à¯ மேமà¯à®ªà®Ÿà¯à®¤à¯à®¤à¯à®®à¯ டெபியன௠பொடாடோவில௠அமைநà¯à®¤ பதிபà¯à®ªà¯ˆ " | ||
36 | "காடà¯à®Ÿà®¿à®²à¯à®®à¯ மிக மாறிய வடிவம௠உடையதà¯. இநà¯à®¤ பொதி இபà¯à®ªà¯‹à®¤à¯ பà¯à®¤à®¿à®¯ வடிவமைபà¯à®ªà¯ கோபà¯à®ªà¯ˆ " | ||
37 | "உரà¯à®µà®¾à®•à¯à®•à¯à®®à¯. (/etc/ssh/sshd.config). இத௠பà¯à®¤à®¿à®¯ சேவையக பதிபà¯à®ªà®¿à®²à¯ வேலை செயà¯à®¯à¯à®®à¯. " | ||
38 | "ஆனால௠நீஙà¯à®•à®³à¯ பழைய பதிபà¯à®ªà®¿à®²à¯ செயà¯à®¤ தனிபà¯à®ªà®Ÿà¯à®¤à¯à®¤à®²à¯ இயலாதà¯." | ||
39 | |||
40 | #. Type: boolean | ||
41 | #. Description | ||
42 | #: ../openssh-server.templates.master:1001 | ||
43 | msgid "" | ||
44 | "Please note that this new configuration file will set the value of " | ||
45 | "'PermitRootLogin' to 'yes' (meaning that anyone knowing the root password " | ||
46 | "can ssh directly in as root). Please read the README.Debian file for more " | ||
47 | "details about this design choice." | ||
48 | msgstr "" | ||
49 | "இநà¯à®¤ பà¯à®¤à®¿à®¯ வடிவமைபà¯à®ªà¯ கோபà¯à®ªà¯ 'PermitRootLogin மதிபà¯à®ªà¯ˆ ஆம௠என அமைகà¯à®•à¯à®®à¯ என அறியவà¯à®®à¯. " | ||
50 | "அதாவத௠ரூட௠கடவà¯à®šà¯à®šà¯Šà®²à¯ அறிநà¯à®¤ யாரà¯à®®à¯ ரூடà¯à®Ÿà®¾à®• ஓபன௠எஸà¯à®Žà®¸à¯à®¹à¯†à®šà¯ வழியே உளà¯à®¨à¯à®´à¯ˆà®¯à®²à®¾à®®à¯. இநà¯à®¤ " | ||
51 | "வடிவமைபà¯à®ªà¯ கà¯à®±à®¿à®¤à¯à®¤à¯ மேலà¯à®®à¯ README.Debian கோபà¯à®ªà®¿à®²à¯ காணவà¯à®®à¯." | ||
52 | |||
53 | #. Type: boolean | ||
54 | #. Description | ||
55 | #: ../openssh-server.templates.master:1001 | ||
56 | msgid "" | ||
57 | "It is strongly recommended that you choose to generate a new configuration " | ||
58 | "file now." | ||
59 | msgstr "" | ||
60 | "நீஙà¯à®•à®³à¯ இபà¯à®ªà¯‹à®¤à¯ பà¯à®¤à®¿à®¯ வடிவமைபà¯à®ªà¯ கோபà¯à®ªà¯ˆ உரà¯à®µà®¾à®•à¯à®• தேரà¯à®µà¯ செயà¯à®¯ பலமாக " | ||
61 | "பரிநà¯à®¤à¯à®°à¯ˆà®•à¯à®•à®ªà¯à®ªà®Ÿà¯à®•à®¿à®±à®¤à¯." | ||
62 | |||
63 | #. Type: boolean | ||
64 | #. Description | ||
65 | #: ../openssh-server.templates.master:2001 | ||
66 | msgid "Do you want to risk killing active SSH sessions?" | ||
67 | msgstr "" | ||
68 | "செயலில௠இரà¯à®•à¯à®•à¯à®®à¯ எஸà¯à®Žà®¸à¯à®¹à¯†à®šà¯ அமரà¯à®µà¯à®•à®³à¯ˆ செயல௠நீகà¯à®•à®®à¯ செயà¯à®µà®¤à¯ˆ அனà¯à®®à®¤à®¿à®•à¯à®• விரà¯à®®à¯à®ªà¯à®•à®¿à®±à¯€à®•à®³à®¾?" | ||
69 | |||
70 | #. Type: boolean | ||
71 | #. Description | ||
72 | #: ../openssh-server.templates.master:2001 | ||
73 | msgid "" | ||
74 | "The currently installed version of /etc/init.d/ssh is likely to kill all " | ||
75 | "running sshd instances. If you are doing this upgrade via an SSH session, " | ||
76 | "you're likely to be disconnected and leave the upgrade procedure unfinished." | ||
77 | msgstr "" | ||
78 | "இபà¯à®ªà¯‹à®¤à¯ நிறà¯à®µà®¿à®¯à¯à®³à¯à®³ /etc/init.d/ssh பதிபà¯à®ªà¯ எலà¯à®²à®¾ செயலில௠இரà¯à®•à¯à®•à¯à®®à¯ எஸà¯à®Žà®¸à¯à®¹à¯†à®šà¯ " | ||
79 | "அமரà¯à®µà¯à®•à®³à¯ˆ செயல௠நீகà¯à®•à®®à¯ செயà¯à®¯à¯à®®à¯. நீஙà¯à®•à®³à¯ இநà¯à®¤ மேமà¯à®ªà®Ÿà¯à®¤à¯à®¤à®²à¯ˆ எஸà¯à®Žà®¸à¯à®¹à¯†à®šà¯ அமரà¯à®µà¯ வழியாக செயà¯à®¤à¯ " | ||
80 | "கொணà¯à®Ÿà®¿à®°à¯à®¨à¯à®¤à®¾à®²à¯ வலை இணபà¯à®ªà¯ தà¯à®£à¯à®Ÿà®¿à®•à¯à®•à®ªà¯à®ªà®Ÿà¯à®Ÿà¯ மேமà¯à®ªà®Ÿà¯à®¤à¯à®¤à®²à¯ நிறைவà¯à®±à®¾à®¤à¯." | ||
81 | |||
82 | #. Type: boolean | ||
83 | #. Description | ||
84 | #: ../openssh-server.templates.master:2001 | ||
85 | msgid "" | ||
86 | "This can be fixed by manually adding \"--pidfile /var/run/sshd.pid\" to the " | ||
87 | "start-stop-daemon line in the stop section of the file." | ||
88 | msgstr "" | ||
89 | "இத௠கைமà¯à®±à¯ˆà®¯à®¾à®• கோபà¯à®ªà®¿à®©à¯ நிறà¯à®¤à¯à®¤à¯ பகà¯à®¤à®¿à®¯à®¿à®²à¯ ஆரமà¯à®ªà®¿-நிறà¯à®¤à¯à®¤à¯-கிஙà¯à®•à®°à®©à¯ வரியில௠\"--" | ||
90 | "pidfile /var/run/sshd.pid\" என சேரà¯à®ªà¯à®ªà®¤à®¾à®²à¯ சரி செயà¯à®¯à®ªà¯à®ªà®Ÿà¯à®®à¯." | ||
91 | |||
92 | #. Type: note | ||
93 | #. Description | ||
94 | #: ../openssh-server.templates.master:3001 | ||
95 | msgid "New host key mandatory" | ||
96 | msgstr "பà¯à®¤à®¿à®¯ பà¯à®°à®µà®²à®©à¯ விசை கடà¯à®Ÿà®¾à®¯à®®à®¾à®•à¯à®®à¯" | ||
97 | |||
98 | #. Type: note | ||
99 | #. Description | ||
100 | #: ../openssh-server.templates.master:3001 | ||
101 | msgid "" | ||
102 | "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " | ||
103 | "algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " | ||
104 | "utility from the old (non-free) SSH installation does not appear to be " | ||
105 | "available." | ||
106 | msgstr "" | ||
107 | "இபà¯à®ªà¯‹à®¤à¯ˆà®¯ /etc/ssh/ssh_host_key இல௠உளà¯à®³ பà¯à®°à®µà®²à®©à¯ விசை IDEA அலà¯à®•à®¾à®°à®¿à®¤à®¤à¯à®¤à®¿à®²à¯ கà¯à®±à®¿à®¯à¯€à®Ÿà¯ " | ||
108 | "செயà¯à®¯à®ªà¯à®ªà®Ÿà¯à®Ÿà®¤à¯. இநà¯à®¤ பà¯à®°à®µà®²à®©à¯ விசையை ஓபன௠எஸà¯à®Žà®¸à¯à®¹à¯†à®šà¯ கையாள இயலாதà¯. பழைய பதிபà¯à®ªà®¿à®²à®¿à®°à¯à®¨à¯à®¤à¯ " | ||
109 | "ssh-keygen பயனà¯à®ªà®¾à®Ÿà¯ இரà¯à®ªà¯à®ªà®¿à®²à¯ இலà¯à®²à¯ˆ." | ||
110 | |||
111 | #. Type: note | ||
112 | #. Description | ||
113 | #: ../openssh-server.templates.master:3001 | ||
114 | msgid "You need to manually generate a new host key." | ||
115 | msgstr "நீஙà¯à®•à®³à¯ கைமà¯à®±à¯ˆà®¯à®¾à®• பà¯à®¤à®¿à®¯ பà¯à®°à®µà®²à®©à¯ விசையை உரà¯à®µà®¾à®•à¯à®• வேணà¯à®Ÿà¯à®®à¯." | ||
116 | |||
117 | #. Type: boolean | ||
118 | #. Description | ||
119 | #: ../openssh-server.templates.master:4001 | ||
120 | msgid "Disable challenge-response authentication?" | ||
121 | msgstr "கேளà¯à®µà®¿ பதில௠உறà¯à®¤à®¿à®ªà¯à®ªà®Ÿà¯à®¤à¯à®¤à®²à¯ˆ செயலிழகà¯à®• செயà¯à®¯à®µà®¾?" | ||
122 | |||
123 | #. Type: boolean | ||
124 | #. Description | ||
125 | #: ../openssh-server.templates.master:4001 | ||
126 | msgid "" | ||
127 | "Password authentication appears to be disabled in the current OpenSSH server " | ||
128 | "configuration. In order to prevent users from logging in using passwords " | ||
129 | "(perhaps using only public key authentication instead) with recent versions " | ||
130 | "of OpenSSH, you must disable challenge-response authentication, or else " | ||
131 | "ensure that your PAM configuration does not allow Unix password file " | ||
132 | "authentication." | ||
133 | msgstr "" | ||
134 | "இபà¯à®ªà¯‹à®¤à¯ˆà®¯ ஓபன௠எஸà¯à®Žà®¸à¯à®¹à¯†à®šà¯ சேவையக வடிவமைபà¯à®ªà®¿à®²à¯ கடவà¯à®šà¯à®šà¯Šà®²à¯ உறà¯à®¤à®¿à®ªà¯à®ªà®Ÿà¯à®¤à¯à®¤à®²à¯ˆ செயலிழகà¯à®• " | ||
135 | "செயà¯à®¤à¯à®³à¯à®³à®¤à¯. (திறநà¯à®¤ விசையை பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤à®¿) பயனரà¯à®•à®³à¯ உளà¯à®¨à¯à®´à¯ˆà®µà®¤à¯ˆ தடà¯à®•à¯à®• சமீபதà¯à®¤à®¿à®¯ ஓபன௠" | ||
136 | "எஸà¯à®Žà®¸à¯à®¹à¯†à®šà¯ பதிபà¯à®ªà¯à®•à®³à®¿à®²à¯ நீஙà¯à®•à®³à¯ கேளà¯à®µà®¿ பதில௠உறà¯à®¤à®¿à®ªà¯à®ªà®Ÿà¯à®¤à¯à®¤à®²à¯ˆ செயலிழகà¯à®• செயà¯à®¯ வேணà¯à®Ÿà¯à®®à¯. அலà¯à®²à®¤à¯ " | ||
137 | "உஙà¯à®•à®³à¯ பாம௠வடிவமைபà¯à®ªà¯ யூனிகà¯à®¸à¯ கடவà¯à®šà¯à®šà¯Šà®²à¯ கோபà¯à®ªà¯ உறà¯à®¤à®¿à®ªà¯à®ªà®Ÿà¯à®¤à¯à®¤à®²à¯ˆ à®à®±à¯à®•à®¾à®¤à®µà®¾à®±à¯ அமைகà¯à®• " | ||
138 | "வேணà¯à®Ÿà¯à®®à¯." | ||
139 | |||
140 | #. Type: boolean | ||
141 | #. Description | ||
142 | #: ../openssh-server.templates.master:4001 | ||
143 | msgid "" | ||
144 | "If you disable challenge-response authentication, then users will not be " | ||
145 | "able to log in using passwords. If you leave it enabled (the default " | ||
146 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
147 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
148 | msgstr "" | ||
149 | "நீஙà¯à®•à®³à¯ கேளà¯à®µà®¿ பதில௠உறà¯à®¤à®¿à®ªà¯à®ªà®Ÿà¯à®¤à¯à®¤à®²à¯ˆ செயலிழகà¯à®• செயà¯à®¤à®¾à®²à¯ பயனரà¯à®•à®³à¯ கடவà¯à®šà¯à®šà¯Šà®±à¯à®•à®³à¯ˆ பயன௠படà¯à®¤à¯à®¤à®¿ " | ||
150 | "உள௠நà¯à®´à¯ˆà®¯ இயலாதà¯. அதை செயல௠படசà¯à®šà¯†à®¯à¯à®¤à®¾à®²à¯ (கடவà¯à®šà¯à®šà¯Šà®²à¯ உறà¯à®¤à®¿à®ªà¯à®ªà®Ÿà¯à®¤à¯à®¤à®²à¯ தேரà¯à®µà¯ இலà¯à®²à¯ˆ) " | ||
151 | "'PasswordAuthentication no' தேரà¯à®µà¯ /etc/pam.d/ssh இல௠பாம௠வடிவமைபà¯à®ªà¯ˆ சரி " | ||
152 | "செயà¯à®¤à®¾à®²à¯ ஒழிய பயன௠தராதà¯." | ||
diff --git a/debian/po/templates.pot b/debian/po/templates.pot new file mode 100644 index 000000000..0f9b18e3f --- /dev/null +++ b/debian/po/templates.pot | |||
@@ -0,0 +1,125 @@ | |||
1 | # SOME DESCRIPTIVE TITLE. | ||
2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER | ||
3 | # This file is distributed under the same license as the PACKAGE package. | ||
4 | # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. | ||
5 | # | ||
6 | #, fuzzy | ||
7 | msgid "" | ||
8 | msgstr "" | ||
9 | "Project-Id-Version: PACKAGE VERSION\n" | ||
10 | "Report-Msgid-Bugs-To: debian-ssh@lists.debian.org\n" | ||
11 | "POT-Creation-Date: 2007-08-19 15:36+0100\n" | ||
12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" | ||
13 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | ||
14 | "Language-Team: LANGUAGE <LL@li.org>\n" | ||
15 | "MIME-Version: 1.0\n" | ||
16 | "Content-Type: text/plain; charset=CHARSET\n" | ||
17 | "Content-Transfer-Encoding: 8bit\n" | ||
18 | |||
19 | #. Type: boolean | ||
20 | #. Description | ||
21 | #: ../openssh-server.templates.master:1001 | ||
22 | msgid "Generate a new configuration file for OpenSSH?" | ||
23 | msgstr "" | ||
24 | |||
25 | #. Type: boolean | ||
26 | #. Description | ||
27 | #: ../openssh-server.templates.master:1001 | ||
28 | msgid "" | ||
29 | "This version of OpenSSH has a considerably changed configuration file from " | ||
30 | "the version shipped in Debian 'Potato', which you appear to be upgrading " | ||
31 | "from. This package can now generate a new configuration file (/etc/ssh/sshd." | ||
32 | "config), which will work with the new server version, but will not contain " | ||
33 | "any customizations you made with the old version." | ||
34 | msgstr "" | ||
35 | |||
36 | #. Type: boolean | ||
37 | #. Description | ||
38 | #: ../openssh-server.templates.master:1001 | ||
39 | msgid "" | ||
40 | "Please note that this new configuration file will set the value of " | ||
41 | "'PermitRootLogin' to 'yes' (meaning that anyone knowing the root password " | ||
42 | "can ssh directly in as root). Please read the README.Debian file for more " | ||
43 | "details about this design choice." | ||
44 | msgstr "" | ||
45 | |||
46 | #. Type: boolean | ||
47 | #. Description | ||
48 | #: ../openssh-server.templates.master:1001 | ||
49 | msgid "" | ||
50 | "It is strongly recommended that you choose to generate a new configuration " | ||
51 | "file now." | ||
52 | msgstr "" | ||
53 | |||
54 | #. Type: boolean | ||
55 | #. Description | ||
56 | #: ../openssh-server.templates.master:2001 | ||
57 | msgid "Do you want to risk killing active SSH sessions?" | ||
58 | msgstr "" | ||
59 | |||
60 | #. Type: boolean | ||
61 | #. Description | ||
62 | #: ../openssh-server.templates.master:2001 | ||
63 | msgid "" | ||
64 | "The currently installed version of /etc/init.d/ssh is likely to kill all " | ||
65 | "running sshd instances. If you are doing this upgrade via an SSH session, " | ||
66 | "you're likely to be disconnected and leave the upgrade procedure unfinished." | ||
67 | msgstr "" | ||
68 | |||
69 | #. Type: boolean | ||
70 | #. Description | ||
71 | #: ../openssh-server.templates.master:2001 | ||
72 | msgid "" | ||
73 | "This can be fixed by manually adding \"--pidfile /var/run/sshd.pid\" to the " | ||
74 | "start-stop-daemon line in the stop section of the file." | ||
75 | msgstr "" | ||
76 | |||
77 | #. Type: note | ||
78 | #. Description | ||
79 | #: ../openssh-server.templates.master:3001 | ||
80 | msgid "New host key mandatory" | ||
81 | msgstr "" | ||
82 | |||
83 | #. Type: note | ||
84 | #. Description | ||
85 | #: ../openssh-server.templates.master:3001 | ||
86 | msgid "" | ||
87 | "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " | ||
88 | "algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " | ||
89 | "utility from the old (non-free) SSH installation does not appear to be " | ||
90 | "available." | ||
91 | msgstr "" | ||
92 | |||
93 | #. Type: note | ||
94 | #. Description | ||
95 | #: ../openssh-server.templates.master:3001 | ||
96 | msgid "You need to manually generate a new host key." | ||
97 | msgstr "" | ||
98 | |||
99 | #. Type: boolean | ||
100 | #. Description | ||
101 | #: ../openssh-server.templates.master:4001 | ||
102 | msgid "Disable challenge-response authentication?" | ||
103 | msgstr "" | ||
104 | |||
105 | #. Type: boolean | ||
106 | #. Description | ||
107 | #: ../openssh-server.templates.master:4001 | ||
108 | msgid "" | ||
109 | "Password authentication appears to be disabled in the current OpenSSH server " | ||
110 | "configuration. In order to prevent users from logging in using passwords " | ||
111 | "(perhaps using only public key authentication instead) with recent versions " | ||
112 | "of OpenSSH, you must disable challenge-response authentication, or else " | ||
113 | "ensure that your PAM configuration does not allow Unix password file " | ||
114 | "authentication." | ||
115 | msgstr "" | ||
116 | |||
117 | #. Type: boolean | ||
118 | #. Description | ||
119 | #: ../openssh-server.templates.master:4001 | ||
120 | msgid "" | ||
121 | "If you disable challenge-response authentication, then users will not be " | ||
122 | "able to log in using passwords. If you leave it enabled (the default " | ||
123 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
124 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
125 | msgstr "" | ||
diff --git a/debian/po/tr.po b/debian/po/tr.po new file mode 100644 index 000000000..89ba26a31 --- /dev/null +++ b/debian/po/tr.po | |||
@@ -0,0 +1,339 @@ | |||
1 | # Turkish translation of ssh. | ||
2 | # This file is distributed under the same license as the ssh package. | ||
3 | # Recai OktaÅŸ <roktas@omu.edu.tr>, 2004. | ||
4 | # | ||
5 | msgid "" | ||
6 | msgstr "" | ||
7 | "Project-Id-Version: ssh\n" | ||
8 | "Report-Msgid-Bugs-To: debian-ssh@lists.debian.org\n" | ||
9 | "POT-Creation-Date: 2007-08-19 15:36+0100\n" | ||
10 | "PO-Revision-Date: 2004-04-27 06:50+0300\n" | ||
11 | "Last-Translator: Recai OktaÅŸ <roktas@omu.edu.tr>\n" | ||
12 | "Language-Team: Turkish <debian-l10n-turkish@lists.debian.org>\n" | ||
13 | "MIME-Version: 1.0\n" | ||
14 | "Content-Type: text/plain; charset=UTF-8\n" | ||
15 | "Content-Transfer-Encoding: 8bit\n" | ||
16 | "Plural-Forms: nplurals=1; plural=0;\n" | ||
17 | |||
18 | #. Type: boolean | ||
19 | #. Description | ||
20 | #: ../openssh-server.templates.master:1001 | ||
21 | #, fuzzy | ||
22 | msgid "Generate a new configuration file for OpenSSH?" | ||
23 | msgstr "Yeni yapılandırma dosyası oluştur" | ||
24 | |||
25 | #. Type: boolean | ||
26 | #. Description | ||
27 | #: ../openssh-server.templates.master:1001 | ||
28 | #, fuzzy | ||
29 | msgid "" | ||
30 | "This version of OpenSSH has a considerably changed configuration file from " | ||
31 | "the version shipped in Debian 'Potato', which you appear to be upgrading " | ||
32 | "from. This package can now generate a new configuration file (/etc/ssh/sshd." | ||
33 | "config), which will work with the new server version, but will not contain " | ||
34 | "any customizations you made with the old version." | ||
35 | msgstr "" | ||
36 | "Debian 'Potato' dağıtımından yükseltme yaptığınız görünüyor. OpenSSH'ın bu " | ||
37 | "sürümü Debian 'Potato' ile birlikte gelen sürümden çok farklı bir " | ||
38 | "yapılandırma dosyası kullanmaktadır. Şimdi sizin için yeni bir yapılandırma " | ||
39 | "dosyası (/etc/ssh/sshd.config) üretebilirim. Bu dosya yeni sunucu sürümüyle " | ||
40 | "çalışacak, fakat eski sürümde yaptığınız özelleştirmeleri içermeyecektir." | ||
41 | |||
42 | #. Type: boolean | ||
43 | #. Description | ||
44 | #: ../openssh-server.templates.master:1001 | ||
45 | #, fuzzy | ||
46 | #| msgid "" | ||
47 | #| "Please note that this new configuration file will set the value of " | ||
48 | #| "'PermitRootLogin' to yes (meaning that anyone knowing the root password " | ||
49 | #| "can ssh directly in as root). It is the opinion of the maintainer that " | ||
50 | #| "this is the correct default (see README.Debian for more details), but you " | ||
51 | #| "can always edit sshd_config and set it to no if you wish." | ||
52 | msgid "" | ||
53 | "Please note that this new configuration file will set the value of " | ||
54 | "'PermitRootLogin' to 'yes' (meaning that anyone knowing the root password " | ||
55 | "can ssh directly in as root). Please read the README.Debian file for more " | ||
56 | "details about this design choice." | ||
57 | msgstr "" | ||
58 | "Yeni yapılandırma dosyasının 'PermitRootLogin' seçeneğini 'yes' olarak " | ||
59 | "ayarlayacağını (yani root parolasını bilen herhangi birisinin ssh ile " | ||
60 | "doğrudan sisteme girebileceğini) unutmayın. Öntanımlı ayarın böyle olması " | ||
61 | "gerektiği paket geliştiricisinin kanaatidir (ayrıntılar için README.Debian " | ||
62 | "dosyasını okuyun). Aksi kanaate sahipseniz sshd_config dosyasını " | ||
63 | "düzenleyerek bu seçeneği 'no' olarak ayarlama imkânınız her zaman vardır." | ||
64 | |||
65 | #. Type: boolean | ||
66 | #. Description | ||
67 | #: ../openssh-server.templates.master:1001 | ||
68 | #, fuzzy | ||
69 | msgid "" | ||
70 | "It is strongly recommended that you choose to generate a new configuration " | ||
71 | "file now." | ||
72 | msgstr "" | ||
73 | "Yeni bir yapılandırma dosyası üretmeme izin vermeniz kuvvetle tavsiye edilir." | ||
74 | |||
75 | #. Type: boolean | ||
76 | #. Description | ||
77 | #: ../openssh-server.templates.master:2001 | ||
78 | #, fuzzy | ||
79 | #| msgid "Do you want to continue (and risk killing active ssh sessions)?" | ||
80 | msgid "Do you want to risk killing active SSH sessions?" | ||
81 | msgstr "" | ||
82 | "Devam etmek istiyor musunuz? (Etkin ssh oturumlarının öldürülmesi riski var.)" | ||
83 | |||
84 | #. Type: boolean | ||
85 | #. Description | ||
86 | #: ../openssh-server.templates.master:2001 | ||
87 | #, fuzzy | ||
88 | #| msgid "" | ||
89 | #| "The version of /etc/init.d/ssh that you have installed, is likely to kill " | ||
90 | #| "all running sshd instances. If you are doing this upgrade via an ssh " | ||
91 | #| "session, that would be a Bad Thing(tm)." | ||
92 | msgid "" | ||
93 | "The currently installed version of /etc/init.d/ssh is likely to kill all " | ||
94 | "running sshd instances. If you are doing this upgrade via an SSH session, " | ||
95 | "you're likely to be disconnected and leave the upgrade procedure unfinished." | ||
96 | msgstr "" | ||
97 | "Kurmuş olduğunuz /etc/init.d/ssh sürümü büyük olasılıkla, çalışıyor olan tüm " | ||
98 | "sshd süreçlerini öldürür. Bu yükseltmeyi bir ssh oturumu üzerinden " | ||
99 | "yapıyorsanız bu gerçekten Berbat bir Şey olacaktır." | ||
100 | |||
101 | #. Type: boolean | ||
102 | #. Description | ||
103 | #: ../openssh-server.templates.master:2001 | ||
104 | #, fuzzy | ||
105 | #| msgid "" | ||
106 | #| "You can fix this by adding \"--pidfile /var/run/sshd.pid\" to the start-" | ||
107 | #| "stop-daemon line in the stop section of the file." | ||
108 | msgid "" | ||
109 | "This can be fixed by manually adding \"--pidfile /var/run/sshd.pid\" to the " | ||
110 | "start-stop-daemon line in the stop section of the file." | ||
111 | msgstr "" | ||
112 | "Bu sorunu dosyanın stop bölümündeki start-stop-daemon satırına \"--pidfile /" | ||
113 | "var/run/sshd.pid\" ekleyerek düzeltebilirsiniz." | ||
114 | |||
115 | #. Type: note | ||
116 | #. Description | ||
117 | #: ../openssh-server.templates.master:3001 | ||
118 | msgid "New host key mandatory" | ||
119 | msgstr "" | ||
120 | |||
121 | #. Type: note | ||
122 | #. Description | ||
123 | #: ../openssh-server.templates.master:3001 | ||
124 | #, fuzzy | ||
125 | msgid "" | ||
126 | "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " | ||
127 | "algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " | ||
128 | "utility from the old (non-free) SSH installation does not appear to be " | ||
129 | "available." | ||
130 | msgstr "" | ||
131 | "IDEA ile şifrelenmiş eski bir /ect/ssh/ssh_host_key dosyanız var. OpenSSH bu " | ||
132 | "anahtar dosyasını yönetemez. Eski (özgür olmayan) SSH kurulumuna ait ssh-" | ||
133 | "keygen aracını da bulamıyorum." | ||
134 | |||
135 | #. Type: note | ||
136 | #. Description | ||
137 | #: ../openssh-server.templates.master:3001 | ||
138 | #, fuzzy | ||
139 | #| msgid "You will need to generate a new host key." | ||
140 | msgid "You need to manually generate a new host key." | ||
141 | msgstr "Yeni bir makine anahtarı oluşturmanız gerekiyor." | ||
142 | |||
143 | #. Type: boolean | ||
144 | #. Description | ||
145 | #: ../openssh-server.templates.master:4001 | ||
146 | msgid "Disable challenge-response authentication?" | ||
147 | msgstr "" | ||
148 | |||
149 | #. Type: boolean | ||
150 | #. Description | ||
151 | #: ../openssh-server.templates.master:4001 | ||
152 | msgid "" | ||
153 | "Password authentication appears to be disabled in the current OpenSSH server " | ||
154 | "configuration. In order to prevent users from logging in using passwords " | ||
155 | "(perhaps using only public key authentication instead) with recent versions " | ||
156 | "of OpenSSH, you must disable challenge-response authentication, or else " | ||
157 | "ensure that your PAM configuration does not allow Unix password file " | ||
158 | "authentication." | ||
159 | msgstr "" | ||
160 | |||
161 | #. Type: boolean | ||
162 | #. Description | ||
163 | #: ../openssh-server.templates.master:4001 | ||
164 | msgid "" | ||
165 | "If you disable challenge-response authentication, then users will not be " | ||
166 | "able to log in using passwords. If you leave it enabled (the default " | ||
167 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
168 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
169 | msgstr "" | ||
170 | |||
171 | #~ msgid "Warning: you must create a new host key" | ||
172 | #~ msgstr "Uyarı: yeni bir makine anahtarı oluşturmalısınız" | ||
173 | |||
174 | #~ msgid "Warning: telnetd is installed --- probably not a good idea" | ||
175 | #~ msgstr "Uyarı: telnetd kurulmuş --- bu muhtemelen iyi bir fikir değil" | ||
176 | |||
177 | #~ msgid "" | ||
178 | #~ "I'd advise you to either remove the telnetd package (if you don't " | ||
179 | #~ "actually need to offer telnet access) or install telnetd-ssl so that " | ||
180 | #~ "there is at least some chance that telnet sessions will not be sending " | ||
181 | #~ "unencrypted login/password and session information over the network." | ||
182 | #~ msgstr "" | ||
183 | #~ "Telnetd paketini (eğer gerçekten telnet erişimi sunmak gibi bir " | ||
184 | #~ "zorunluluğunuz yoksa) kaldırmanızı veya en azından, telnet oturumlarında " | ||
185 | #~ "şifrelenmemiş giriş/parola ve oturum bilgilerinin ağ üzerinden " | ||
186 | #~ "gönderilmemesi olanağını sunan telnetd-ssl paketini kurmanızı öneririm." | ||
187 | |||
188 | #~ msgid "Warning: rsh-server is installed --- probably not a good idea" | ||
189 | #~ msgstr "Uyarı: rsh-server kurulmuş --- bu muhtemelen iyi bir fikir değil" | ||
190 | |||
191 | #~ msgid "" | ||
192 | #~ "having rsh-server installed undermines the security that you were " | ||
193 | #~ "probably wanting to obtain by installing ssh. I'd advise you to remove " | ||
194 | #~ "that package." | ||
195 | #~ msgstr "" | ||
196 | #~ "rsh-server'ın kurulu durumda olması muhtemelen ssh'ı kurmakla elde " | ||
197 | #~ "edilmesini istediğiniz güvenliği gölgeliyor. Bu paketi kaldırmanızı " | ||
198 | #~ "öneririm." | ||
199 | |||
200 | #~ msgid "Do you want ssh-keysign to be installed SUID root?" | ||
201 | #~ msgstr "" | ||
202 | #~ "ssh-keysign'ın root haklarıyla kurulmasını (SUID root) ister misiniz?" | ||
203 | |||
204 | #~ msgid "" | ||
205 | #~ "You have the option of installing the ssh-keysign helper with the SUID " | ||
206 | #~ "bit set." | ||
207 | #~ msgstr "" | ||
208 | #~ "ssh-keysign yardımcı aracının SUID bit'i etkinleştirilerek kurulması " | ||
209 | #~ "seçeneğine sahipsiniz." | ||
210 | |||
211 | #~ msgid "" | ||
212 | #~ "If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 " | ||
213 | #~ "host-based authentication." | ||
214 | #~ msgstr "" | ||
215 | #~ "Eğer ssh-keysign'ı SUID yaparsanız, SSH'ın makine tabanlı Protokol 2 " | ||
216 | #~ "yetkilendirmesini kullanabileceksiniz." | ||
217 | |||
218 | #~ msgid "" | ||
219 | #~ "If in doubt, I suggest you install it with SUID. If it causes problems " | ||
220 | #~ "you can change your mind later by running: dpkg-reconfigure ssh" | ||
221 | #~ msgstr "" | ||
222 | #~ "Bu konuda şüpheliyseniz, size SUID'li kurulumu öneririm. Eğer bu " | ||
223 | #~ "sorunlara yol açarsa ileride fikrinizi değiştirmek için şu komutu " | ||
224 | #~ "çalıştırabilirsiniz: dpkg-reconfigure ssh" | ||
225 | |||
226 | #~ msgid "Allow SSH protocol 2 only" | ||
227 | #~ msgstr "Sadece SSH protokol 2'ye izin ver" | ||
228 | |||
229 | #~ msgid "" | ||
230 | #~ "This version of OpenSSH supports version 2 of the ssh protocol, which is " | ||
231 | #~ "much more secure. Disabling ssh 1 is encouraged, however this will slow " | ||
232 | #~ "things down on low end machines and might prevent older clients from " | ||
233 | #~ "connecting (the ssh client shipped with \"potato\" is affected)." | ||
234 | #~ msgstr "" | ||
235 | #~ "OpenSSH'ın bu sürümü ssh'ın çok daha güvenli olan sürüm 2 protokolünü " | ||
236 | #~ "destekler. Sürüm 1 protokolünün etkisizleştirilmesini teşvik ediyoruz, " | ||
237 | #~ "bununla beraber böyle yapılması halinde düşük düzeyli makinelerde " | ||
238 | #~ "işlemler yavaşlayacak ve eski sürüm ssh istemcilerinden (\"potato\" ile " | ||
239 | #~ "birlikte gelen ssh istemcisi gibi) bağlantı kurulamayacaktır." | ||
240 | |||
241 | #~ msgid "" | ||
242 | #~ "Also please note that keys used for protocol 1 are different so you will " | ||
243 | #~ "not be able to use them if you only allow protocol 2 connections." | ||
244 | #~ msgstr "" | ||
245 | #~ "Protokol 1 anahtarları çok farklı olduğundan, sadece protokol 2 " | ||
246 | #~ "bağlantılarına izin vermeniz halinde bu anahtarları kullanamayacağınızı " | ||
247 | #~ "da lütfen not edin." | ||
248 | |||
249 | #~ msgid "" | ||
250 | #~ "If you later change your mind about this setting, README.Debian has " | ||
251 | #~ "instructions on what to do to your sshd_config file." | ||
252 | #~ msgstr "" | ||
253 | #~ "Bu ayar hakkındaki fikriniz ileride değişirse, sshd_config dosyasında " | ||
254 | #~ "yapacağınız işlemlerle ilgili talimatları README.Debian dosyasında " | ||
255 | #~ "bulabilirsiniz." | ||
256 | |||
257 | #~ msgid "NOTE: Forwarding of X11 and Authorization disabled by default." | ||
258 | #~ msgstr "" | ||
259 | #~ "NOT: X11 yönlendirme ve yetkilendirmesi öntanımlı olarak " | ||
260 | #~ "etkisizleÅŸtirilmiÅŸtir." | ||
261 | |||
262 | #~ msgid "" | ||
263 | #~ "For security reasons, the Debian version of ssh has ForwardX11 and " | ||
264 | #~ "ForwardAgent set to ``off'' by default." | ||
265 | #~ msgstr "" | ||
266 | #~ "Güvenlik gerekçeleriyle ssh'ın Debian sürümünde ForwardX11 ve " | ||
267 | #~ "ForwardAgent seçenekleri öntanımlı ``off'' değerine ayarlıdır." | ||
268 | |||
269 | #~ msgid "" | ||
270 | #~ "You can enable it for servers you trust, either in one of the " | ||
271 | #~ "configuration files, or with the -X command line option." | ||
272 | #~ msgstr "" | ||
273 | #~ "Güvendiğiniz sunucular için bu seçeneği yapılandırma dosyalarından " | ||
274 | #~ "birinde veya -X komut satırı seçeneğiyle etkinleştirebilirsiniz." | ||
275 | |||
276 | #~ msgid "More details can be found in /usr/share/doc/ssh/README.Debian" | ||
277 | #~ msgstr "" | ||
278 | #~ "Daha ayrıntılı bilgi /usr/share/doc/ssh/README.Debian dosyasında " | ||
279 | #~ "bulunabilir." | ||
280 | |||
281 | #~ msgid "ssh2 keys merged in configuration files" | ||
282 | #~ msgstr "yapılandırma dosyalarındaki ssh2 anahtarları birleştirildi" | ||
283 | |||
284 | #~ msgid "" | ||
285 | #~ "As of version 3 OpenSSH no longer uses separate files for ssh1 and ssh2 " | ||
286 | #~ "keys. This means the authorized_keys2 and known_hosts2 files are no " | ||
287 | #~ "longer needed. They will still be read in order to maintain backwards " | ||
288 | #~ "compatibility" | ||
289 | #~ msgstr "" | ||
290 | #~ "Sürüm 3 itibarıyla OpenSSH artık, ssh1 ve ssh2 için ayrı yapılandırma " | ||
291 | #~ "dosyaları kullanmamaktadır. Bu, authorized_keys2 ve known_hosts2 " | ||
292 | #~ "dosyalarının artık gerekmediği anlamına gelir. Geriye doğru uyumluluğu " | ||
293 | #~ "korumak için bu dosyalar yine de okunacaktır." | ||
294 | |||
295 | #~ msgid "Do you want to run the sshd server?" | ||
296 | #~ msgstr "SSH sunucusu sshd'yi çalıştırmak istiyor musunuz?" | ||
297 | |||
298 | #~ msgid "This package contains both the ssh client, and the sshd server." | ||
299 | #~ msgstr "Bu paket hem ssh istemcisini hem de sshd sunucusunu içeriyor." | ||
300 | |||
301 | #~ msgid "" | ||
302 | #~ "Normally the sshd Secure Shell Server will be run to allow remote logins " | ||
303 | #~ "via ssh." | ||
304 | #~ msgstr "" | ||
305 | #~ "Güvenli Kabuk Sunucusu sshd, normalde ssh ile uzaktan girişlere izin " | ||
306 | #~ "vermek için çalıştırılacaktır." | ||
307 | |||
308 | #~ msgid "" | ||
309 | #~ "If you are only interested in using the ssh client for outbound " | ||
310 | #~ "connections on this machine, and don't want to log into it at all using " | ||
311 | #~ "ssh, then you can disable sshd here." | ||
312 | #~ msgstr "" | ||
313 | #~ "Eğer amacınız sadece bu makinedeki dış bağlantılar için ssh istemcisini " | ||
314 | #~ "kullanmak ise ve bu makineye ssh'la girmek gibi bir ÅŸeyi de " | ||
315 | #~ "istemiyorsanız, sshd sunucusunu bu adımda etkisizleştirebilirsiniz." | ||
316 | |||
317 | #~ msgid "Environment options on keys have been deprecated" | ||
318 | #~ msgstr "Anahtarlara ilişkin ortam seçenekleri geçerliliğini kaybetmiştir" | ||
319 | |||
320 | #~ msgid "" | ||
321 | #~ "This version of OpenSSH disables the environment option for public keys " | ||
322 | #~ "by default, in order to avoid certain attacks (for example, LD_PRELOAD). " | ||
323 | #~ "If you are using this option in an authorized_keys file, beware that the " | ||
324 | #~ "keys in question will no longer work until the option is removed." | ||
325 | #~ msgstr "" | ||
326 | #~ "OpenSSH'ın bu sürümü belirli atakları önlemek için (ör. LD_PRELOAD) ortak " | ||
327 | #~ "anahtarlara ait ortam seçeneklerini öntanımlı olarak etkisizleştirir. " | ||
328 | #~ "Eğer bu seçeneği bir authorized_keys dosyasında kullanıyorsanız, ilgili " | ||
329 | #~ "seçenek silininceye kadar bu anahtarın artık çalışmayacağını unutmayın." | ||
330 | |||
331 | #~ msgid "" | ||
332 | #~ "To re-enable this option, set \"PermitUserEnvironment yes\" in /etc/ssh/" | ||
333 | #~ "sshd_config after the upgrade is complete, taking note of the warning in " | ||
334 | #~ "the sshd_config(5) manual page." | ||
335 | #~ msgstr "" | ||
336 | #~ "Bu seçeneği tekrar etkinleştirmek için, sshd_config(5) kılavuz " | ||
337 | #~ "sayfasındaki uyarı notunu dikkate alarak, sshd yükseltmesi " | ||
338 | #~ "tamamlandığında /etc/ssh/ssh_config dosyasında \"PermitUserEnvironment yes" | ||
339 | #~ "\" satırını kullanın." | ||
diff --git a/debian/po/uk.po b/debian/po/uk.po new file mode 100644 index 000000000..10ec31bd9 --- /dev/null +++ b/debian/po/uk.po | |||
@@ -0,0 +1,358 @@ | |||
1 | # translation of openssh to Ukrainian | ||
2 | # | ||
3 | # Translators, if you are not familiar with the PO format, gettext | ||
4 | # documentation is worth reading, especially sections dedicated to | ||
5 | # this format, e.g. by running: | ||
6 | # info -n '(gettext)PO Files' | ||
7 | # info -n '(gettext)Header Entry' | ||
8 | # Some information specific to po-debconf are available at | ||
9 | # /usr/share/doc/po-debconf/README-trans | ||
10 | # or http://www.debian.org/intl/l10n/po-debconf/README-trans# | ||
11 | # Developers do not need to manually edit POT or PO files. | ||
12 | # Eugeniy Meshcheryakov <eugen@univ.kiev.ua>, 2005. | ||
13 | # | ||
14 | msgid "" | ||
15 | msgstr "" | ||
16 | "Project-Id-Version: openssh-uk\n" | ||
17 | "Report-Msgid-Bugs-To: debian-ssh@lists.debian.org\n" | ||
18 | "POT-Creation-Date: 2007-08-19 15:36+0100\n" | ||
19 | "PO-Revision-Date: 2005-03-28 22:28+0300\n" | ||
20 | "Last-Translator: Eugeniy Meshcheryakov <eugen@univ.kiev.ua>\n" | ||
21 | "Language-Team: Ukrainian\n" | ||
22 | "MIME-Version: 1.0\n" | ||
23 | "Content-Type: text/plain; charset=UTF-8\n" | ||
24 | "Content-Transfer-Encoding: 8bit\n" | ||
25 | "X-Generator: KBabel 1.9.1\n" | ||
26 | "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" | ||
27 | "10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" | ||
28 | |||
29 | #. Type: boolean | ||
30 | #. Description | ||
31 | #: ../openssh-server.templates.master:1001 | ||
32 | #, fuzzy | ||
33 | msgid "Generate a new configuration file for OpenSSH?" | ||
34 | msgstr "Створити новий файл налаштувань" | ||
35 | |||
36 | #. Type: boolean | ||
37 | #. Description | ||
38 | #: ../openssh-server.templates.master:1001 | ||
39 | #, fuzzy | ||
40 | msgid "" | ||
41 | "This version of OpenSSH has a considerably changed configuration file from " | ||
42 | "the version shipped in Debian 'Potato', which you appear to be upgrading " | ||
43 | "from. This package can now generate a new configuration file (/etc/ssh/sshd." | ||
44 | "config), which will work with the new server version, but will not contain " | ||
45 | "any customizations you made with the old version." | ||
46 | msgstr "" | ||
47 | "Ð’ цій верÑÑ–Ñ— OpenSSH значно змінений файл налаштувань, в порівнÑнні з " | ||
48 | "верÑією, що входила в Debian 'Potato', Ñ– Ñку ви, Ñхоже, оновлюєте. Зараз " | ||
49 | "можна Ñтворити новий файл налаштувань (/etc/ssh/sshd.config), що буде " | ||
50 | "працювати з новою верÑією Ñервера, але не буде міÑтити будь-Ñкі зміни, Ñкі " | ||
51 | "ви внеÑли у Ñтару верÑÑ–ÑŽ." | ||
52 | |||
53 | #. Type: boolean | ||
54 | #. Description | ||
55 | #: ../openssh-server.templates.master:1001 | ||
56 | #, fuzzy | ||
57 | #| msgid "" | ||
58 | #| "Please note that this new configuration file will set the value of " | ||
59 | #| "'PermitRootLogin' to yes (meaning that anyone knowing the root password " | ||
60 | #| "can ssh directly in as root). It is the opinion of the maintainer that " | ||
61 | #| "this is the correct default (see README.Debian for more details), but you " | ||
62 | #| "can always edit sshd_config and set it to no if you wish." | ||
63 | msgid "" | ||
64 | "Please note that this new configuration file will set the value of " | ||
65 | "'PermitRootLogin' to 'yes' (meaning that anyone knowing the root password " | ||
66 | "can ssh directly in as root). Please read the README.Debian file for more " | ||
67 | "details about this design choice." | ||
68 | msgstr "" | ||
69 | "Зауважте, що в новій верÑÑ–Ñ— файла налаштувань змінна 'PermitRootLogin' буде " | ||
70 | "мати Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ yes (що означає, що будь-Ñка людина, котра знає пароль " | ||
71 | "кориÑтувача root, зможе увійти в ÑиÑтему через ssh). Ðа думку " | ||
72 | "Ñупроводжуючого пакунку - це вірне Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð·Ð° замовчаннÑм (дивітьÑÑ Ñ‚Ð°ÐºÐ¾Ð¶ " | ||
73 | "README.Debian), але ви завжди можете змінити Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ñ†ÑŒÐ¾Ð³Ð¾ параметра у " | ||
74 | "файлі sshd_config." | ||
75 | |||
76 | #. Type: boolean | ||
77 | #. Description | ||
78 | #: ../openssh-server.templates.master:1001 | ||
79 | #, fuzzy | ||
80 | msgid "" | ||
81 | "It is strongly recommended that you choose to generate a new configuration " | ||
82 | "file now." | ||
83 | msgstr "РекомендуєтьÑÑ Ð´Ð¾Ð·Ð²Ð¾Ð»Ð¸Ñ‚Ð¸ Ñтворити новий файл налаштувань." | ||
84 | |||
85 | #. Type: boolean | ||
86 | #. Description | ||
87 | #: ../openssh-server.templates.master:2001 | ||
88 | #, fuzzy | ||
89 | #| msgid "Do you want to continue (and risk killing active ssh sessions)?" | ||
90 | msgid "Do you want to risk killing active SSH sessions?" | ||
91 | msgstr "" | ||
92 | "Чи бажаєте ви продовжувати (та ризикувати втратити активні ÑеанÑи ssh)?" | ||
93 | |||
94 | #. Type: boolean | ||
95 | #. Description | ||
96 | #: ../openssh-server.templates.master:2001 | ||
97 | #, fuzzy | ||
98 | #| msgid "" | ||
99 | #| "The version of /etc/init.d/ssh that you have installed, is likely to kill " | ||
100 | #| "all running sshd instances. If you are doing this upgrade via an ssh " | ||
101 | #| "session, that would be a Bad Thing(tm)." | ||
102 | msgid "" | ||
103 | "The currently installed version of /etc/init.d/ssh is likely to kill all " | ||
104 | "running sshd instances. If you are doing this upgrade via an SSH session, " | ||
105 | "you're likely to be disconnected and leave the upgrade procedure unfinished." | ||
106 | msgstr "" | ||
107 | "ВерÑÑ–Ñ /etc/init.d/ssh, Ñку ви вÑтановили, імовірно зупинить вÑÑ– запущені " | ||
108 | "процеÑи sshd. Якщо ви оновлюєтеÑÑ Ñ‡ÐµÑ€ÐµÐ· ssh, це буде Погана річ (tm)." | ||
109 | |||
110 | #. Type: boolean | ||
111 | #. Description | ||
112 | #: ../openssh-server.templates.master:2001 | ||
113 | #, fuzzy | ||
114 | #| msgid "" | ||
115 | #| "You can fix this by adding \"--pidfile /var/run/sshd.pid\" to the start-" | ||
116 | #| "stop-daemon line in the stop section of the file." | ||
117 | msgid "" | ||
118 | "This can be fixed by manually adding \"--pidfile /var/run/sshd.pid\" to the " | ||
119 | "start-stop-daemon line in the stop section of the file." | ||
120 | msgstr "" | ||
121 | "Ви можете виправити це, додавши \"--pidfile /var/run/sshd.pid\" до Ñ€Ñдка з " | ||
122 | "викликом start-stop-daemon в чаÑтині зупинки цього файла." | ||
123 | |||
124 | #. Type: note | ||
125 | #. Description | ||
126 | #: ../openssh-server.templates.master:3001 | ||
127 | msgid "New host key mandatory" | ||
128 | msgstr "" | ||
129 | |||
130 | #. Type: note | ||
131 | #. Description | ||
132 | #: ../openssh-server.templates.master:3001 | ||
133 | #, fuzzy | ||
134 | msgid "" | ||
135 | "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " | ||
136 | "algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " | ||
137 | "utility from the old (non-free) SSH installation does not appear to be " | ||
138 | "available." | ||
139 | msgstr "" | ||
140 | "Старий ключ в /etc/ssh/ssh_host_key зашифрований за допомогою IDEA. OpenSSH " | ||
141 | "не може оброблÑти такий файл ключа вузла, також неможливо знайти програму " | ||
142 | "ssh-keygen зі Ñтарої (невільної) верÑÑ–Ñ— SSH." | ||
143 | |||
144 | #. Type: note | ||
145 | #. Description | ||
146 | #: ../openssh-server.templates.master:3001 | ||
147 | #, fuzzy | ||
148 | #| msgid "You will need to generate a new host key." | ||
149 | msgid "You need to manually generate a new host key." | ||
150 | msgstr "Вам потрібно Ñтворити новий ключ вузла." | ||
151 | |||
152 | #. Type: boolean | ||
153 | #. Description | ||
154 | #: ../openssh-server.templates.master:4001 | ||
155 | msgid "Disable challenge-response authentication?" | ||
156 | msgstr "Заборонити автентифікацію запит-відповідь?" | ||
157 | |||
158 | #. Type: boolean | ||
159 | #. Description | ||
160 | #: ../openssh-server.templates.master:4001 | ||
161 | #, fuzzy | ||
162 | #| msgid "" | ||
163 | #| "Password authentication appears to be disabled in your current OpenSSH " | ||
164 | #| "server configuration. In order to prevent users from logging in using " | ||
165 | #| "passwords (perhaps using only public key authentication instead) with " | ||
166 | #| "recent versions of OpenSSH, you must disable challenge-response " | ||
167 | #| "authentication, or else ensure that your PAM configuration does not allow " | ||
168 | #| "Unix password file authentication." | ||
169 | msgid "" | ||
170 | "Password authentication appears to be disabled in the current OpenSSH server " | ||
171 | "configuration. In order to prevent users from logging in using passwords " | ||
172 | "(perhaps using only public key authentication instead) with recent versions " | ||
173 | "of OpenSSH, you must disable challenge-response authentication, or else " | ||
174 | "ensure that your PAM configuration does not allow Unix password file " | ||
175 | "authentication." | ||
176 | msgstr "" | ||
177 | "Схоже, що Ð°Ð²Ñ‚ÐµÐ½Ñ‚Ð¸Ñ„Ñ–ÐºÐ°Ñ†Ñ–Ñ Ð· викориÑтаннÑм паролів заборонена у поточній " | ||
178 | "конфігурації Ñервера OpenSSH. Щоб перешкодити кориÑтувачам реєÑтруватиÑÑ Ð· " | ||
179 | "викориÑтаннÑм паролів (можливо, Ð´Ð»Ñ Ð°Ð²Ñ‚ÐµÐ½Ñ‚Ð¸Ñ„Ñ–ÐºÐ°Ñ†Ñ–Ñ— тільки за допомогою " | ||
180 | "відкритих ключів) з оÑтанніми верÑÑ–Ñми OpenSSH, необхідно заборонити " | ||
181 | "автентифікацію виклик-відгук або впевнитиÑÑ, що Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ PAM не " | ||
182 | "дозволÑÑŽÑ‚ÑŒ автентифікацію за допомогою файла паролів Unix." | ||
183 | |||
184 | #. Type: boolean | ||
185 | #. Description | ||
186 | #: ../openssh-server.templates.master:4001 | ||
187 | msgid "" | ||
188 | "If you disable challenge-response authentication, then users will not be " | ||
189 | "able to log in using passwords. If you leave it enabled (the default " | ||
190 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
191 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
192 | msgstr "" | ||
193 | "Якщо ви забороните автентифікацію виклик-відгук, то ваші кориÑтувачі не " | ||
194 | "зможуть реєÑтруватиÑÑ Ð²Ð¸ÐºÐ¾Ñ€Ð¸Ñтовуючи паролі. Якщо ви залишите Ñ—Ñ— дозволеною " | ||
195 | "(відповідь за замовчаннÑм), то Ð¾Ð¿Ñ†Ñ–Ñ 'PasswordAuthentication no' не буде " | ||
196 | "мати кориÑного ефекту доки ви не приÑтоÑуєте також Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ PAM в /etc/" | ||
197 | "pam.d/ssh." | ||
198 | |||
199 | #~ msgid "Warning: you must create a new host key" | ||
200 | #~ msgstr "ПопередженнÑ: ви повинні Ñтворити новий ключ вузла" | ||
201 | |||
202 | #~ msgid "Warning: telnetd is installed --- probably not a good idea" | ||
203 | #~ msgstr "ПопередженнÑ: telnetd вÑтановлений - це погана ідеÑ" | ||
204 | |||
205 | #~ msgid "" | ||
206 | #~ "I'd advise you to either remove the telnetd package (if you don't " | ||
207 | #~ "actually need to offer telnet access) or install telnetd-ssl so that " | ||
208 | #~ "there is at least some chance that telnet sessions will not be sending " | ||
209 | #~ "unencrypted login/password and session information over the network." | ||
210 | #~ msgstr "" | ||
211 | #~ "РекомендуєтьÑÑ Ð°Ð±Ð¾ видалити пакунок telnetd (Ñкщо вам не потрібно " | ||
212 | #~ "надавати доÑтуп через telnet), або вÑтановити telnetd-ssl, щоб мати " | ||
213 | #~ "можливіÑÑ‚ÑŒ не передавати незашифровані логін/пароль та іншу інформацію " | ||
214 | #~ "через мережу." | ||
215 | |||
216 | #~ msgid "Warning: rsh-server is installed --- probably not a good idea" | ||
217 | #~ msgstr "ПопередженнÑ: rsh-server вÑтановлений - це погана ідеÑ" | ||
218 | |||
219 | #~ msgid "" | ||
220 | #~ "having rsh-server installed undermines the security that you were " | ||
221 | #~ "probably wanting to obtain by installing ssh. I'd advise you to remove " | ||
222 | #~ "that package." | ||
223 | #~ msgstr "" | ||
224 | #~ "Ð’Ñтановлений rsh-server знижує рівень безпеки, Ñкий ви, можливо, хотіли " | ||
225 | #~ "отримати вÑтановивши ssh. РекомендуєтьÑÑ Ð²Ð¸Ð´Ð°Ð»Ð¸Ñ‚Ð¸ цей пакунок." | ||
226 | |||
227 | #~ msgid "Do you want ssh-keysign to be installed SUID root?" | ||
228 | #~ msgstr "Чи бажаєте ви, щоб ssh-keysign мав вÑтановлений біт SUID?" | ||
229 | |||
230 | #~ msgid "" | ||
231 | #~ "You have the option of installing the ssh-keysign helper with the SUID " | ||
232 | #~ "bit set." | ||
233 | #~ msgstr "Ви маєте можливіÑÑ‚ÑŒ вÑтановити біт SUID Ð´Ð»Ñ Ð¿Ñ€Ð¾Ð³Ñ€Ð°Ð¼Ð¸ ssh-keysign." | ||
234 | |||
235 | #~ msgid "" | ||
236 | #~ "If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 " | ||
237 | #~ "host-based authentication." | ||
238 | #~ msgstr "" | ||
239 | #~ "Якщо ви вÑтановите біт SUID Ð´Ð»Ñ ssh-keysign, ви зможете викориÑтовувати " | ||
240 | #~ "вузлову автентифікацію протоколу SSH верÑÑ–Ñ— 2." | ||
241 | |||
242 | #~ msgid "" | ||
243 | #~ "If in doubt, I suggest you install it with SUID. If it causes problems " | ||
244 | #~ "you can change your mind later by running: dpkg-reconfigure ssh" | ||
245 | #~ msgstr "" | ||
246 | #~ "Якщо ÑумніваєтеÑÑŒ, то рекомендуєтьÑÑ Ð´Ð¾Ð·Ð²Ð¾Ð»Ð¸Ñ‚Ð¸ вÑтановити біт SUID. Якщо " | ||
247 | #~ "це викликатиме проблеми, ви зможете вÑе змінити запуÑтивши dpkg-" | ||
248 | #~ "reconfigure ssh" | ||
249 | |||
250 | #~ msgid "Allow SSH protocol 2 only" | ||
251 | #~ msgstr "Дозволити тільки SSH-протокол верÑÑ–Ñ— 2" | ||
252 | |||
253 | #~ msgid "" | ||
254 | #~ "This version of OpenSSH supports version 2 of the ssh protocol, which is " | ||
255 | #~ "much more secure. Disabling ssh 1 is encouraged, however this will slow " | ||
256 | #~ "things down on low end machines and might prevent older clients from " | ||
257 | #~ "connecting (the ssh client shipped with \"potato\" is affected)." | ||
258 | #~ msgstr "" | ||
259 | #~ "Ð¦Ñ Ð²ÐµÑ€ÑÑ–Ñ OpenSSH підтримує верÑÑ–ÑŽ 2 протоколу SSH, Ñка Ñ” більш " | ||
260 | #~ "безпечною. РекомендуєтьÑÑ Ð·Ð°Ð±Ð¾Ñ€Ð¾Ð½Ð¸Ñ‚Ð¸ верÑÑ–ÑŽ 1, однак це може уповільнити " | ||
261 | #~ "роботу на Ñлабких ÑиÑтемах та зробити неможливим з'Ñ”Ð´Ð½Ð°Ð½Ð½Ñ Ð· " | ||
262 | #~ "викориÑтаннÑм Ñтарих клієнтів (включно з клієнтом ssh з \"potato\")." | ||
263 | |||
264 | #~ msgid "" | ||
265 | #~ "Also please note that keys used for protocol 1 are different so you will " | ||
266 | #~ "not be able to use them if you only allow protocol 2 connections." | ||
267 | #~ msgstr "" | ||
268 | #~ "Також зверніть увагу, що ключі Ð´Ð»Ñ Ð²ÐµÑ€ÑÑ–Ñ— 1 відрізнÑÑŽÑ‚ÑŒÑÑ Ð²Ñ–Ð´ ключів Ð´Ð»Ñ " | ||
269 | #~ "верÑÑ–Ñ— 2, тому ви не зможете викориÑтовувати Ñ—Ñ…, Ñкщо дозволите з'Ñ”Ð´Ð½Ð°Ð½Ð½Ñ " | ||
270 | #~ "тільки по протоколу верÑÑ–Ñ— 2." | ||
271 | |||
272 | #~ msgid "" | ||
273 | #~ "If you later change your mind about this setting, README.Debian has " | ||
274 | #~ "instructions on what to do to your sshd_config file." | ||
275 | #~ msgstr "" | ||
276 | #~ "Якщо ви пізніше передумаєте щодо цього параметра, файл README.Debian " | ||
277 | #~ "міÑтить інÑтрукції щодо внеÑÐµÐ½Ð½Ñ Ð·Ð¼Ñ–Ð½ до файла sshd_config." | ||
278 | |||
279 | #~ msgid "ssh2 keys merged in configuration files" | ||
280 | #~ msgstr "ssh2-ключі злиті у файлах налаштувань" | ||
281 | |||
282 | #~ msgid "" | ||
283 | #~ "As of version 3 OpenSSH no longer uses separate files for ssh1 and ssh2 " | ||
284 | #~ "keys. This means the authorized_keys2 and known_hosts2 files are no " | ||
285 | #~ "longer needed. They will still be read in order to maintain backwards " | ||
286 | #~ "compatibility" | ||
287 | #~ msgstr "" | ||
288 | #~ "У верÑÑ–Ñ— 3 OpenSSH більше не викориÑтовує окремі файли Ð´Ð»Ñ ÐºÐ»ÑŽÑ‡Ñ–Ð² ssh1 та " | ||
289 | #~ "ssh2. Це означає, що файли authorized_keys2 та known_hosts2 більше " | ||
290 | #~ "непотрібні. Вони будуть читатиÑÑ Ð· метою Ð·Ð°Ð±ÐµÐ·Ð¿ÐµÑ‡ÐµÐ½Ð½Ñ Ð·Ð²Ð¾Ñ€Ð¾Ñ‚Ð½Ð¾Ñ— " | ||
291 | #~ "ÑуміÑноÑÑ‚Ñ–." | ||
292 | |||
293 | #~ msgid "NOTE: Forwarding of X11 and Authorization disabled by default." | ||
294 | #~ msgstr "" | ||
295 | #~ "ЗÐУВÐЖЕÐÐЯ: Форвардинг X11 та Authorization заборонені за замовчаннÑм." | ||
296 | |||
297 | #~ msgid "" | ||
298 | #~ "For security reasons, the Debian version of ssh has ForwardX11 and " | ||
299 | #~ "ForwardAgent set to ``off'' by default." | ||
300 | #~ msgstr "" | ||
301 | #~ "З міркувань безпеки в Debian-верÑÑ–Ñ— ssh параметри ForwardX11 та " | ||
302 | #~ "ForwardAgent за замовчаннÑм мають Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ \"off\"." | ||
303 | |||
304 | #~ msgid "" | ||
305 | #~ "You can enable it for servers you trust, either in one of the " | ||
306 | #~ "configuration files, or with the -X command line option." | ||
307 | #~ msgstr "" | ||
308 | #~ "Ви можете дозволити Ñ—Ñ… Ð´Ð»Ñ Ñерверів, Ñким довірÑєте, або у одному з " | ||
309 | #~ "файлів налаштувань, або за допомогою параметра командного Ñ€Ñдка -X." | ||
310 | |||
311 | #~ msgid "More details can be found in /usr/share/doc/ssh/README.Debian" | ||
312 | #~ msgstr "Подробиці можна прочитати у файлі /usr/share/doc/ssh/README.Debian" | ||
313 | |||
314 | #~ msgid "Do you want to run the sshd server?" | ||
315 | #~ msgstr "Чи бажаєте ви запуÑтити Ñервер sshd?" | ||
316 | |||
317 | #~ msgid "This package contains both the ssh client, and the sshd server." | ||
318 | #~ msgstr "Цей пакунок міÑтить Ñк клієнт ssh, так Ñ– Ñервер sshd." | ||
319 | |||
320 | #~ msgid "" | ||
321 | #~ "Normally the sshd Secure Shell Server will be run to allow remote logins " | ||
322 | #~ "via ssh." | ||
323 | #~ msgstr "" | ||
324 | #~ "Звичайно sshd (Secure Shell Server) запуÑкаєтьÑÑ Ñ‰Ð¾Ð± зробити можливим " | ||
325 | #~ "віддалену реєÑтрацію в ÑиÑтемі за допомогою ssh." | ||
326 | |||
327 | #~ msgid "" | ||
328 | #~ "If you are only interested in using the ssh client for outbound " | ||
329 | #~ "connections on this machine, and don't want to log into it at all using " | ||
330 | #~ "ssh, then you can disable sshd here." | ||
331 | #~ msgstr "" | ||
332 | #~ "Якщо Ð²Ð°Ñ Ñ†Ñ–ÐºÐ°Ð²Ð¸Ñ‚ÑŒ викориÑÑ‚Ð°Ð½Ð½Ñ Ñ‚Ñ–Ð»ÑŒÐºÐ¸ клієнта ssh на цій машині Ñ– ви не " | ||
333 | #~ "бажаєте реєÑтруватиÑÑ Ð½Ð° ній викориÑтовуючи ssh, тоді ви можете " | ||
334 | #~ "заборонити sshd." | ||
335 | |||
336 | #~ msgid "Environment options on keys have been deprecated" | ||
337 | #~ msgstr "Опції Ð¾Ñ‚Ð¾Ñ‡ÐµÐ½Ð½Ñ Ð´Ð»Ñ ÐºÐ»ÑŽÑ‡Ñ–Ð² не повинні викориÑтовуватиÑÑ" | ||
338 | |||
339 | #~ msgid "" | ||
340 | #~ "This version of OpenSSH disables the environment option for public keys " | ||
341 | #~ "by default, in order to avoid certain attacks (for example, LD_PRELOAD). " | ||
342 | #~ "If you are using this option in an authorized_keys file, beware that the " | ||
343 | #~ "keys in question will no longer work until the option is removed." | ||
344 | #~ msgstr "" | ||
345 | #~ "Ð’ цій верÑÑ–Ñ— OpenSSH, з метою ÑƒÐ½Ð¸ÐºÐ½ÐµÐ½Ð½Ñ Ð´ÐµÑких атак (наприклад " | ||
346 | #~ "LD_PRELOAD), за замовчаннÑм заборонені опції Ð¾Ñ‚Ð¾Ñ‡ÐµÐ½Ð½Ñ Ð´Ð»Ñ Ð²Ñ–Ð´ÐºÑ€Ð¸Ñ‚Ð¸Ñ… " | ||
347 | #~ "ключів. Якщо ви викориÑтовуєте цю опцію у файлі authorized_keys, майте на " | ||
348 | #~ "увазі, що ключі з такими опціÑми не будуть працювати, доки Ð¾Ð¿Ñ†Ñ–Ñ Ð½Ðµ буде " | ||
349 | #~ "видалена." | ||
350 | |||
351 | #~ msgid "" | ||
352 | #~ "To re-enable this option, set \"PermitUserEnvironment yes\" in /etc/ssh/" | ||
353 | #~ "sshd_config after the upgrade is complete, taking note of the warning in " | ||
354 | #~ "the sshd_config(5) manual page." | ||
355 | #~ msgstr "" | ||
356 | #~ "Щоб дозволити цю опцію, вÑтановіть \"PermitUserEnvironment yes\" в /etc/" | ||
357 | #~ "ssh/sshd_config піÑÐ»Ñ Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð½Ñ Ð¾Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ; зверніть увагу на " | ||
358 | #~ "Ð¿Ð¾Ð¿ÐµÑ€ÐµÐ´Ð¶ÐµÐ½Ð½Ñ Ð½Ð° Ñторінці підручника sshd_config(5)." | ||
diff --git a/debian/po/vi.po b/debian/po/vi.po new file mode 100644 index 000000000..311fe6db4 --- /dev/null +++ b/debian/po/vi.po | |||
@@ -0,0 +1,206 @@ | |||
1 | # Vietnamese translation for openssh. | ||
2 | # Copyright © 2007 Free Software Foundation, Inc. | ||
3 | # Clytie Siddall <clytie@riverland.net.au>, 2007. | ||
4 | # | ||
5 | msgid "" | ||
6 | msgstr "" | ||
7 | "Project-Id-Version: openssh 1/4.1p1-4\n" | ||
8 | "Report-Msgid-Bugs-To: debian-ssh@lists.debian.org\n" | ||
9 | "POT-Creation-Date: 2007-08-19 15:36+0100\n" | ||
10 | "PO-Revision-Date: 2007-06-10 14:47+0930\n" | ||
11 | "Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n" | ||
12 | "Language-Team: Vietnamese <vi-VN@googlegroups.com\n" | ||
13 | "MIME-Version: 1.0\n" | ||
14 | "Content-Type: text/plain; charset=utf-8\n" | ||
15 | "Content-Transfer-Encoding: 8bit\n" | ||
16 | "Plural-Forms: nplurals=1; plural=0;\n" | ||
17 | "X-Generator: LocFactoryEditor 1.6.3b1\n" | ||
18 | |||
19 | #. Type: boolean | ||
20 | #. Description | ||
21 | #: ../openssh-server.templates.master:1001 | ||
22 | msgid "Generate a new configuration file for OpenSSH?" | ||
23 | msgstr "Tao ra táºp tin cấu hình má»›i cho OpenSSH không?" | ||
24 | |||
25 | #. Type: boolean | ||
26 | #. Description | ||
27 | #: ../openssh-server.templates.master:1001 | ||
28 | msgid "" | ||
29 | "This version of OpenSSH has a considerably changed configuration file from " | ||
30 | "the version shipped in Debian 'Potato', which you appear to be upgrading " | ||
31 | "from. This package can now generate a new configuration file (/etc/ssh/sshd." | ||
32 | "config), which will work with the new server version, but will not contain " | ||
33 | "any customizations you made with the old version." | ||
34 | msgstr "" | ||
35 | "Phiên bản OpenSSH nà y có má»™t táºp tin cấu hình đã thay đổi nhiá»u so vá»›i phiên " | ||
36 | "bản có sẵn trong bản phát hà nh « Potato » của Debian, trong đó có vẻ là bạn " | ||
37 | "Ä‘ang cáºp nháºt. Gói nà y giá» có khả năng tạo ra má»™t táºp tin cấu hình má»›i (/etc/" | ||
38 | "ssh/sshd.config), mà sẽ hoạt động được với phiên bản trình phục vụ mới, " | ||
39 | "nhÆ°ng không còn chứa mục sá»a đổi nà o bạn đã tạo trong phiên bản cÅ©." | ||
40 | |||
41 | # msgid "" | ||
42 | # Please note that this new configuration file will set the value of | ||
43 | # 'PermitRootLogin' to yes (meaning that anyone knowing the root password | ||
44 | # can ssh directly in as root). It is the opinion of the maintainer that | ||
45 | # this is the correct default (see README.Debian for more details), but you | ||
46 | # can always edit sshd_config and set it to no if you wish. | ||
47 | #. Type: boolean | ||
48 | #. Description | ||
49 | #: ../openssh-server.templates.master:1001 | ||
50 | msgid "" | ||
51 | "Please note that this new configuration file will set the value of " | ||
52 | "'PermitRootLogin' to 'yes' (meaning that anyone knowing the root password " | ||
53 | "can ssh directly in as root). Please read the README.Debian file for more " | ||
54 | "details about this design choice." | ||
55 | msgstr "" | ||
56 | "Ghi chú rằng táºp tin cấu hình má»›i nà y sẽ đặt giá trị của « PermitRootLogin » " | ||
57 | "thà nh « yes » (có : nghÄ©a là ngÆ°á»i nà o biết máºt khẩu ngÆ°á»i chủ thì có khả " | ||
58 | "năng truy cáºp trá»±c tiếp qua ssh vá»›i tÆ° cách là ngÆ°á»i chủ). Xem táºp tin Äá»c " | ||
59 | "Äi « README.Debian » để tìm thêm chi tiết vá» sá»± chá»n thiết kế nà y." | ||
60 | |||
61 | #. Type: boolean | ||
62 | #. Description | ||
63 | #: ../openssh-server.templates.master:1001 | ||
64 | msgid "" | ||
65 | "It is strongly recommended that you choose to generate a new configuration " | ||
66 | "file now." | ||
67 | msgstr "Rất khuyên bạn chá»n tạo ra táºp tin cấu hình má»›i ngay bây giá»." | ||
68 | |||
69 | # msgid "Do you want to continue (and risk killing active ssh sessions)?" | ||
70 | #. Type: boolean | ||
71 | #. Description | ||
72 | #: ../openssh-server.templates.master:2001 | ||
73 | msgid "Do you want to risk killing active SSH sessions?" | ||
74 | msgstr "Bạn có muốn rủi ro giết phiên bản SSH còn hoạt động không?" | ||
75 | |||
76 | # msgid "" | ||
77 | # The version of /etc/init.d/ssh that you have installed, is likely to kill | ||
78 | # all running sshd instances. If you are doing this upgrade via an ssh | ||
79 | # session, that would be a Bad Thing(tm). | ||
80 | #. Type: boolean | ||
81 | #. Description | ||
82 | #: ../openssh-server.templates.master:2001 | ||
83 | msgid "" | ||
84 | "The currently installed version of /etc/init.d/ssh is likely to kill all " | ||
85 | "running sshd instances. If you are doing this upgrade via an SSH session, " | ||
86 | "you're likely to be disconnected and leave the upgrade procedure unfinished." | ||
87 | msgstr "" | ||
88 | "Phiên bản « /etc/init.d/ssh » được cà i đặt hiện thá»i rất có thể sẽ giết má»i " | ||
89 | "tiến trình sshd đang chạy. Nếu bạn có nâng cấp qua phiên chạy SSH, rất có " | ||
90 | "thể bạn bị ngắt kết nối, để lại tiến trình nâng cấp chưa hoà n tất." | ||
91 | |||
92 | # msgid "" | ||
93 | # You can fix this by adding \"--pidfile /var/run/sshd.pid\" to the start- | ||
94 | # stop-daemon line in the stop section of the file. | ||
95 | #. Type: boolean | ||
96 | #. Description | ||
97 | #: ../openssh-server.templates.master:2001 | ||
98 | msgid "" | ||
99 | "This can be fixed by manually adding \"--pidfile /var/run/sshd.pid\" to the " | ||
100 | "start-stop-daemon line in the stop section of the file." | ||
101 | msgstr "" | ||
102 | "Vẫn còn có thể sá»a chữa vấn Ä‘á» nà y, bằng cách thêm chuá»—i « --pidfile /var/" | ||
103 | "run/sshd.pid » và o dòng « start-stop-daemon » (khởi/ngừng chạy trình ná»n) " | ||
104 | "trong phần « stop » (ngừng chạy) của táºp tin đó." | ||
105 | |||
106 | #. Type: note | ||
107 | #. Description | ||
108 | #: ../openssh-server.templates.master:3001 | ||
109 | msgid "New host key mandatory" | ||
110 | msgstr "Bắt buộc phải có khoá máy mới" | ||
111 | |||
112 | #. Type: note | ||
113 | #. Description | ||
114 | #: ../openssh-server.templates.master:3001 | ||
115 | msgid "" | ||
116 | "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " | ||
117 | "algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " | ||
118 | "utility from the old (non-free) SSH installation does not appear to be " | ||
119 | "available." | ||
120 | msgstr "" | ||
121 | "Khóa máy hiện thá»i « /etc/ssh/ssh_host_key » được mặt mã bằng thuáºt toán " | ||
122 | "IDEA. OpenSSH không thể quản lý táºp tin khoá máy kiểu nà y; cÅ©ng có vẻ là " | ||
123 | "tiện Ãch « ssh-keygen » (tạo ra khoá SSH) thuá»™c vá» bản cà i đặt SSH cÅ© (khác " | ||
124 | "tự do) không sẵn sà ng." | ||
125 | |||
126 | # msgid "You will need to generate a new host key." | ||
127 | #. Type: note | ||
128 | #. Description | ||
129 | #: ../openssh-server.templates.master:3001 | ||
130 | msgid "You need to manually generate a new host key." | ||
131 | msgstr "Váºy bạn cần phải tá»± tạo má»™t khóa máy má»›i." | ||
132 | |||
133 | #. Type: boolean | ||
134 | #. Description | ||
135 | #: ../openssh-server.templates.master:4001 | ||
136 | msgid "Disable challenge-response authentication?" | ||
137 | msgstr "Tắt khả năng xác thực kiểu yêu cầu/đáp ứng không?" | ||
138 | |||
139 | # msgid "" | ||
140 | # Password authentication appears to be disabled in your current OpenSSH | ||
141 | # server configuration. In order to prevent users from logging in using | ||
142 | # passwords (perhaps using only public key authentication instead) with | ||
143 | # recent versions of OpenSSH, you must disable challenge-response | ||
144 | # authentication, or else ensure that your PAM configuration does not allow | ||
145 | # Unix password file authentication. | ||
146 | #. Type: boolean | ||
147 | #. Description | ||
148 | #: ../openssh-server.templates.master:4001 | ||
149 | msgid "" | ||
150 | "Password authentication appears to be disabled in the current OpenSSH server " | ||
151 | "configuration. In order to prevent users from logging in using passwords " | ||
152 | "(perhaps using only public key authentication instead) with recent versions " | ||
153 | "of OpenSSH, you must disable challenge-response authentication, or else " | ||
154 | "ensure that your PAM configuration does not allow Unix password file " | ||
155 | "authentication." | ||
156 | msgstr "" | ||
157 | "Có vẻ là khả năng xác thá»±c bằng máºt khẩu bị tắt trong cấu hình trình phục vụ " | ||
158 | "OpenSSH hiện thá»i. Äể ngăn cản ngÆ°á»i dùng đăng nháºp bằng máºt khẩu (có lẽ chỉ " | ||
159 | "xác thực bằng khoá công) với phiên bản OpenSSH gần đây, bạn cần phải tắt " | ||
160 | "khả năng xác thực kiểu yêu cầu/đáp ứng (challenge-response authentication), " | ||
161 | "không thì đảm bảo cấu hình PAM không cho phép xác thá»±c bằng táºp tin máºt khẩu " | ||
162 | "UNIX." | ||
163 | |||
164 | #. Type: boolean | ||
165 | #. Description | ||
166 | #: ../openssh-server.templates.master:4001 | ||
167 | msgid "" | ||
168 | "If you disable challenge-response authentication, then users will not be " | ||
169 | "able to log in using passwords. If you leave it enabled (the default " | ||
170 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
171 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
172 | msgstr "" | ||
173 | "Nếu bạn tắt khả năng xác thá»±c kiểu yêu cầu/đáp ứng, ngÆ°á»i dùng sẽ không thể " | ||
174 | "đăng nháºp bằng máºt khẩu. Äể lại hoạt Ä‘á»™ng (trả lá»i mặc định) thì tùy chá»n « " | ||
175 | "PasswordAuthentication no » (xác thá»±c bằng máºt khẩu : không) sẽ không có tác " | ||
176 | "Ä‘á»™ng tháºt, nếu bạn không Ä‘iá»u chỉnh cấu hình PAM trong « /etc/pam.d/ssh »" | ||
177 | |||
178 | #~ msgid "Warning: you must create a new host key" | ||
179 | #~ msgstr "Cảnh báo: bạn phải tạo một khóa máy mới" | ||
180 | |||
181 | #~ msgid "Warning: telnetd is installed --- probably not a good idea" | ||
182 | #~ msgstr "" | ||
183 | #~ "Cảnh báo: «telnetd» đã được cà i đặt — rất không thể là một ý kiến tốt." | ||
184 | |||
185 | #~ msgid "" | ||
186 | #~ "I'd advise you to either remove the telnetd package (if you don't " | ||
187 | #~ "actually need to offer telnet access) or install telnetd-ssl so that " | ||
188 | #~ "there is at least some chance that telnet sessions will not be sending " | ||
189 | #~ "unencrypted login/password and session information over the network." | ||
190 | #~ msgstr "" | ||
191 | #~ "Khuyên bạn hoặc loại bá» gói tin «telnetd» (nếu bạn không tháºt sá»± cần cung " | ||
192 | #~ "cấp cách truy cáºp telnet) hoặc cà i đặt gói tin «telnetd-ssl» để cố tránh " | ||
193 | #~ "chạy phiên telnet có gởi thông tin đăng nháºp/máºt khẩu và thông tin phiên " | ||
194 | #~ "là m việc không máºt mã qua mạng." | ||
195 | |||
196 | #~ msgid "Warning: rsh-server is installed --- probably not a good idea" | ||
197 | #~ msgstr "" | ||
198 | #~ "Cảnh báo: «rsh-server» được cà i đặt — rất không có thể là một ý kiến tốt." | ||
199 | |||
200 | #~ msgid "" | ||
201 | #~ "having rsh-server installed undermines the security that you were " | ||
202 | #~ "probably wanting to obtain by installing ssh. I'd advise you to remove " | ||
203 | #~ "that package." | ||
204 | #~ msgstr "" | ||
205 | #~ "Khi «rsh-server» được cà i đặt thì là m hao mòn mức Ä‘á»™ bảo máºt mà bạn muốn " | ||
206 | #~ "được bằng cách sỠdụng ssh. Khuyên bạn loại bỠgói tin ấy." | ||
diff --git a/debian/po/zh_CN.po b/debian/po/zh_CN.po new file mode 100644 index 000000000..4505d4bfa --- /dev/null +++ b/debian/po/zh_CN.po | |||
@@ -0,0 +1,359 @@ | |||
1 | # | ||
2 | # Translators, if you are not familiar with the PO format, gettext | ||
3 | # documentation is worth reading, especially sections dedicated to | ||
4 | # this format, e.g. by running: | ||
5 | # info -n '(gettext)PO Files' | ||
6 | # info -n '(gettext)Header Entry' | ||
7 | # | ||
8 | # Some information specific to po-debconf are available at | ||
9 | # /usr/share/doc/po-debconf/README-trans | ||
10 | # or http://www.debian.org/intl/l10n/po-debconf/README-trans | ||
11 | # | ||
12 | # Developers do not need to manually edit POT or PO files. | ||
13 | # | ||
14 | msgid "" | ||
15 | msgstr "" | ||
16 | "Project-Id-Version: openssh 3.6.1p2-11\n" | ||
17 | "Report-Msgid-Bugs-To: debian-ssh@lists.debian.org\n" | ||
18 | "POT-Creation-Date: 2007-08-19 15:36+0100\n" | ||
19 | "PO-Revision-Date: 2004-02-02 18:48+1300\n" | ||
20 | "Last-Translator: Hiei Xu <nicky@mail.edu.cn>\n" | ||
21 | "Language-Team: Chinese/Simplified <i18n-translation@lists.linux.net.cn>\n" | ||
22 | "MIME-Version: 1.0\n" | ||
23 | "Content-Type: text/plain; charset=UTF-8\n" | ||
24 | "Content-Transfer-Encoding: 8bit\n" | ||
25 | |||
26 | #. Type: boolean | ||
27 | #. Description | ||
28 | #: ../openssh-server.templates.master:1001 | ||
29 | #, fuzzy | ||
30 | msgid "Generate a new configuration file for OpenSSH?" | ||
31 | msgstr "生æˆæ–°çš„é…置文件" | ||
32 | |||
33 | #. Type: boolean | ||
34 | #. Description | ||
35 | #: ../openssh-server.templates.master:1001 | ||
36 | #, fuzzy | ||
37 | msgid "" | ||
38 | "This version of OpenSSH has a considerably changed configuration file from " | ||
39 | "the version shipped in Debian 'Potato', which you appear to be upgrading " | ||
40 | "from. This package can now generate a new configuration file (/etc/ssh/sshd." | ||
41 | "config), which will work with the new server version, but will not contain " | ||
42 | "any customizations you made with the old version." | ||
43 | msgstr "" | ||
44 | "看æ¥æ‚¨æ£åœ¨ä»Ž Debian “Potatoâ€å‡çº§ï¼Œå½“å‰ç‰ˆæœ¬å’Œ Debian “Potatoâ€æ‰€å¸¦çš„ OpenSSH 版" | ||
45 | "本的é…置文件对比有了相当多的改å˜ã€‚我现在å¯ä»¥ç”Ÿæˆé€‚用于新æœåŠ¡å™¨ç‰ˆæœ¬çš„æ–°é…置文" | ||
46 | "件 (/etc/ssh/sshd_config),但是它ä¸ä¼šä¿ç•™æ‚¨ä¸ºæ—§ç‰ˆæœ¬å®šåˆ¶çš„任何é…置。" | ||
47 | |||
48 | #. Type: boolean | ||
49 | #. Description | ||
50 | #: ../openssh-server.templates.master:1001 | ||
51 | #, fuzzy | ||
52 | #| msgid "" | ||
53 | #| "Please note that this new configuration file will set the value of " | ||
54 | #| "'PermitRootLogin' to yes (meaning that anyone knowing the root password " | ||
55 | #| "can ssh directly in as root). It is the opinion of the maintainer that " | ||
56 | #| "this is the correct default (see README.Debian for more details), but you " | ||
57 | #| "can always edit sshd_config and set it to no if you wish." | ||
58 | msgid "" | ||
59 | "Please note that this new configuration file will set the value of " | ||
60 | "'PermitRootLogin' to 'yes' (meaning that anyone knowing the root password " | ||
61 | "can ssh directly in as root). Please read the README.Debian file for more " | ||
62 | "details about this design choice." | ||
63 | msgstr "" | ||
64 | "请注æ„æ–°çš„é…置文件将会把“PermitRootLoginâ€çš„值设置为 yes,(è¿™æ„味ç€ä»»ä½•ä¸€ä¸ªçŸ¥" | ||
65 | "é“ root 密ç 的人都å¯ä»¥ç›´æŽ¥ä»¥ root 登录)。维护者认为这是一个æ£ç¡®çš„默认值 (详情" | ||
66 | "请阅读 README.Debian),但如果您希望,也å¯ä»¥ç¼–辑 sshd_config 文件将其设置为 " | ||
67 | "no。" | ||
68 | |||
69 | #. Type: boolean | ||
70 | #. Description | ||
71 | #: ../openssh-server.templates.master:1001 | ||
72 | #, fuzzy | ||
73 | msgid "" | ||
74 | "It is strongly recommended that you choose to generate a new configuration " | ||
75 | "file now." | ||
76 | msgstr "强烈建议让我为您生æˆä¸€ä»½æ–°çš„é…置文件。" | ||
77 | |||
78 | #. Type: boolean | ||
79 | #. Description | ||
80 | #: ../openssh-server.templates.master:2001 | ||
81 | #, fuzzy | ||
82 | #| msgid "Do you want to continue (and risk killing active ssh sessions)?" | ||
83 | msgid "Do you want to risk killing active SSH sessions?" | ||
84 | msgstr "您è¦ç»§ç»å—(会有æ€æ»æ´»åŠ¨çš„ ssh 会è¯çš„å±é™©)?" | ||
85 | |||
86 | #. Type: boolean | ||
87 | #. Description | ||
88 | #: ../openssh-server.templates.master:2001 | ||
89 | #, fuzzy | ||
90 | #| msgid "" | ||
91 | #| "The version of /etc/init.d/ssh that you have installed, is likely to kill " | ||
92 | #| "all running sshd instances. If you are doing this upgrade via an ssh " | ||
93 | #| "session, that would be a Bad Thing(tm)." | ||
94 | msgid "" | ||
95 | "The currently installed version of /etc/init.d/ssh is likely to kill all " | ||
96 | "running sshd instances. If you are doing this upgrade via an SSH session, " | ||
97 | "you're likely to be disconnected and leave the upgrade procedure unfinished." | ||
98 | msgstr "" | ||
99 | "您安装的 /etc/init.d/ssh 版本很å¯èƒ½ä¼šæ€æ»æ‰€æœ‰è¿è¡Œä¸çš„ sshd 例程。如果您是在通" | ||
100 | "过 ssh 会è¯è¿›è¡Œè¿™é¡¹å‡çº§ï¼Œé‚£å¯çœŸæ˜¯ä»¶ç³Ÿç³•çš„事情(tm)。" | ||
101 | |||
102 | #. Type: boolean | ||
103 | #. Description | ||
104 | #: ../openssh-server.templates.master:2001 | ||
105 | #, fuzzy | ||
106 | #| msgid "" | ||
107 | #| "You can fix this by adding \"--pidfile /var/run/sshd.pid\" to the start-" | ||
108 | #| "stop-daemon line in the stop section of the file." | ||
109 | msgid "" | ||
110 | "This can be fixed by manually adding \"--pidfile /var/run/sshd.pid\" to the " | ||
111 | "start-stop-daemon line in the stop section of the file." | ||
112 | msgstr "" | ||
113 | "您å¯ä»¥é€šè¿‡æ·»åŠ “--pidfile /var/run/sshd.pidâ€åˆ°è¿™ä¸ªæ–‡ä»¶çš„ stop 部分的 start-" | ||
114 | "stop-daemon è¡Œæ¥ä¿®æ£è¿™ä¸ªé—®é¢˜ã€‚" | ||
115 | |||
116 | #. Type: note | ||
117 | #. Description | ||
118 | #: ../openssh-server.templates.master:3001 | ||
119 | msgid "New host key mandatory" | ||
120 | msgstr "" | ||
121 | |||
122 | #. Type: note | ||
123 | #. Description | ||
124 | #: ../openssh-server.templates.master:3001 | ||
125 | #, fuzzy | ||
126 | msgid "" | ||
127 | "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " | ||
128 | "algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " | ||
129 | "utility from the old (non-free) SSH installation does not appear to be " | ||
130 | "available." | ||
131 | msgstr "" | ||
132 | "/etc/ssh/ssh_host_key 是由 IDEA åŠ å¯†çš„æ—§å¯†é’¥æ–‡ä»¶ã€‚OpenSSH ä¸èƒ½å¤„ç†è¿™ç§å¯†é’¥æ–‡" | ||
133 | "ä»¶ï¼Œæˆ‘ä¹Ÿæ— æ³•æ‰¾åˆ°æ—§çš„(éžè‡ªç”±çš„) SSH 安装所带的 ssh-keygen 密钥生æˆå·¥å…·ã€‚" | ||
134 | |||
135 | #. Type: note | ||
136 | #. Description | ||
137 | #: ../openssh-server.templates.master:3001 | ||
138 | #, fuzzy | ||
139 | #| msgid "You will need to generate a new host key." | ||
140 | msgid "You need to manually generate a new host key." | ||
141 | msgstr "您需è¦åˆ›å»ºä¸€ä¸ªæ–°çš„主机密钥。" | ||
142 | |||
143 | #. Type: boolean | ||
144 | #. Description | ||
145 | #: ../openssh-server.templates.master:4001 | ||
146 | msgid "Disable challenge-response authentication?" | ||
147 | msgstr "" | ||
148 | |||
149 | #. Type: boolean | ||
150 | #. Description | ||
151 | #: ../openssh-server.templates.master:4001 | ||
152 | msgid "" | ||
153 | "Password authentication appears to be disabled in the current OpenSSH server " | ||
154 | "configuration. In order to prevent users from logging in using passwords " | ||
155 | "(perhaps using only public key authentication instead) with recent versions " | ||
156 | "of OpenSSH, you must disable challenge-response authentication, or else " | ||
157 | "ensure that your PAM configuration does not allow Unix password file " | ||
158 | "authentication." | ||
159 | msgstr "" | ||
160 | |||
161 | #. Type: boolean | ||
162 | #. Description | ||
163 | #: ../openssh-server.templates.master:4001 | ||
164 | msgid "" | ||
165 | "If you disable challenge-response authentication, then users will not be " | ||
166 | "able to log in using passwords. If you leave it enabled (the default " | ||
167 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
168 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
169 | msgstr "" | ||
170 | |||
171 | #~ msgid "Warning: you must create a new host key" | ||
172 | #~ msgstr "è¦å‘Šï¼šæ‚¨å¿…须创建一个新的主机密钥" | ||
173 | |||
174 | #~ msgid "Warning: telnetd is installed --- probably not a good idea" | ||
175 | #~ msgstr "è¦å‘Šï¼šå·²ç»å®‰è£…了 telnetd æœåŠ¡å™¨ --- å¯èƒ½ä¸æ˜¯ä¸ªå¥½ä¸»æ„" | ||
176 | |||
177 | #~ msgid "" | ||
178 | #~ "I'd advise you to either remove the telnetd package (if you don't " | ||
179 | #~ "actually need to offer telnet access) or install telnetd-ssl so that " | ||
180 | #~ "there is at least some chance that telnet sessions will not be sending " | ||
181 | #~ "unencrypted login/password and session information over the network." | ||
182 | #~ msgstr "" | ||
183 | #~ "æˆ‘å»ºè®®æ‚¨åˆ é™¤ telnetd 包(如果您ä¸æ˜¯çœŸçš„需è¦æä¾› telnet 访问),或者安装 " | ||
184 | #~ "telnetd-sslï¼Œè¿™æ ·è‡³å°‘æœ‰æ—¶å€™ telnet 会è¯ä¸ä¼šå°†æœªåŠ 密的 登录å/密ç 和会è¯ä¿¡" | ||
185 | #~ "æ¯é€šè¿‡ç½‘络å‘é€ã€‚" | ||
186 | |||
187 | #~ msgid "Warning: rsh-server is installed --- probably not a good idea" | ||
188 | #~ msgstr "è¦å‘Šï¼šå·²ç»å®‰è£…了 rsh æœåŠ¡å™¨ --- å¯èƒ½ä¸æ˜¯ä¸ªå¥½ä¸»æ„" | ||
189 | |||
190 | #~ msgid "" | ||
191 | #~ "having rsh-server installed undermines the security that you were " | ||
192 | #~ "probably wanting to obtain by installing ssh. I'd advise you to remove " | ||
193 | #~ "that package." | ||
194 | #~ msgstr "" | ||
195 | #~ "安装 rsh æœåŠ¡å™¨å¾ˆå¯èƒ½ä¼šé™ä½Žæ‚¨æƒ³è¦é€šè¿‡å®‰è£… ssh å¾—åˆ°çš„å®‰å…¨æ€§ã€‚æˆ‘å»ºè®®æ‚¨åˆ é™¤è¿™" | ||
196 | #~ "个包。" | ||
197 | |||
198 | #~ msgid "Do you want ssh-keysign to be installed SUID root?" | ||
199 | #~ msgstr "您è¦å°† ssh-keysign 安装为 SUID root 程åºå—?" | ||
200 | |||
201 | #~ msgid "" | ||
202 | #~ "You have the option of installing the ssh-keysign helper with the SUID " | ||
203 | #~ "bit set." | ||
204 | #~ msgstr "您使用为 ssh-keysign 帮助者程åºè®¾ç½® SUID ä½çš„选项。" | ||
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 | #~ "如果您为 ssh-keysign 设置了 SUID,您将å¯ä»¥ä½¿ç”¨ SSH åè®® 2 的基于主机的认è¯" | ||
211 | #~ "æ–¹å¼ã€‚" | ||
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 | #~ "如果有疑问,我建议您将它安装为 SUID。如果它带æ¥éº»çƒ¦ï¼Œæ‚¨å¯ä»¥é€šè¿‡è¿è¡Œï¼šdpkg-" | ||
218 | #~ "reconfigure ssh æ¥æ”¹å˜ä¸»æ„" | ||
219 | |||
220 | #~ msgid "Allow SSH protocol 2 only" | ||
221 | #~ msgstr "åªå…许 SSH åè®® 2 (ssh2)。" | ||
222 | |||
223 | #~ msgid "" | ||
224 | #~ "This version of OpenSSH supports version 2 of the ssh protocol, which is " | ||
225 | #~ "much more secure. Disabling ssh 1 is encouraged, however this will slow " | ||
226 | #~ "things down on low end machines and might prevent older clients from " | ||
227 | #~ "connecting (the ssh client shipped with \"potato\" is affected)." | ||
228 | #~ msgstr "" | ||
229 | #~ "这个版本的 OpenSSH 支æŒæ›´åŠ 安全的第二版本 ssh å议。我们鼓励您ç¦ç”¨ ssh 1," | ||
230 | #~ "然而这会é™ä½Žä½Žç«¯æœºå™¨é€Ÿåº¦ï¼Œå¹¶ä¸”会阻æ¢è€ç‰ˆå®¢æˆ·ç«¯çš„连接(“potatoâ€æ‰€å¸¦çš„ ssh 客" | ||
231 | #~ "户端会å—到影å“)。" | ||
232 | |||
233 | #~ msgid "" | ||
234 | #~ "Also please note that keys used for protocol 1 are different so you will " | ||
235 | #~ "not be able to use them if you only allow protocol 2 connections." | ||
236 | #~ msgstr "" | ||
237 | #~ "也请注æ„åè®® 1 所用的密钥是ä¸åŒçš„ï¼Œå› æ¤å¦‚果您åªå…许åè®® 2 连接将会导致ä¸èƒ½" | ||
238 | #~ "使用它们。" | ||
239 | |||
240 | #~ msgid "" | ||
241 | #~ "If you later change your mind about this setting, README.Debian has " | ||
242 | #~ "instructions on what to do to your sshd_config file." | ||
243 | #~ msgstr "" | ||
244 | #~ "如果您ç¨åŽæƒ³æ”¹å˜è¿™ä¸ªè®¾ç½®ï¼ŒREADME.Debian 上有说明告诉您如何修改 " | ||
245 | #~ "sshd_Config 文件。" | ||
246 | |||
247 | #~ msgid "NOTE: Forwarding of X11 and Authorization disabled by default." | ||
248 | #~ msgstr "注æ„:X11 转å‘和认è¯é»˜è®¤è¢«ç¦æ¢ã€‚" | ||
249 | |||
250 | #~ msgid "" | ||
251 | #~ "For security reasons, the Debian version of ssh has ForwardX11 and " | ||
252 | #~ "ForwardAgent set to ``off'' by default." | ||
253 | #~ msgstr "" | ||
254 | #~ "å› ä¸ºå®‰å…¨æ€§åŽŸå› ï¼Œé»˜è®¤æƒ…å†µä¸‹ Debian 版本的 ssh å°† ForwardX11 å’Œ " | ||
255 | #~ "ForwardAgent 设置为 off。" | ||
256 | |||
257 | #~ msgid "" | ||
258 | #~ "You can enable it for servers you trust, either in one of the " | ||
259 | #~ "configuration files, or with the -X command line option." | ||
260 | #~ msgstr "" | ||
261 | #~ "您å¯ä»¥ä¸ºä¿¡èµ–çš„æœåŠ¡å™¨å¯ç”¨è¿™ä¸ªé€‰é¡¹ï¼Œå¯ä»¥é€šè¿‡å…¶ä¸ä¹‹ä¸€çš„é…置文件或者使用 -X 命" | ||
262 | #~ "令行选项æ¥å®žçŽ°ã€‚" | ||
263 | |||
264 | #~ msgid "More details can be found in /usr/share/doc/ssh/README.Debian" | ||
265 | #~ msgstr "更多细节å¯ä»¥åœ¨ /usr/share/doc/ssh/README.Debian 找到" | ||
266 | |||
267 | #~ msgid "ssh2 keys merged in configuration files" | ||
268 | #~ msgstr "ssh2 密钥被åˆå¹¶åˆ°é…置文件" | ||
269 | |||
270 | #~ msgid "" | ||
271 | #~ "As of version 3 OpenSSH no longer uses separate files for ssh1 and ssh2 " | ||
272 | #~ "keys. This means the authorized_keys2 and known_hosts2 files are no " | ||
273 | #~ "longer needed. They will still be read in order to maintain backwards " | ||
274 | #~ "compatibility" | ||
275 | #~ msgstr "" | ||
276 | #~ "在 OpenSSH 第 3 版ä¸å†ä¸º ssh1 å’Œ ssh2 的密钥使用ä¸åŒçš„文件。这æ„å‘³ç€ " | ||
277 | #~ "authorized_keys2 å’Œ known_hosts2 文件将ä¸å†éœ€è¦ã€‚但为了ä¿æŒå‘åŽå…¼å®¹æ€§ï¼Œå®ƒ" | ||
278 | #~ "们ä»ä¼šè¢«è¯»å–。" | ||
279 | |||
280 | #~ msgid "Do you want to run the sshd server?" | ||
281 | #~ msgstr "您è¦è¿è¡Œ sshd æœåŠ¡å™¨å—?" | ||
282 | |||
283 | #~ msgid "This package contains both the ssh client, and the sshd server." | ||
284 | #~ msgstr "è¿™ä¸ªè½¯ä»¶åŒ…å†…å« ssh 客户端和 sshd æœåŠ¡å™¨ã€‚" | ||
285 | |||
286 | #~ msgid "" | ||
287 | #~ "Normally the sshd Secure Shell Server will be run to allow remote logins " | ||
288 | #~ "via ssh." | ||
289 | #~ msgstr "通常 sshd 安全 Shell æœåŠ¡å™¨éƒ½ä¼šè¿è¡Œä»¥ä¾¿å…许通过 ssh 进行远程登录。" | ||
290 | |||
291 | #~ msgid "" | ||
292 | #~ "If you are only interested in using the ssh client for outbound " | ||
293 | #~ "connections on this machine, and don't want to log into it at all using " | ||
294 | #~ "ssh, then you can disable sshd here." | ||
295 | #~ msgstr "" | ||
296 | #~ "如果您åªè¦åœ¨è¿™å°æœºå™¨ä¸Šä½¿ç”¨ ssh 客户端对外连接,完全ä¸æƒ³é€šè¿‡ ssh 登录到本" | ||
297 | #~ "机,那么您å¯ä»¥åœ¨è¿™é‡Œç¦ç”¨ sshd æœåŠ¡å™¨ã€‚" | ||
298 | |||
299 | #~ msgid "Environment options on keys have been deprecated" | ||
300 | #~ msgstr "密钥的环境选项已被废弃" | ||
301 | |||
302 | #~ msgid "" | ||
303 | #~ "This version of OpenSSH disables the environment option for public keys " | ||
304 | #~ "by default, in order to avoid certain attacks (for example, LD_PRELOAD). " | ||
305 | #~ "If you are using this option in an authorized_keys file, beware that the " | ||
306 | #~ "keys in question will no longer work until the option is removed." | ||
307 | #~ msgstr "" | ||
308 | #~ "为了é¿å…一些攻击(如 LD_PRELOAD),这个版本的 OpenSSH 默认ç¦ç”¨äº†å…¬é’¥ä¸Šçš„环境" | ||
309 | #~ "选项。如果您在æŸä¸ªæŽˆæƒå¯†é’¥(authorized_keys)文件ä¸ç”¨äº†è¿™ä¸ªå‚数,请注æ„除éž" | ||
310 | #~ "åˆ é™¤äº†æ¤é€‰é¡¹ï¼Œå¦åˆ™è¿™ä¸ªå¯ç–‘的密钥将ä¸å†èµ·ä½œç”¨ã€‚" | ||
311 | |||
312 | #~ msgid "" | ||
313 | #~ "To re-enable this option, set \"PermitUserEnvironment yes\" in /etc/ssh/" | ||
314 | #~ "sshd_config after the upgrade is complete, taking note of the warning in " | ||
315 | #~ "the sshd_config(5) manual page." | ||
316 | #~ msgstr "" | ||
317 | #~ "è¦é‡æ–°å¯ç”¨è¿™ä¸ªé€‰é¡¹ï¼Œå‡çº§å®ŒæˆåŽè¯·åœ¨ /etc/ssh/sshd_config ä¸åŠ 入一" | ||
318 | #~ "行:“PermitUserEnvironment yesâ€ã€‚è¯·æ³¨æ„ sshd_config(5) 手册页ä¸æ到的è¦" | ||
319 | #~ "告。" | ||
320 | |||
321 | #~ msgid "Privilege separation" | ||
322 | #~ msgstr "æƒé™åˆ†ç¦»" | ||
323 | |||
324 | #~ msgid "" | ||
325 | #~ "Privilege separation is turned on by default, so if you decide you want " | ||
326 | #~ "it turned off, you need to add \"UsePrivilegeSeparation no\" to /etc/ssh/" | ||
327 | #~ "sshd_config." | ||
328 | #~ msgstr "" | ||
329 | #~ "æƒé™åˆ†ç¦»é€‰é¡¹æ˜¯é»˜è®¤æ‰“开的。如果想è¦å…³é—æ¤é€‰é¡¹ï¼Œæ‚¨éœ€è¦åœ¨ /etc/ssh/" | ||
330 | #~ "sshd_config 文件ä¸æ·»åŠ 一行“UsePrivilegeSeparation noâ€ã€‚" | ||
331 | |||
332 | #~ msgid "Enable Privilege separation" | ||
333 | #~ msgstr "å¯ç”¨æƒé™åˆ†ç¦»" | ||
334 | |||
335 | #~ msgid "" | ||
336 | #~ "This version of OpenSSH contains the new privilege separation option. " | ||
337 | #~ "This significantly reduces the quantity of code that runs as root, and " | ||
338 | #~ "therefore reduces the impact of security holes in sshd." | ||
339 | #~ msgstr "" | ||
340 | #~ "这个版本的 OpenSSH 包å«äº†ä¸€ä¸ªæ–°çš„æƒé™åˆ†ç¦»çš„选项,目的是为了å‡å°‘以 root è¿" | ||
341 | #~ "行的代ç 数目,进而å‡å°‘了 sshd 被安全æ¼æ´žå½±å“的机会。" | ||
342 | |||
343 | #~ msgid "" | ||
344 | #~ "Unfortunately, privilege separation interacts badly with PAM. Any PAM " | ||
345 | #~ "session modules that need to run as root (pam_mkhomedir, for example) " | ||
346 | #~ "will fail, and PAM keyboard-interactive authentication won't work." | ||
347 | #~ msgstr "" | ||
348 | #~ "ä¸å¹¸çš„是,æƒé™åˆ†ç¦»å’Œ PAM åŒæ—¶ä½¿ç”¨ä¼šå¾ˆç³Ÿç³•ã€‚任何需è¦ä»¥ root è¿è¡Œçš„ PAM 会è¯" | ||
349 | #~ "æ¨¡å— (如 pam_mkhomedir) 都会失败,而且 PAM 键盘交互å¼è®¤è¯éƒ½ä¸èµ·ä½œç”¨ã€‚" | ||
350 | |||
351 | #~ msgid "" | ||
352 | #~ "Since you've opted to have me generate an sshd_config file for you, you " | ||
353 | #~ "can choose whether or not to have privilege separation turned on or not. " | ||
354 | #~ "Unless you know you need to use PAM features that won't work with this " | ||
355 | #~ "option, you should enable it." | ||
356 | #~ msgstr "" | ||
357 | #~ "å› ä¸ºæ‚¨é€‰æ‹©äº†è®©æˆ‘ä¸ºæ‚¨ç”Ÿæˆ sshd_config 文件,您å¯ä»¥é€‰æ‹©æ˜¯å¦æ‰“å¼€æƒé™åˆ†ç¦»é€‰" | ||
358 | #~ "项。除éžæ‚¨çŸ¥é“需è¦ä½¿ç”¨ PAM 这个ä¸èƒ½å’Œæƒé™åˆ†ç¦»åŒæ—¶å·¥ä½œçš„功能,å¦åˆ™å°±åº”该å¯" | ||
359 | #~ "用它。" | ||
diff --git a/debian/rules b/debian/rules new file mode 100755 index 000000000..14c10e7d1 --- /dev/null +++ b/debian/rules | |||
@@ -0,0 +1,361 @@ | |||
1 | #!/usr/bin/make -f | ||
2 | |||
3 | # Uncomment this to turn on verbose mode. | ||
4 | # export DH_VERBOSE=1 | ||
5 | |||
6 | # This has to be exported to make some magic below work. | ||
7 | export DH_OPTIONS | ||
8 | |||
9 | ifeq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) | ||
10 | OPTFLAGS := -O2 | ||
11 | else | ||
12 | OPTFLAGS := -O0 | ||
13 | endif | ||
14 | |||
15 | DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) | ||
16 | DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) | ||
17 | |||
18 | ifeq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE)) | ||
19 | confflags += --build=$(DEB_HOST_GNU_TYPE) | ||
20 | else | ||
21 | confflags += --build=$(DEB_BUILD_GNU_TYPE) --host=$(DEB_HOST_GNU_TYPE) | ||
22 | endif | ||
23 | |||
24 | DEB_HOST_ARCH_OS := $(shell dpkg-architecture -qDEB_HOST_ARCH_OS 2>/dev/null) | ||
25 | DEB_HOST_ARCH_CPU := $(shell dpkg-architecture -qDEB_HOST_ARCH_CPU 2>/dev/null) | ||
26 | |||
27 | # Take account of old dpkg-architecture output. | ||
28 | ifeq ($(DEB_HOST_ARCH_OS),) | ||
29 | DEB_HOST_ARCH_OS := $(subst -gnu,,$(shell dpkg-architecture -qDEB_HOST_GNU_SYSTEM)) | ||
30 | ifeq ($(DEB_HOST_ARCH_OS),gnu) | ||
31 | DEB_HOST_ARCH_OS := hurd | ||
32 | endif | ||
33 | endif | ||
34 | ifeq ($(DEB_HOST_ARCH_CPU),) | ||
35 | DEB_HOST_ARCH_CPU := $(shell dpkg-architecture -qDEB_HOST_GNU_CPU) | ||
36 | ifeq ($(DEB_HOST_ARCH_CPU),x86_64) | ||
37 | DEB_HOST_ARCH_CPU := amd64 | ||
38 | endif | ||
39 | endif | ||
40 | |||
41 | ifneq (,$(findstring :$(DEB_HOST_ARCH_OS):,:linux:knetbsd:)) | ||
42 | ifeq (,$(findstring :$(DEB_HOST_ARCH_CPU):,:hppa:m68k:)) | ||
43 | # Use position-independent executables to take advantage of address space | ||
44 | # layout randomisation. TODO: This should be done in configure. | ||
45 | PIE_CFLAGS := -fPIE | ||
46 | PIE_LDFLAGS := -fPIE -pie | ||
47 | endif | ||
48 | endif | ||
49 | |||
50 | ifeq (,$(wildcard /usr/bin/po2debconf)) | ||
51 | PO2DEBCONF := no | ||
52 | MINDEBCONFVER := 0.5 | ||
53 | else | ||
54 | PO2DEBCONF := yes | ||
55 | MINDEBCONFVER := 1.2.0 | ||
56 | endif | ||
57 | |||
58 | # We need a new libpam-runtime for sane PAM handling | ||
59 | # (http://lists.debian.org/debian-devel-announce-0308/msg00012.html). | ||
60 | # Unfortunately it's hard to detect during the build whether this is | ||
61 | # appropriate, so woody-compatibility is a pain. I've had to punt and go for | ||
62 | # a DEB_BUILD_SSH_WOODY environment variable. We can remove this hack once | ||
63 | # we no longer care about woody. | ||
64 | ifeq ($(DEB_BUILD_SSH_WOODY),) | ||
65 | PAMSUBST := no | ||
66 | PAMDEP := libpam-runtime (>= 0.76-14) | ||
67 | else | ||
68 | PAMSUBST := yes | ||
69 | PAMDEP := libpam-runtime | ||
70 | endif | ||
71 | |||
72 | # The Hurd needs libcrypt for res_query et al. | ||
73 | ifeq ($(DEB_HOST_ARCH_OS),hurd) | ||
74 | FORCE_LIBS := LIBS=-lcrypt | ||
75 | endif | ||
76 | |||
77 | # SELinux support? | ||
78 | ifeq ($(DEB_HOST_ARCH_OS),linux) | ||
79 | SELINUX := --with-selinux | ||
80 | endif | ||
81 | |||
82 | # Change the version string to include the Debian version | ||
83 | SSH_EXTRAVERSION := Debian-$(shell dpkg-parsechangelog | sed -n -e '/^Version:/s/Version: //p' | sed -e 's/[^-]*-//') | ||
84 | |||
85 | DISTRIBUTOR := $(shell lsb_release -is 2>/dev/null || echo Debian) | ||
86 | ifeq ($(DISTRIBUTOR),Ubuntu) | ||
87 | DEFAULT_PATH := /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/bin/X11:/usr/games | ||
88 | else | ||
89 | DEFAULT_PATH := /usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/games | ||
90 | endif | ||
91 | SUPERUSER_PATH := /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/bin/X11 | ||
92 | |||
93 | build: build-deb build-udeb | ||
94 | |||
95 | build-deb: build-deb-stamp | ||
96 | build-deb-stamp: | ||
97 | dh_testdir | ||
98 | mkdir -p build-deb | ||
99 | cd build-deb && $(FORCE_LIBS) LDFLAGS='$(PIE_LDFLAGS)' ../configure $(confflags) --prefix=/usr --sysconfdir=/etc/ssh --libexecdir=/usr/lib/openssh --mandir=/usr/share/man --with-tcp-wrappers --with-xauth=/usr/bin/X11/xauth --with-default-path=$(DEFAULT_PATH) --with-superuser-path=$(SUPERUSER_PATH) --with-pam --with-4in6 --with-privsep-path=/var/run/sshd --without-rand-helper --with-libedit --with-kerberos5=/usr --with-ssl-engine $(SELINUX) | ||
100 | |||
101 | ifeq ($(DEB_HOST_ARCH_OS),linux) | ||
102 | # Some 2.2 kernels have trouble with setres[ug]id() (bug #239999). | ||
103 | perl -pi -e 's/.*#undef (BROKEN_SETRES[UG]ID).*/#define $$1 1/' build-deb/config.h | ||
104 | endif | ||
105 | # Debian's /var/log/btmp has inappropriate permissions. | ||
106 | perl -pi -e 's,.*#define USE_BTMP .*,/* #undef USE_BTMP */,' build-deb/config.h | ||
107 | |||
108 | $(MAKE) -C build-deb -j 2 ASKPASS_PROGRAM='/usr/bin/ssh-askpass' CFLAGS='$(OPTFLAGS) $(PIE_CFLAGS) -g -Wall -Wpointer-arith -Wuninitialized -Wsign-compare -Wno-pointer-sign -std=gnu99 -DLOGIN_PROGRAM=\"/bin/login\" -DLOGIN_NO_ENDOPT -DSSHD_PAM_SERVICE=\"ssh\" -DSSH_EXTRAVERSION="\" $(SSH_EXTRAVERSION)\""' | ||
109 | # Support building on Debian 3.0 (with GNOME 1.4) and later. | ||
110 | if [ -f /usr/include/libgnomeui-2.0/gnome.h ]; then \ | ||
111 | $(MAKE) -C contrib gnome-ssh-askpass2 CC='gcc $(OPTFLAGS) -g -Wall'; \ | ||
112 | elif [ -f /usr/include/gnome-1.0/gnome.h ]; then \ | ||
113 | $(MAKE) -C contrib gnome-ssh-askpass1 CC='gcc $(OPTFLAGS) -g -Wall'; \ | ||
114 | fi | ||
115 | |||
116 | touch build-deb-stamp | ||
117 | |||
118 | build-udeb: build-udeb-stamp | ||
119 | build-udeb-stamp: | ||
120 | dh_testdir | ||
121 | mkdir -p build-udeb | ||
122 | cd build-udeb && $(FORCE_LIBS) ../configure $(confflags) --prefix=/usr --sysconfdir=/etc/ssh --libexecdir=/usr/lib/openssh --without-xauth --with-default-path=/usr/local/bin:/usr/bin:/bin --with-superuser-path=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin --with-4in6 --with-privsep-path=/var/run/sshd --without-rand-helper | ||
123 | # Debian's /var/log/btmp has inappropriate permissions. | ||
124 | perl -pi -e 's,.*#define USE_BTMP .*,/* #undef USE_BTMP */,' build-udeb/config.h | ||
125 | # Avoid libnsl linkage. Ugh. | ||
126 | perl -pi -e 's/ +-lnsl//' build-udeb/config.status | ||
127 | cd build-udeb && ./config.status | ||
128 | $(MAKE) -C build-udeb -j 2 ASKPASS_PROGRAM='/usr/bin/ssh-askpass' CFLAGS='-Os -g -Wall -Wpointer-arith -Wuninitialized -Wsign-compare -Wno-pointer-sign -std=gnu99 -DSSH_EXTRAVERSION="\" $(SSH_EXTRAVERSION)\""' ssh scp sftp sshd ssh-keygen | ||
129 | touch build-udeb-stamp | ||
130 | |||
131 | clean: | ||
132 | dh_testdir | ||
133 | rm -f build-deb-stamp build-udeb-stamp | ||
134 | rm -rf build-deb build-udeb | ||
135 | $(MAKE) -C contrib clean | ||
136 | rm -f config.log | ||
137 | ifeq ($(PO2DEBCONF),yes) | ||
138 | # Hack for woody compatibility. This makes sure that the | ||
139 | # debian/templates file shipped in the source package doesn't | ||
140 | # specify encodings, which woody's debconf can't handle. If building | ||
141 | # on a system with po-debconf installed (conveniently debhelper (>= | ||
142 | # 4.1.16) depends on it), the binary-arch target will generate a | ||
143 | # better version for sarge. | ||
144 | echo '1 popular' > debian/po/output | ||
145 | po2debconf debian/openssh-server.templates.master > debian/openssh-server.templates | ||
146 | rm -f debian/po/output | ||
147 | endif | ||
148 | ifeq ($(PAMSUBST),yes) | ||
149 | if [ -f debian/ssh.pam.new-style ]; then \ | ||
150 | mv debian/ssh.pam.new-style debian/ssh.pam; \ | ||
151 | fi | ||
152 | endif | ||
153 | rm -f debian/ssh-askpass-gnome.png | ||
154 | dh_clean | ||
155 | |||
156 | install: DH_OPTIONS=-a | ||
157 | install: build | ||
158 | dh_testdir | ||
159 | dh_testroot | ||
160 | dh_clean -k | ||
161 | dh_installdirs | ||
162 | |||
163 | $(MAKE) -C build-deb DESTDIR=`pwd`/debian/openssh-client install-nokeys | ||
164 | |||
165 | rm -f debian/openssh-client/etc/ssh/sshd_config | ||
166 | #Temporary hack: remove /usr/share/Ssh.bin, since we have no smartcard support anyway. | ||
167 | rm -f debian/openssh-client/usr/share/Ssh.bin | ||
168 | |||
169 | # Split off the server. | ||
170 | mv debian/openssh-client/usr/sbin/sshd debian/openssh-server/usr/sbin/ | ||
171 | mv debian/openssh-client/usr/lib/openssh/sftp-server debian/openssh-server/usr/lib/openssh/ | ||
172 | mv debian/openssh-client/usr/share/man/man5/authorized_keys.5 debian/openssh-server/usr/share/man/man5/ | ||
173 | mv debian/openssh-client/usr/share/man/man5/sshd_config.5 debian/openssh-server/usr/share/man/man5/ | ||
174 | mv debian/openssh-client/usr/share/man/man8/sshd.8 debian/openssh-server/usr/share/man/man8/ | ||
175 | mv debian/openssh-client/usr/share/man/man8/sftp-server.8 debian/openssh-server/usr/share/man/man8/ | ||
176 | rmdir debian/openssh-client/usr/sbin debian/openssh-client/var/run/sshd | ||
177 | |||
178 | install -m 755 contrib/ssh-copy-id debian/openssh-client/usr/bin/ssh-copy-id | ||
179 | install -m 644 -c contrib/ssh-copy-id.1 debian/openssh-client/usr/share/man/man1/ssh-copy-id.1 | ||
180 | install -m 644 debian/moduli.5 debian/openssh-client/usr/share/man/man5/moduli.5 | ||
181 | |||
182 | if [ -f contrib/gnome-ssh-askpass2 ]; then \ | ||
183 | install -s -o root -g root -m 755 contrib/gnome-ssh-askpass2 debian/ssh-askpass-gnome/usr/lib/openssh/gnome-ssh-askpass; \ | ||
184 | elif [ -f contrib/gnome-ssh-askpass1 ]; then \ | ||
185 | install -s -o root -g root -m 755 contrib/gnome-ssh-askpass1 debian/ssh-askpass-gnome/usr/lib/openssh/gnome-ssh-askpass; \ | ||
186 | fi | ||
187 | install -m 644 debian/gnome-ssh-askpass.1 debian/ssh-askpass-gnome/usr/share/man/man1/gnome-ssh-askpass.1 | ||
188 | uudecode -o debian/ssh-askpass-gnome/usr/share/pixmaps/ssh-askpass-gnome.png debian/ssh-askpass-gnome.png.uue | ||
189 | |||
190 | install -m 755 debian/ssh-argv0 debian/openssh-client/usr/bin/ssh-argv0 | ||
191 | install -m 644 debian/ssh-argv0.1 debian/openssh-client/usr/share/man/man1/ssh-argv0.1 | ||
192 | |||
193 | install -o root -g root debian/openssh-server.init debian/openssh-server/etc/init.d/ssh | ||
194 | install -o root -g root -m 644 debian/openssh-server.default debian/openssh-server/etc/default/ssh | ||
195 | install -o root -g root debian/openssh-server.if-up debian/openssh-server/etc/network/if-up.d/openssh-server | ||
196 | |||
197 | install -m 755 build-udeb/ssh debian/openssh-client-udeb/usr/bin/ssh | ||
198 | install -m 755 build-udeb/scp debian/openssh-client-udeb/usr/bin/scp | ||
199 | install -m 755 build-udeb/sftp debian/openssh-client-udeb/usr/bin/sftp | ||
200 | install -m 755 build-udeb/sshd debian/openssh-server-udeb/usr/sbin/sshd | ||
201 | install -m 755 build-udeb/ssh-keygen debian/openssh-server-udeb/usr/bin/ssh-keygen | ||
202 | |||
203 | # Remove version control tags to avoid unnecessary conffile | ||
204 | # resolution steps for administrators. | ||
205 | sed -i '/\$$OpenBSD:/d' \ | ||
206 | debian/openssh-client/etc/ssh/moduli \ | ||
207 | debian/openssh-client/etc/ssh/ssh_config | ||
208 | |||
209 | # Build architecture-independent files here. | ||
210 | binary-indep: binary-ssh binary-ssh-krb5 | ||
211 | |||
212 | # Build architecture-dependent files here. | ||
213 | binary-arch: binary-openssh-client binary-openssh-server | ||
214 | binary-arch: binary-ssh-askpass-gnome | ||
215 | binary-arch: binary-openssh-client-udeb binary-openssh-server-udeb | ||
216 | |||
217 | binary-openssh-client: DH_OPTIONS=-popenssh-client | ||
218 | binary-openssh-client: build install | ||
219 | dh_testdir | ||
220 | dh_testroot | ||
221 | dh_installdebconf | ||
222 | dh_installdocs OVERVIEW README README.dns README.tun | ||
223 | cat debian/copyright.head LICENCE > debian/openssh-client/usr/share/doc/openssh-client/copyright | ||
224 | dh_installchangelogs ChangeLog ChangeLog.gssapi | ||
225 | install -m644 debian/openssh-client.lintian debian/openssh-client/usr/share/lintian/overrides/openssh-client | ||
226 | dh_strip | ||
227 | dh_compress | ||
228 | dh_fixperms | ||
229 | chmod u+s debian/openssh-client/usr/lib/openssh/ssh-keysign | ||
230 | dh_installdeb | ||
231 | test ! -e debian/ssh/etc/ssh/ssh_prng_cmds \ | ||
232 | || echo "/etc/ssh/ssh_prng_cmds" >> debian/openssh-client/DEBIAN/conffiles | ||
233 | perl -i debian/substitute-conffile.pl \ | ||
234 | ETC_SSH_MODULI debian/openssh-client/etc/ssh/moduli \ | ||
235 | ETC_SSH_SSH_CONFIG debian/openssh-client/etc/ssh/ssh_config \ | ||
236 | debian/openssh-client/DEBIAN/preinst | ||
237 | dh_shlibdeps | ||
238 | dh_gencontrol -- -V'debconf-depends=debconf (>= $(MINDEBCONFVER)) | debconf-2.0' | ||
239 | dh_md5sums | ||
240 | dh_builddeb | ||
241 | |||
242 | binary-openssh-server: DH_OPTIONS=-popenssh-server | ||
243 | binary-openssh-server: build install | ||
244 | dh_testdir | ||
245 | dh_testroot | ||
246 | ifeq ($(PO2DEBCONF),yes) | ||
247 | po2debconf -e utf8 debian/openssh-server.templates.master > debian/openssh-server.templates | ||
248 | endif | ||
249 | dh_installdebconf | ||
250 | dh_installdocs | ||
251 | mv debian/openssh-server/usr/share/doc/openssh-server debian/openssh-server/usr/share/doc/openssh-client | ||
252 | rm -f debian/openssh-server/usr/share/doc/openssh-client/copyright | ||
253 | ifeq ($(PAMSUBST),yes) | ||
254 | # Clean up if we've done this already, to ensure idempotency. | ||
255 | if [ -f debian/openssh-server.ssh.pam.new-style ]; then \ | ||
256 | mv debian/openssh-server.ssh.pam.new-style debian/openssh-server.ssh.pam; \ | ||
257 | fi | ||
258 | cp -a debian/openssh-server.ssh.pam debian/openssh-server.ssh.pam.new-style | ||
259 | sed -e "s/@include common-auth/auth required pam_unix.so/" \ | ||
260 | -e "s/@include common-account/account required pam_unix.so/" \ | ||
261 | -e "s/@include common-session/session required pam_unix.so/" \ | ||
262 | -e "s/@include common-password/password required pam_unix.so/" \ | ||
263 | debian/openssh-server.ssh.pam.new-style > debian/openssh-server.ssh.pam | ||
264 | endif | ||
265 | dh_installpam --name ssh # TODO: breaks woody backports | ||
266 | dh_link | ||
267 | dh_strip | ||
268 | dh_compress | ||
269 | dh_fixperms | ||
270 | dh_installdeb | ||
271 | perl -i debian/substitute-conffile.pl \ | ||
272 | ETC_DEFAULT_SSH debian/openssh-server/etc/default/ssh \ | ||
273 | ETC_INIT_D_SSH debian/openssh-server/etc/init.d/ssh \ | ||
274 | ETC_PAM_D_SSH debian/openssh-server/etc/pam.d/ssh \ | ||
275 | debian/openssh-server/DEBIAN/preinst | ||
276 | dh_shlibdeps | ||
277 | dh_gencontrol -- -V'debconf-depends=debconf (>= $(MINDEBCONFVER)) | debconf-2.0' \ | ||
278 | -V'pam-depends=$(PAMDEP)' | ||
279 | dh_md5sums | ||
280 | dh_builddeb | ||
281 | |||
282 | binary-ssh: DH_OPTIONS=-pssh | ||
283 | binary-ssh: build install | ||
284 | dh_testdir | ||
285 | dh_testroot | ||
286 | dh_installdocs | ||
287 | mv debian/ssh/usr/share/doc/ssh debian/ssh/usr/share/doc/openssh-client | ||
288 | rm -f debian/ssh/usr/share/doc/openssh-client/copyright | ||
289 | dh_link | ||
290 | dh_compress | ||
291 | dh_fixperms | ||
292 | dh_installdeb | ||
293 | dh_gencontrol | ||
294 | dh_md5sums | ||
295 | dh_builddeb | ||
296 | |||
297 | binary-ssh-krb5: DH_OPTIONS=-pssh-krb5 | ||
298 | binary-ssh-krb5: build install | ||
299 | dh_testdir | ||
300 | dh_testroot | ||
301 | dh_installdocs | ||
302 | cat debian/copyright.head LICENCE > debian/ssh-krb5/usr/share/doc/ssh-krb5/copyright | ||
303 | dh_installchangelogs ChangeLog ChangeLog.gssapi | ||
304 | dh_link | ||
305 | dh_compress | ||
306 | dh_fixperms | ||
307 | dh_installdeb | ||
308 | dh_gencontrol | ||
309 | dh_md5sums | ||
310 | dh_builddeb | ||
311 | |||
312 | binary-ssh-askpass-gnome: DH_OPTIONS=-pssh-askpass-gnome | ||
313 | binary-ssh-askpass-gnome: build install | ||
314 | dh_testdir | ||
315 | dh_testroot | ||
316 | dh_installdocs | ||
317 | dh_installexamples debian/ssh-askpass-gnome.desktop | ||
318 | dh_installchangelogs ChangeLog ChangeLog.gssapi | ||
319 | dh_strip | ||
320 | dh_compress | ||
321 | dh_fixperms | ||
322 | dh_installdeb | ||
323 | dh_shlibdeps | ||
324 | dh_gencontrol | ||
325 | dh_md5sums | ||
326 | dh_builddeb | ||
327 | |||
328 | binary-openssh-client-udeb: DH_OPTIONS=-popenssh-client-udeb | ||
329 | binary-openssh-client-udeb: build install | ||
330 | dh_testdir | ||
331 | dh_testroot | ||
332 | dh_strip | ||
333 | dh_compress | ||
334 | dh_fixperms | ||
335 | dh_installdeb | ||
336 | install -p -o root -g root -m 755 debian/openssh-client-udeb.isinstallable debian/openssh-client-udeb/DEBIAN/isinstallable | ||
337 | dh_shlibdeps | ||
338 | dh_gencontrol | ||
339 | dh_md5sums | ||
340 | dh_builddeb | ||
341 | |||
342 | binary-openssh-server-udeb: DH_OPTIONS=-popenssh-server-udeb | ||
343 | binary-openssh-server-udeb: build install | ||
344 | dh_testdir | ||
345 | dh_testroot | ||
346 | dh_strip | ||
347 | dh_compress | ||
348 | dh_fixperms | ||
349 | dh_installdeb | ||
350 | dh_shlibdeps | ||
351 | dh_gencontrol | ||
352 | dh_md5sums | ||
353 | dh_builddeb | ||
354 | |||
355 | binary: binary-indep binary-arch | ||
356 | |||
357 | .PHONY: build clean binary-indep binary-arch binary install | ||
358 | .PHONY: build-deb build-udeb | ||
359 | .PHONY: binary-openssh-client binary-openssh-server binary-ssh | ||
360 | .PHONY: binary-ssh-krb5 binary-ssh-askpass-gnome | ||
361 | .PHONY: binary-openssh-client-udeb binary-openssh-server-udeb | ||
diff --git a/debian/ssh-argv0 b/debian/ssh-argv0 new file mode 100644 index 000000000..67599aec2 --- /dev/null +++ b/debian/ssh-argv0 | |||
@@ -0,0 +1,30 @@ | |||
1 | #! /bin/sh -e | ||
2 | |||
3 | # Copyright (c) 2001 Jonathan Amery. | ||
4 | # | ||
5 | # Redistribution and use in source and binary forms, with or without | ||
6 | # modification, are permitted provided that the following conditions | ||
7 | # are met: | ||
8 | # 1. Redistributions of source code must retain the above copyright | ||
9 | # notice, this list of conditions and the following disclaimer. | ||
10 | # 2. Redistributions in binary form must reproduce the above copyright | ||
11 | # notice, this list of conditions and the following disclaimer in the | ||
12 | # documentation and/or other materials provided with the distribution. | ||
13 | # | ||
14 | # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR | ||
15 | # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES | ||
16 | # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. | ||
17 | # IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
18 | # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | ||
19 | # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
20 | # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
21 | # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
22 | # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | ||
23 | # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
24 | |||
25 | if [ "${0##*/}" = "ssh-argv0" ] | ||
26 | then | ||
27 | echo 'ssh-argv0: This script should not be run like this, see ssh-argv0(1) for details' 1>&2 | ||
28 | exit 1 | ||
29 | fi | ||
30 | exec ssh "${0##*/}" "$@" | ||
diff --git a/debian/ssh-argv0.1 b/debian/ssh-argv0.1 new file mode 100644 index 000000000..a36a63d40 --- /dev/null +++ b/debian/ssh-argv0.1 | |||
@@ -0,0 +1,64 @@ | |||
1 | .Dd September 7, 2001 | ||
2 | .Dt SSH-ARGV0 1 | ||
3 | .Os Debian Project | ||
4 | .Sh NAME | ||
5 | .Nm ssh-argv0 | ||
6 | .Nd replaces the old ssh command-name as hostname handling | ||
7 | .Sh SYNOPSIS | ||
8 | .Ar hostname | user@hostname | ||
9 | .Op Fl l Ar login_name | ||
10 | .Op Ar command | ||
11 | .Pp | ||
12 | .Ar hostname | user@hostname | ||
13 | .Op Fl afgknqstvxACNTX1246 | ||
14 | .Op Fl b Ar bind_address | ||
15 | .Op Fl c Ar cipher_spec | ||
16 | .Op Fl e Ar escape_char | ||
17 | .Op Fl i Ar identity_file | ||
18 | .Op Fl l Ar login_name | ||
19 | .Op Fl m Ar mac_spec | ||
20 | .Op Fl o Ar option | ||
21 | .Op Fl p Ar port | ||
22 | .Op Fl F Ar configfile | ||
23 | .Oo Fl L Xo | ||
24 | .Sm off | ||
25 | .Ar port : | ||
26 | .Ar host : | ||
27 | .Ar hostport | ||
28 | .Sm on | ||
29 | .Xc | ||
30 | .Oc | ||
31 | .Oo Fl R Xo | ||
32 | .Sm off | ||
33 | .Ar port : | ||
34 | .Ar host : | ||
35 | .Ar hostport | ||
36 | .Sm on | ||
37 | .Xc | ||
38 | .Oc | ||
39 | .Op Fl D Ar port | ||
40 | .Op Ar command | ||
41 | .Sh DESCRIPTION | ||
42 | .Nm | ||
43 | replaces the old ssh command-name as hostname handling. | ||
44 | If you link to this script with a hostname then executing the link is | ||
45 | equivalent to having executed ssh with that hostname as an argument. | ||
46 | All other arguments are passed to ssh and will be processed normally. | ||
47 | .Sh OPTIONS | ||
48 | See | ||
49 | .Xr ssh 1 . | ||
50 | .Sh FILES | ||
51 | See | ||
52 | .Xr ssh 1 . | ||
53 | .Sh AUTHORS | ||
54 | OpenSSH is a derivative of the original and free | ||
55 | ssh 1.2.12 release by Tatu Ylonen. | ||
56 | Aaron Campbell, Bob Beck, Markus Friedl, Niels Provos, | ||
57 | Theo de Raadt and Dug Song | ||
58 | removed many bugs, re-added newer features and | ||
59 | created OpenSSH. | ||
60 | Markus Friedl contributed the support for SSH | ||
61 | protocol versions 1.5 and 2.0. | ||
62 | Jonathan Amery wrote this ssh-argv0 script and the associated documentation. | ||
63 | .Sh SEE ALSO | ||
64 | .Xr ssh 1 | ||
diff --git a/debian/ssh-askpass-gnome.copyright b/debian/ssh-askpass-gnome.copyright new file mode 100644 index 000000000..4a71dda00 --- /dev/null +++ b/debian/ssh-askpass-gnome.copyright | |||
@@ -0,0 +1,44 @@ | |||
1 | This package contains a Gnome based implementation of ssh-askpass | ||
2 | written by Damien Miller. | ||
3 | |||
4 | It is split out from the main package to isolate the dependency on the | ||
5 | Gnome and X11 libraries. | ||
6 | |||
7 | It was packaged for Debian by Philip Hands <phil@hands.com>. | ||
8 | |||
9 | Copyright: | ||
10 | |||
11 | /* | ||
12 | ** | ||
13 | ** GNOME ssh passphrase requestor | ||
14 | ** | ||
15 | ** Damien Miller <djm@ibs.com.au> | ||
16 | ** | ||
17 | ** Copyright 1999 Internet Business Solutions | ||
18 | ** | ||
19 | ** Permission is hereby granted, free of charge, to any person | ||
20 | ** obtaining a copy of this software and associated documentation | ||
21 | ** files (the "Software"), to deal in the Software without | ||
22 | ** restriction, including without limitation the rights to use, copy, | ||
23 | ** modify, merge, publish, distribute, sublicense, and/or sell copies | ||
24 | ** of the Software, and to permit persons to whom the Software is | ||
25 | ** furnished to do so, subject to the following conditions: | ||
26 | ** | ||
27 | ** The above copyright notice and this permission notice shall be | ||
28 | ** included in all copies or substantial portions of the Software. | ||
29 | ** | ||
30 | ** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY | ||
31 | ** KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE | ||
32 | ** WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE | ||
33 | ** AND NONINFRINGEMENT. IN NO EVENT SHALL DAMIEN MILLER OR INTERNET | ||
34 | ** BUSINESS SOLUTIONS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
35 | ** LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, | ||
36 | ** ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE | ||
37 | ** OR OTHER DEALINGS IN THE SOFTWARE. | ||
38 | ** | ||
39 | ** Except as contained in this notice, the name of Internet Business | ||
40 | ** Solutions shall not be used in advertising or otherwise to promote | ||
41 | ** the sale, use or other dealings in this Software without prior | ||
42 | ** written authorization from Internet Business Solutions. | ||
43 | ** | ||
44 | */ | ||
diff --git a/debian/ssh-askpass-gnome.desktop b/debian/ssh-askpass-gnome.desktop new file mode 100644 index 000000000..eba7a67d1 --- /dev/null +++ b/debian/ssh-askpass-gnome.desktop | |||
@@ -0,0 +1,12 @@ | |||
1 | [Desktop Entry] | ||
2 | Version=1.0 | ||
3 | Encoding=UTF-8 | ||
4 | Name=SSH AskPass | ||
5 | GenericName=ssh-add | ||
6 | Comment=Enter passphrase to authenticate to the ssh agent | ||
7 | Exec=/usr/bin/ssh-add | ||
8 | TryExec=ssh-add | ||
9 | Terminal=false | ||
10 | Type=Application | ||
11 | Icon=ssh-askpass-gnome | ||
12 | Categories=Network;Security; | ||
diff --git a/debian/ssh-askpass-gnome.dirs b/debian/ssh-askpass-gnome.dirs new file mode 100644 index 000000000..8fdeef7ea --- /dev/null +++ b/debian/ssh-askpass-gnome.dirs | |||
@@ -0,0 +1,4 @@ | |||
1 | usr/lib/openssh | ||
2 | usr/share/man/man1 | ||
3 | usr/share/applications | ||
4 | usr/share/pixmaps | ||
diff --git a/debian/ssh-askpass-gnome.png.uue b/debian/ssh-askpass-gnome.png.uue new file mode 100644 index 000000000..2c6895530 --- /dev/null +++ b/debian/ssh-askpass-gnome.png.uue | |||
@@ -0,0 +1,158 @@ | |||
1 | begin 644 ssh-askpass-gnome.png | ||
2 | MB5!.1PT*&@H````-24A$4@```(0```!S"`,```!N#5HT```#`%!,5$7_____ | ||
3 | M__\("`@0$!`8&!@A(2$Y.3E"0D)*2DI24E):6EIC8V-K:VMS<W-[>WN$A(2, | ||
4 | MC(R4E)2<G)REI:6MK:VUM;6]O;W6UM;GY^?O[^]:4E(0"`!*0CE*.2%C6DI[ | ||
5 | M:TK_WI0Q*1@I(1!2.0#6O7N$<TK.M7/_WHSWWI3>QH3OUHSGSH2,>TI".2&M | ||
6 | MC#%*.0A",0!:0@!:4CE22C&<C%JMG&/WWHQ*0BG>QGNEE%HQ*1",<R%*.0!K | ||
7 | M4@",:P"UI6O&M7/_YY1C6CE".1C.K3G6M3ES6@"4<P#&G`"4C&N]K6O.O7.U | ||
8 | MI6-:4C%22BDY,1`I(0!20@![8P"$:P"EA`"MC`"UE`#.I0#6K0#>M0#GO0#W | ||
9 | MQ@#_S@#_[YQ[<TKWYY3>SH36QGMS:T+GUH1K8SE:4BES8QAK6@@Q*0!:2@!C | ||
10 | M4@!K6@",<P"4>P"]G`#&I0#OQ@#WS@#_U@",A%)*0A!S8P@Y,0!S8P#GQ@#O | ||
11 | MS@#_YTI:4AA22A#_W@#.QH3W[YS6SH3_YP"4E(P8&!#__Z4I*1@A(1`0$``8 | ||
12 | M&``A(0`I*0!SA!!SA`![C"%[C#%SC!![E#E[E$I[G%(Q.2F$G&N$I7.$I7M* | ||
13 | M4DHI,2F$K92,K9R$K9R,M:6$C(SO__]C:VM26EI:8V-"2DJ$E)0Q0D(0&!@` | ||
14 | M"`B<SM:,M;V,O<9*:W.$M<8Y4EHQ2E)CC)Q:A)2MY_]SG*V<UN]KE*64SN>, | ||
15 | MQM[6Y^^]SM:4I:TY2E)KC)QCA)2EWO>4QMXQ0DI"8W/&UMZ<SN>,O=9:>XQ2 | ||
16 | M<X0A,3G.WN=*6F-[I;V<UO<I.4*,M<Y2:WN<SN]*8W-SG+5KE*UCC*5*<XRE | ||
17 | MUO=CA)R,O=Y"6FLY4F-KC*52<XQ*:X1:A*4Q4FN4O=Z4QN]*<Y2<I:W>[_\Y | ||
18 | M0DH8(2D8*3FMM;VEK;6,E)QK<WO.WN\A*3%"4F,I.4HA,4(A.5(($!@0*4*U | ||
19 | MO<:4G*4Q.4+>Y_<0(4((&#D`"!@($"$0&#&,C)1S<WL0$!@("!````@````T | ||
20 | M<3]9`````7123E,`0.;89@````%B2T=$`(@%'4@````)<$A9<P``"Q(```L2 | ||
21 | M`=+=?OP````'=$E-10?4`A,0`RQXQ,/8```7GDE$051XG-U;;6P<QWD^T_)' | ||
22 | MTM1!6Q2UN_F@[<;Q1UVO$L>MW3W6K)&[BUO#N[??L\,6"-)D;^]V;V9<+^TF | ||
23 | M6X"5K-OU7_^H_K1VV]`_#"F&8""`)(`N(,D1!(%R#$.R4P-M0K=%:3E.X"22 | ||
24 | M4/&F[\SN'6F)LDA:18H.0-[R;F_WF7?>]WF?]YUEK?;_;;SSRP8@!G]C<^?_ | ||
25 | MVL>O_\25!W%\4Z=__.IMSRUON\(8#O'%39T_<>UW_^LWEW]EJW=;^\>)\=%Q | ||
26 | M_OZF+C/\NQ]^]Y7KG]DBB.4C:_[@RZ.CO>JQ35UFXM]^]K-7]E^]11`O\H-K | ||
27 | M0$R,CMZ=?;<Z.G%T(Y?A'_OG5WYZ[9:=@J^L'D_D\&N/6*&A/83?BWMJM??Y | ||
28 | M1JZRQ`=[=F_HS'7'L4%)">+6R^T?`PCX^\`0"1![($3F^5JW.?G2)2ZSN,RW | ||
29 | MA.&P],,#Q5_*UZ5]M=J/&N?!)Y<%,ER\6=MWS8NUUZ_.U_(6OQ2(+8Z#?+Z\ | ||
30 | M;BR7_]C)6NU[L_>\#%YR\O!P*I@]5UL$(YP,]9/BY/([^R<N=;4MCA//\!?$ | ||
31 | MZVXS@D6HG0377NQ8OZ@=YL-AB@)O<.X,D,5/&GP_?%K%T/.;BYD-C+VW/BI> | ||
32 | M3H:H^/G!V@)__Z5CMWK#I3,\G/*"@+8:X>#,VT-G(``LR6^\JQS\L`MN9;SV | ||
33 | MN'887@XIR.VLG!UR?J8P2*[V^QZE`0DH\=PDXGX.2W!P`CRF]G*:7FD,M1.[ | ||
34 | MK1!>#BH^)I[5;-JNJ;&NRG!0#4I9+R0Y/[>X<A[RV?&A?<V'7.[HX2TY[<^; | ||
35 | M[6_7:MMR`O<+"`GPK)'9H4?%[4L8F1'A@5'G?`)<=-BTG[OTQ5[BG+^WP1N/ | ||
36 | M^.\8V'>O[BG'CW"3C:8>33%/LUA`W1:L1T"P']IS2H-Z!A].\#:.@;QJAQ;6 | ||
37 | MO?">9__^I\\<6?>C"\>^^2KJCP/%OG'&C3GO`08B;AG0-,%!PP@H-KO2%#AN | ||
38 | MH$R9I0%#/</&+/J>R*^'UKWRGO_\X0__8V)CCKO(3Y8'RS"A<Q$N;,!`$T?> | ||
39 | MM,`![G<2S`Q-@B(-!S-U5K@'9I@DV[\-3'&P=GA=$-?]])5_FECWHXO'.Q6* | ||
40 | MDWSOX6T%<G("$S5#GT)0ML$G<;N'LS"7H&RP3*:UY3$)F*7S%?CVWJOWK7?A | ||
41 | MT_-'SN_9&`;P!BY7Y`3GBC5HL8:!`^9PN!..D?!)#SPSYPB._#X&@%H$`(C` | ||
42 | MPXBI#P\<DNSU4<<\W_TB9(YAV)I3XP!K,<->F/>IC`F($8J=0G$$58!A"-.> | ||
43 | MQ@%U4@?^H)G?N69;_OH5`'%8,?5SI]_37,9Z;4+]R,%D.Z^348S`ZAB:6!D1 | ||
44 | M(0&;[=``I6$9M!@IG=T?Y>9\VUOEP3G+:W2:/GAA`K?&R/*SV8(G5(8(_,K2 | ||
45 | M;EMGI$1!?2^@==[-Q)^8I`WS%Q#H^U_8*@@S*N72BP.,"8.I84\3MZ&(346Z | ||
46 | M-C(%I?E4GQ,:E&]@2BV>`WN`:Z*TYX<[3N_=MF7]<B1U>T?^1<)Q2X>G7DCD | ||
47 | MG;"M-15+SAQ,X_(^'L3"!RKCY+GN@=V8I<:TE;=T7@H8OA4=LQ`B]]%30DG` | ||
48 | M)2F&'^*7D\>^YG8&(Y?H:0B;83;B,*8J5@'G]XV>%Y">-F<I7"(8=+9BD+VA | ||
49 | M3[HKQYZ/(!+\6:OR/;GP1I\,5&%R"@G#@3=UGQ(S9L)->;\)D(B/Q!(930;O | ||
50 | MP%!ZR6`+&&HGSJ4^LW-%\$'0YA:M(@"2A)%@3XDQ]6SJ6_)SR"`IK`FS>1Q$ | ||
51 | MMV:5F5#J@@6M-(H)FMA"X;?G2.W$V=3#I*VT/4)=G<>DQ"`LT0+_]('`X2:T | ||
52 | MC!)L*3;#KN%BU.FRRF:^,B=9'&.:7[\50^SGBR\,4X\RTL@;"8;DU?:K\/=Z | ||
53 | M,H,'%.;-2O-07\W[,&L((PE"#H)2>40)[FU*;R[S/179+XJU-("16>:Z`8XX | ||
54 | M5UL$BUCTW<HH;24JB1-<,$^;Y;T)@"#5RC4D1NHFQ<<V`^+5)3YQ\E5Q=/2\ | ||
55 | M0-$@,OHA)-(HS+NV0_W8967,NF%DM*2T(K%B]3J!9`M4CQBM5BD1H0O?+_@G | ||
56 | M-P,"8I,7W]KS@]??W+/"%87SN%P#DMFJUU/5;N:"N"QOT<L];19+0YCQ7)Q6 | ||
57 | MA-*R&'+*<,9`F\*6,;_N8]?MOFX3*/:&5G-[6N0=R[)ZFN)5;)B%X'F(8G\[ | ||
58 | MG\+"%F3*@#LG$A"#O&;YY=*P#$>:+[]%6?5NSOGNS87'6R$089(0QEA&TJB* | ||
59 | M3:!`00P!B5*MW1>P?`A`QZT(&SBRM!EEJ*'$<I5PT`ME<F-UONE.P.F0B+"2 | ||
60 | M[N#'H[S`<D_<(XC:7K?HP^PI%KF<CEFLHK)&P5-?)';LJ0HWQ%G4Y9L/T6/& | ||
61 | M*,J"2DHS1EEJ4YFN(X82<`EK)/=+C%1F%MH'.W7J(BI8HOSQ7S_\U';A033? | ||
62 | M7"?@^,(+^]Z8:-'QQ44@!%T#LB>2R]]6"87[HX$S(J5RM0SI/<1#7D.D4=;B | ||
63 | MC]T^/?/@-E/HP&CBADVA.+'`)[B(<*"Z$13LZH57L@.VFE@FU4+-@BIY`M)F | ||
64 | M8?1+TV!'!6>$]'KO[=.3D],/[A`&M/G5F^3M$]<(;4]]34U(97#6XXI-1JLO | ||
65 | MWC5[,=``]5QIBEA%,LD)K["-+*!(^=KT].<GIR=G'M/!1/[P$7[M)E&(_`T6 | ||
66 | M'O!!MT\(+`<-5,Z[R:JLHZHO[,2B@0]W1B#]31M7R45\M[/KOLG)/Y_\_/3T | ||
67 | MS.XVV%"Y_X_XQ,:\\V!9D!Q7,BD9/0U(,S<L+VFQ?FXWE#0;V8)*WV5.74V" | ||
68 | MLA1$:.Q'A,)-)83;)\$4.>`,[]UY[\9TS7'.;Q$]F2,&*\4T[BKA=GV@#-ID | ||
69 | M+M)8YH^#(9!I@<6)[X[-(^5?J7BGBCNF)Z?EF+EMV"1!>._,?8]L",1+\[>V | ||
70 | MM0<67AZV"5"5"*W,Y':&?*!(["M^@-<&I80R<MY1G"9]$<>9\6>3,]-WWG'' | ||
71 | M']QQQYTSNT()8F:#IJB]&\:)J>E:IV.:T@-`&3E,,E(&]449(./;TG%GH'P/ | ||
72 | M2@(=DBFA5+_WP?N_^A</W`+CTX_MX#X)[Y^9N6W7QHK@VLOO:1YS+;,>1;:\ | ||
73 | M(>OFK/0WR\6ER*.LI&CJ.X15@*@`RLPH$GF5HN+F;?S\?\OQ[/N@[L`2.V<F | ||
74 | M'SJU,1"0S'.3R5')2E0XY82SS$MD[==NS"+9#4@,(R82#VHWP"]Q$I1R#T4% | ||
75 | MY]MNNDJ.F]Y7G4"_^:N_>]<C9S<(`E('CRJV)M+M(>ZE@G/4^JPPRI-APZ[$ | ||
76 | M?R=NE7;HZTW!IY@BZ9F$V,KR",15-^@DT/GYO_E"?@F?V'?HT*'Q=D79%C[X | ||
77 | M/%>K=9?$C$#$@7"C*.P@Z8QVY)<N@;SJ/%@8NNJM\($5\U\=8;CJ-X:$*/S: | ||
78 | MJSXQ7'<[8/_*,'\@'YZMRM8#2Q-']B\(295B&1L@7V%ZF#&_Z0%!%Z5,"/KC | ||
79 | MG#F.3C(.&F$U9#7TX?7_7H'XY!`1_1]NO.J3ZQIB@O<\@A"RBA]7[QQ<EJ)N | ||
80 | M5NEDP%4JCT#&V+-JJDB%Y7ATG%WQ"`A9&[)D#(JXCP_._[H$<;U8CD\`&#YQ | ||
81 | M85EZ<`6T:Q5C.-XQ:F:\-,\C$GB%!:)L`&[G0O74J*J+\4Q!(6AL=>K!*IX/ | ||
82 | M@#*5:V\$QSQK!>2>YZZZ\3-AOKI!(<?Q:Q:/+_$>0428DK7T$<@#9V+XOF_Y | ||
83 | MZ4"-H;KPIXK<&EU^='UJ"_&$^U+]@[A_<H00C6TEYN:EU]YTTW,A`F6^=-,- | ||
84 | MFF@KK-0N'(O#CMES^A!FF!15&_B%H1M('F(T4>'[%+-6WJ!T#*-B=!DPL=08 | ||
85 | M?B[R)H0M-0NV=HTP4I]]E@M%UAJ^'P+/L)YR<7]SD?N99%X(`KV,XB/<HY(- | ||
86 | M`1DK79!YW4KOBA]$QK.MODJ`H7"O34!$M/&:-2*BN<1MH4?,G'==L&L6\[T7 | ||
87 | MH5@H;,_W?4^$8OH\1,GA%8F<(D=8%E<=@*J4DA_T2ME%1UPBDS<$\&R0:8-@ | ||
88 | M5+..<&C;X4Q/_]3G'OO,W=^`C,O4X<41\BYO>_U^7X;]K<^?.C74P!(4>YVP | ||
89 | MDO`CER1RUI0V(U0B0FL^)=C.(<<H;;S6.X6S=4-0O>$7=NZ<V3GSE8>@BG77 | ||
90 | MVSQ<4DG5HL;$#-/VDX7'@C@MRN(*'+/DP("Y/3EO,W5`+U"WX^+2#C)<6*]P | ||
91 | ML<_[:^-4KF0O];+9':!P(*OO_`SH&YPO70RB]EY];#WL(9PUG)[*E9AELG_O | ||
92 | M12489J>)7&]D)7+M'&$%UG2J)%Y/$3C`JO(M^S8"!&KQ/P($=SVX<^?#WP+? | ||
93 | MBBX.$.&<4%M5:D3$G6\6J:H6H2S#LZ@B!!;GAM3\E,D\&:I]P)3I[3)BB*$1 | ||
94 | M%NL?8$XQLD;DY%\%?777%W???=N=#X&_===Q"E'L.&ZR^G7JN^"ICB'4+DRN | ||
95 | MDHZ4N#9X)*V$)/$<47O2_BB-:`:`&*S&1?F;TD[!OW;G],R?[BKL>Q[YRJ-@ | ||
96 | M"7/XG75`[#NK.8Y#5_&+7BE%+H+0&J35U4IU3UI)Y7I5<(QT)6OK/FYQ%'P0 | ||
97 | M!O72W[]M<N>??/KCW$')-U9$-6`-UVV[GQSTG`2-OSVF:%!(.BH#TR]#PE-M | ||
98 | MO.8VX\@!XL\31J"(_P!-@,+(AW=_\9;?_JT;5$9<C5M@2H>OOP&Q9*"Q1T&" | ||
99 | MAADC&85ABBHGU[J5M*N<1Y[I)8A6KDA]O0V5>TK70H"W&\///3:X_L:;%`=C | ||
100 | M1TE]DLPJG*^[1_?ZT!E/@%D-(.(."`@_#)$/BJUK85OKXU6?HTBJ&FQ)RL!& | ||
101 | M#S(QZH`Y&SS&JRE&5,(Z!W%Y_^`9G4#YT#9RR-$6B=9'\;;Z1#`B.P)E0AN< | ||
102 | M,BG@6UP9Y)KI:_%HRT?&72<N^4'F$=P><%!S2E&H^8`G=(US!3W.OW;[Y,R= | ||
103 | MO*/U?+7#>D9@Z0$Q^'JMYN\,03Z6N9!2C?@JQF[!\T+K]7&6T4[JM-S5'$T* | ||
104 | MV[;&7$DS['F^AUB6L?ZM8/=@W.ASP[IV]UU0"^Z`1)Q8AC\7/XTU"V)N>1T0 | ||
105 | MM;=3UW/+]@H*O:B/L:VV$Y9),K4&>@':3E9>6#17HU2+1U'2;[9$]8'+OD@V | ||
106 | MR_V17U#2T>;BIWYG>OIV'F=!7[6@G,G=GL5<?66]1V`.\&Z_FMN<EFH4JITL | ||
107 | MJXB;M&R?H%:YSBTX#8/R9M5L62_/FP$>6PGEG9'<H5;A9];@X9G)VSC!"&C/ | ||
108 | M;GF:#<H!;5^7*VKGM3E7IBSJIWJ[TQ/+'7N5WD66CW%5WK3'&X(E5Q"WH40$ | ||
109 | MCU.6F2-:+481,]Q7[I^9?I##.ZVNV;)\T7Z'DF"X[F[,.]ST9'#8(6_[<:?' | ||
110 | MV*@A!V$`@J342F[:8JO=*6EYB+VG(0F.2,/+I[+2:'H=[(GTS]XW>2=DA@`W | ||
111 | M>:0:'4%[?KCN<M2.<A6F^&20W7KZG8)AY#*O,,L$2HFJD:KV:W3FO*Y;6JQG | ||
112 | M6M()*4#3$):<#F_40]ESI6I=IKC.KKNF9YXJO`R3GE9TA%C!-E\OD\*8US,A | ||
113 | MFDCX_=H0TCAD.U`"I888]X]I*_1G\X9D-MKB)E2=H`(!1J*8CH,"!R>,M@:B | ||
114 | MN4L]1RHP%@^_-#E]&R]Z),.^*XHCA@I^B0?$]G,?M6`UGJG53H5BUR^WF>A3 | ||
115 | MP91SM9)Q)-7U=)2\^P"2(&Q)<NTIL^V>9;@=!UD]44./"9B&.^Z<GGR8\[QC | ||
116 | MH4S4E[9^*4/4#O(H@7NI0O?`S'W-Q*8AI`.)"L1\7URTR0LGJY/*$#M1' | ||
117 | M(B@,7;?"ONKFJ.Y%W!C7"-C)^;:'04Y\]NX!YX6JJ4#;\Y?``$X!E29K<M'9 | ||
118 | M7BA@:FINRB1I<:>E*J))&Q2:7.;8'\EI-E6E..JK/-4=/6D8G0XSN8:J:,GJ | ||
119 | M/$KYW5^Z;_)+MVP7G1_.)S[DX3`.^<)63HO#?;RN<,42P4@3(.0\)M+`IF0. | ||
120 | M9CBF5^V,H8%5S1A0*#R''P7.+X3O^APXS(]<QARQ%3:PYV;YX=JZ6\;CL:21 | ||
121 | M'E^1Y^P56T8EAC[/M61$6Z5[9IK21H$LF@"0U*"R<FF&A6Z8">U/Q8'8-.MS | ||
122 | MBV%;"!7"?-O"U+SLAO%1KJ=\:5]Y"*,M=Y%8J#J5#J9618HL]L`NKNF+O([+ | ||
123 | M$L6'J4/RR`3/0P$-Z@QAHJ4,.Z(FJ4,%Q=S.\/1E,.R#4OA<%3CS?/GTKEAT | ||
124 | MZ@AVF-<J=0Q3O$H]2%0)I&V0.L`.KD5H5QOM?%7TIG5LJ,Q<AL1>0XJQ9^9G | ||
125 | M+O>@X(F]RWM&SQ+L7X%$>QCH1UXN,*TR3S"AJA@;JY\>!*34F8Y:1^W9T4Y4 | ||
126 | MJ<2($^F=?A/RB$AN;2?6^?R)#T4@EV!\M+@LNIE'Y]ME'Y%T1B5=#NHHCD<E | ||
127 | M%NT7FBH;,QBEVFRY^P1RJ.IA,-9*BZ[FL[Z#F:_S]U8N&9?KC1<DXJ-GN27; | ||
128 | M@T3/RJ28<8=V#3L896I?%SUVZ2UN(1[PD/FL9XTR*D;;>6%F;K-C9\;PI3<6 | ||
129 | MEB]OB@O&J[J62TGGB,)#;&P@C@P-,>DI,@NEJXK2$?6!;.EV&VQ$9`%JB*V/ | ||
130 | M)SNY6A<%S^*1#P_/B\?QZ`FC@+3+5.$263_!MF+H3V"YX#*#$3MFHQT9XKB8 | ||
131 | M=45Y$'<JPU$'4]+F4Y"-^=)3,EELVA*[FW/]//>AVH<)LCA,Q(9SV;ZF01X+ | ||
132 | M12J5>-G1Q;)B''1P8.M9E31,09IFC+,F!^;9E$=4X_L%:>E+"[RO%>#@5N'@ | ||
133 | M3!550TD43076I"U:BTPT?JDOB0VCL(.]`:MJC[XIO0-[ROK/&%U^[-_N++TA | ||
134 | MVC:\C:F5BW[JP)1[3M+UE23P):7B1'&#P)9]"8+]P2R2TDF:0I?((#*V^F!- | ||
135 | M;OY(OAX`W6IQD'24@+Y&U18T,]K4?%JVFS-P3U(7:T"D6ND9-B-2$P<1N`X( | ||
136 | MHD>_/-BL0Y9CD8^>0"J8S77)6T(;JG)?FN(X)7HI=,!I$A+5LXI+((N;6=*P | ||
137 | MA?=8!JQ,G?_>7WW]_)9`3(Q*I+>FW)RG3Y8,14A7[CQ[@<L=7E4YF18&4:]T | ||
138 | M!$+P@'<RAF;;8`6_`&OP]XH__+*ZP?;^!\8[8^CSKO[6.RN:6TFK>LP(:[71 | ||
139 | M$UR/L%L&AL==U99-/>J;@<6!/7#65A-,&HWV\)V#>\_=_/5+R;D/!?%J=?#B | ||
140 | M/9T?@.@ZEUM4N"12>Z"!C3YE.>_[#2E`$=,[H=<7U3IMZ9B$N?#,.2V'&H?/ | ||
141 | M?U]<Y?53RUM!,1H+>IGYWE8B#W(G4KJ,M=NP]F&.D>DP4$[;?7.0^WY'B'I7 | ||
142 | MHT&BB$?TL,,ARVJC=O714Q_AV;.5JK5SB',]=C.+-S)/@WC%YA0+K(X(&N[Y | ||
143 | M//=9K'J4Q758H+8D;@:*,G97!>WQS?W7P=JQ4'WUS6\U"Z6H#WACKBT>E(#B | ||
144 | M`"8K>K1)@7`.*T`[4Q14A/A(1.:<RZ\^J9B/O[7E6U\\7FL0I$S,<SY+(IDZ | ||
145 | MJ<R=4QDS5108"E0HKIJP?BJ?N(+<'8D8/YC7GWGU\A??,(AO!&WE1.WXCC@I | ||
146 | M'%8*#>KI&LHZ71+88I,TTTS:4@4XYAK*M@/B:XOA]HN;R%L>;YE)+N;TM\V& | ||
147 | MJ&(2H2ZIEPZ2N:))RBT7%NN>T-<@M%;[00OI/2]>.1!3LBBJ/14_\&+MA16N | ||
148 | M1%!XN2$42;D;5&3I@+CF<0<T?T,=.>313RG+&_I7AXV,?]3+[?9=4S\1+]N$ | ||
149 | M'$\UA7<]W07MCPA"Q%(,G`]7GE?B.7/<M#UZ?-,BXI)CN6IJ\(XTR`+4-YR? | ||
150 | MG9]08]V(F@W#2`L^G%>0!A^??@@Y6WK([3+CQ-65?U55Y`_"S..0#UX.9V\^ | ||
151 | M=>H,+_2<GSY1.^O4!3&^]I`;7HDG4B\8AR:J)\Z7RSW>-VX)K"%H\E>?TIZ# | ||
152 | MWQ"A20$$_58GEA[YK]_<?B6>S;U@'+B0[E:H(?:)CAZ1_S9PC94E\I^/)EJE | ||
153 | MI=Y\8->5!W'1.$,462J=EO])<BC,FM)$9ZUJZ_/X)O\W;$OC)W'Y+/[^\M]9 | ||
154 | M<N_QU\3K2:VH3CBYWJ;&%1X+ZLOEO:Z1++"__DV9LVO;E-$9&WXV_".`J,Q^ | ||
155 | MH(S<`^,GRJX<*UQ^G+Y@=_/\NFWB_^5Q[(+',?;_,D!<.%[_OP"BMI6(_!_$ | ||
156 | 3<O>]/$B.A0````!)14Y$KD)@@@`` | ||
157 | ` | ||
158 | end | ||
diff --git a/debian/ssh-askpass-gnome.postinst b/debian/ssh-askpass-gnome.postinst new file mode 100644 index 000000000..b6c56d4e7 --- /dev/null +++ b/debian/ssh-askpass-gnome.postinst | |||
@@ -0,0 +1,65 @@ | |||
1 | #! /bin/sh | ||
2 | # postinst script for ssh-askpass-gnome | ||
3 | # | ||
4 | # see: dh_installdeb(1) | ||
5 | |||
6 | set -e | ||
7 | |||
8 | # summary of how this script can be called: | ||
9 | # * <postinst> `configure' <most-recently-configured-version> | ||
10 | # * <old-postinst> `abort-upgrade' <new version> | ||
11 | # * <conflictor's-postinst> `abort-remove' `in-favour' <package> | ||
12 | # <new-version> | ||
13 | # * <deconfigured's-postinst> `abort-deconfigure' `in-favour' | ||
14 | # <failed-install-package> <version> `removing' | ||
15 | # <conflicting-package> <version> | ||
16 | # for details, see /usr/share/doc/packaging-manual/ | ||
17 | # | ||
18 | # quoting from the policy: | ||
19 | # Any necessary prompting should almost always be confined to the | ||
20 | # post-installation script, and should be protected with a conditional | ||
21 | # so that unnecessary prompting doesn't happen if a package's | ||
22 | # installation fails and the `postinst' is called with `abort-upgrade', | ||
23 | # `abort-remove' or `abort-deconfigure'. | ||
24 | |||
25 | case "$1" in | ||
26 | configure) | ||
27 | if dpkg --compare-versions "$2" lt-nl 1:4.1p1-1; then | ||
28 | # libexecdir changed, so remove the obsolete alternative. | ||
29 | update-alternatives --quiet --remove ssh-askpass \ | ||
30 | /usr/lib/ssh/gnome-ssh-askpass | ||
31 | fi | ||
32 | if dpkg --compare-versions "$2" lt-nl 1:4.1p1-7 && \ | ||
33 | [ -h /etc/alternatives/ssh-askpass ] && \ | ||
34 | [ "$(readlink /etc/alternatives/ssh-askpass)" = /usr/lib/ssh/gnome-ssh-askpass ]; then | ||
35 | # Work around the ssh-askpass alternative somehow ending up in | ||
36 | # manual mode. | ||
37 | update-alternatives --auto ssh-askpass | ||
38 | fi | ||
39 | update-alternatives --quiet \ | ||
40 | --install /usr/bin/ssh-askpass ssh-askpass \ | ||
41 | /usr/lib/openssh/gnome-ssh-askpass 30 \ | ||
42 | --slave /usr/share/man/man1/ssh-askpass.1.gz \ | ||
43 | ssh-askpass.1.gz /usr/share/man/man1/gnome-ssh-askpass.1.gz | ||
44 | |||
45 | |||
46 | ;; | ||
47 | |||
48 | abort-upgrade|abort-remove|abort-deconfigure) | ||
49 | |||
50 | ;; | ||
51 | |||
52 | *) | ||
53 | echo "postinst called with unknown argument \`$1'" >&2 | ||
54 | exit 0 | ||
55 | ;; | ||
56 | esac | ||
57 | |||
58 | # dh_installdeb will replace this with shell code automatically | ||
59 | # generated by other debhelper scripts. | ||
60 | |||
61 | #DEBHELPER# | ||
62 | |||
63 | exit 0 | ||
64 | |||
65 | |||
diff --git a/debian/ssh-askpass-gnome.prerm b/debian/ssh-askpass-gnome.prerm new file mode 100644 index 000000000..e85f2d4a7 --- /dev/null +++ b/debian/ssh-askpass-gnome.prerm | |||
@@ -0,0 +1,41 @@ | |||
1 | #! /bin/sh | ||
2 | # prerm script for ssh-askpass-gnome | ||
3 | # | ||
4 | # see: dh_installdeb(1) | ||
5 | |||
6 | set -e | ||
7 | |||
8 | # summary of how this script can be called: | ||
9 | # * <prerm> `remove' | ||
10 | # * <old-prerm> `upgrade' <new-version> | ||
11 | # * <new-prerm> `failed-upgrade' <old-version> | ||
12 | # * <conflictor's-prerm> `remove' `in-favour' <package> <new-version> | ||
13 | # * <deconfigured's-prerm> `deconfigure' `in-favour' | ||
14 | # <package-being-installed> <version> `removing' | ||
15 | # <conflicting-package> <version> | ||
16 | # for details, see /usr/share/doc/packaging-manual/ | ||
17 | |||
18 | case "$1" in | ||
19 | remove|deconfigure) | ||
20 | update-alternatives --quiet --remove ssh-askpass /usr/lib/openssh/gnome-ssh-askpass | ||
21 | # install-info --quiet --remove /usr/info/ssh-askpass.info.gz | ||
22 | ;; | ||
23 | upgrade) | ||
24 | # install-info --quiet --remove /usr/info/ssh-askpass.info.gz | ||
25 | ;; | ||
26 | failed-upgrade) | ||
27 | ;; | ||
28 | *) | ||
29 | echo "prerm called with unknown argument \`$1'" >&2 | ||
30 | exit 0 | ||
31 | ;; | ||
32 | esac | ||
33 | |||
34 | # dh_installdeb will replace this with shell code automatically | ||
35 | # generated by other debhelper scripts. | ||
36 | |||
37 | #DEBHELPER# | ||
38 | |||
39 | exit 0 | ||
40 | |||
41 | |||
diff --git a/debian/ssh-krb5.NEWS b/debian/ssh-krb5.NEWS new file mode 100644 index 000000000..5a6433ab2 --- /dev/null +++ b/debian/ssh-krb5.NEWS | |||
@@ -0,0 +1,18 @@ | |||
1 | ssh-krb5 (1:4.3p2-7) unstable; urgency=low | ||
2 | |||
3 | The normal openssh-server and openssh-client packages in Debian now | ||
4 | include full GSSAPI support, including key exchange. This package is | ||
5 | now only a transitional package that depends on openssh-server and | ||
6 | openssh-client and configures openssh-server for GSSAPI authentication | ||
7 | if it wasn't already. | ||
8 | |||
9 | You can now simply install openssh-server and openssh-client directly | ||
10 | and remove this package. Just make sure that /etc/ssh/sshd_config | ||
11 | contains: | ||
12 | |||
13 | GSSAPIAuthentication yes | ||
14 | GSSAPIKeyExchange yes | ||
15 | |||
16 | if you want to support GSSAPI authentication to your ssh server. | ||
17 | |||
18 | -- Russ Allbery <rra@debian.org> Tue, 03 Oct 2006 22:27:27 -0700 | ||
diff --git a/debian/ssh-krb5.postinst b/debian/ssh-krb5.postinst new file mode 100644 index 000000000..4d943d861 --- /dev/null +++ b/debian/ssh-krb5.postinst | |||
@@ -0,0 +1,73 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | set -e | ||
4 | |||
5 | action="$1" | ||
6 | oldversion="$2" | ||
7 | |||
8 | if [ "$action" = configure ] ; then | ||
9 | if dpkg --compare-versions "$oldversion" lt-nl 1:4.3p2-7; then | ||
10 | # Replaced by /etc/init.d/ssh. | ||
11 | if [ -f /etc/init.d/ssh-krb5 ]; then | ||
12 | mv /etc/init.d/ssh-krb5 /etc/init.d/ssh-krb5.dpkg-old | ||
13 | update-rc.d ssh-krb5 remove || true | ||
14 | fi | ||
15 | fi | ||
16 | |||
17 | # Make sure that GSSAPI is enabled. If there is no uncommented GSSAPI | ||
18 | # configuration, uncomment any commented-out configuration if present | ||
19 | # (this will catch the case of a fresh install of openssh-server). | ||
20 | # Otherwise, add configuration turning on GSSAPIAuthentication and | ||
21 | # GSSAPIKeyExchange. | ||
22 | # | ||
23 | # If there is some configuration, we may be upgrading from ssh-krb5. It | ||
24 | # enabled GSSAPIKeyExchange without any configuration option. Therefore, | ||
25 | # if it isn't explicitly set, always enable it for compatible behavior | ||
26 | # with ssh-krb5. | ||
27 | if dpkg --compare-versions "$oldversion" ge 1:4.3p2-9; then | ||
28 | : | ||
29 | else | ||
30 | changed= | ||
31 | if grep -qi '^[ ]*GSSAPI' /etc/ssh/sshd_config ; then | ||
32 | if grep -qi '^[ ]*GSSAPIKeyExchange' /etc/ssh/sshd_config ; then | ||
33 | : | ||
34 | else | ||
35 | changed=true | ||
36 | cat >> /etc/ssh/sshd_config <<EOF | ||
37 | |||
38 | # GSSAPI key exchange (added by ssh-krb5 transitional package) | ||
39 | GSSAPIKeyExchange yes | ||
40 | EOF | ||
41 | fi | ||
42 | else | ||
43 | changed=true | ||
44 | if grep -qi '^#GSSAPI' /etc/ssh/sshd_config ; then | ||
45 | perl -pe 's/^\#(GSSAPI(Authentication|KeyExchange))\b.*/$1 yes/i' \ | ||
46 | < /etc/ssh/sshd_config > /etc/ssh/sshd_config.dpkg-new | ||
47 | chown --reference /etc/ssh/sshd_config \ | ||
48 | /etc/ssh/sshd_config.dpkg-new | ||
49 | chmod --reference /etc/ssh/sshd_config \ | ||
50 | /etc/ssh/sshd_config.dpkg-new | ||
51 | mv /etc/ssh/sshd_config.dpkg-new /etc/ssh/sshd_config | ||
52 | else | ||
53 | cat >> /etc/ssh/sshd_config <<EOF | ||
54 | |||
55 | # GSSAPI authentication (added by ssh-krb5 transitional package) | ||
56 | GSSAPIAuthentication yes | ||
57 | GSSAPIKeyExchange yes | ||
58 | EOF | ||
59 | fi | ||
60 | fi | ||
61 | if [ -n "$changed" ] && [ -x /etc/init.d/ssh ] ; then | ||
62 | if [ -x /usr/sbin/invoke-rc.d ] ; then | ||
63 | invoke-rc.d ssh restart | ||
64 | else | ||
65 | /etc/init.d/ssh restart | ||
66 | fi | ||
67 | fi | ||
68 | fi | ||
69 | fi | ||
70 | |||
71 | #DEBHELPER# | ||
72 | |||
73 | exit 0 | ||
diff --git a/debian/ssh.links b/debian/ssh.links new file mode 100644 index 000000000..bc454b326 --- /dev/null +++ b/debian/ssh.links | |||
@@ -0,0 +1 @@ | |||
usr/share/doc/openssh-client usr/share/doc/ssh | |||
diff --git a/debian/ssh.postinst b/debian/ssh.postinst new file mode 100644 index 000000000..cb1278033 --- /dev/null +++ b/debian/ssh.postinst | |||
@@ -0,0 +1,18 @@ | |||
1 | #!/bin/sh -e | ||
2 | |||
3 | action="$1" | ||
4 | oldversion="$2" | ||
5 | |||
6 | if [ "$action" != configure ]; then | ||
7 | exit 0 | ||
8 | fi | ||
9 | |||
10 | if [ ! -L /usr/share/doc/ssh ] && \ | ||
11 | dpkg --compare-versions "$oldversion" lt-nl 1:4.1p1-5; then | ||
12 | rm -rf /usr/share/doc/ssh | ||
13 | ln -s openssh-client /usr/share/doc/ssh | ||
14 | fi | ||
15 | |||
16 | #DEBHELPER# | ||
17 | |||
18 | exit 0 | ||
diff --git a/debian/ssh.prerm b/debian/ssh.prerm new file mode 100644 index 000000000..400c92bed --- /dev/null +++ b/debian/ssh.prerm | |||
@@ -0,0 +1,14 @@ | |||
1 | #!/bin/sh -e | ||
2 | |||
3 | case $1 in | ||
4 | upgrade) | ||
5 | if [ -L /usr/share/doc/ssh ] && \ | ||
6 | dpkg --compare-versions "$2" lt-nl 1:4.1p1-5; then | ||
7 | rm -f /usr/share/doc/ssh | ||
8 | fi | ||
9 | ;; | ||
10 | esac | ||
11 | |||
12 | #DEBHELPER# | ||
13 | |||
14 | exit 0 | ||
diff --git a/debian/substitute-conffile.pl b/debian/substitute-conffile.pl new file mode 100644 index 000000000..7dd23363e --- /dev/null +++ b/debian/substitute-conffile.pl | |||
@@ -0,0 +1,26 @@ | |||
1 | #! /usr/bin/perl -p | ||
2 | |||
3 | # This is needed for a nasty preinst hack to work around a bug in sarge's | ||
4 | # version of dpkg. It substitutes the literal text of conffiles into preinst | ||
5 | # scripts so that they can be used when moving conffiles between packages. | ||
6 | |||
7 | BEGIN { | ||
8 | %texts = (); | ||
9 | while (@ARGV > 1) { | ||
10 | my $name = $ARGV[0]; | ||
11 | shift; | ||
12 | local *FILE; | ||
13 | open FILE, '<', $ARGV[0]; | ||
14 | local $/ = undef; | ||
15 | my $text = <FILE>; | ||
16 | close FILE; | ||
17 | # Quote for the shell. | ||
18 | $text =~ s/'/'\\''/g; | ||
19 | shift; | ||
20 | $texts{$name} = $text; | ||
21 | } | ||
22 | } | ||
23 | |||
24 | for my $name (keys %texts) { | ||
25 | s/\@$name\@/'$texts{$name}'/g; | ||
26 | } | ||
diff --git a/debian/watch b/debian/watch new file mode 100644 index 000000000..6ffdc3708 --- /dev/null +++ b/debian/watch | |||
@@ -0,0 +1,3 @@ | |||
1 | version=2 | ||
2 | ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-(.*)\.tar\.gz \ | ||
3 | debian uupdate | ||