diff options
Diffstat (limited to 'debian')
83 files changed, 15196 insertions, 0 deletions
diff --git a/debian/.cvsignore b/debian/.cvsignore new file mode 100644 index 000000000..c64e8f51d --- /dev/null +++ b/debian/.cvsignore | |||
@@ -0,0 +1,12 @@ | |||
1 | *.debhelper* | ||
2 | *substvars | ||
3 | copyright | ||
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/README.compromised-keys b/debian/README.compromised-keys new file mode 100644 index 000000000..7a9cb7657 --- /dev/null +++ b/debian/README.compromised-keys | |||
@@ -0,0 +1,167 @@ | |||
1 | The following instructions relate to CVE-2008-0166. They were prepared by | ||
2 | Matt Zimmerman, assisted by Colin Watson. | ||
3 | |||
4 | == What Happened == | ||
5 | |||
6 | A weakness has been discovered in the random number generator used by OpenSSL | ||
7 | on Debian and Ubuntu systems. As a result of this weakness, certain encryption | ||
8 | keys are much more common than they should be, such that an attacker could | ||
9 | guess the key through a brute-force attack given minimal knowledge of the | ||
10 | system. This particularly affects the use of encryption keys in OpenSSH, | ||
11 | OpenVPN and SSL certificates. | ||
12 | |||
13 | This vulnerability only affects operating systems which (like Ubuntu) are based | ||
14 | on Debian. However, other systems can be indirectly affected if weak keys are | ||
15 | imported into them. | ||
16 | |||
17 | We consider this an extremely serious vulnerability, and urge all users to act | ||
18 | immediately to secure their systems. | ||
19 | |||
20 | == Who is affected == | ||
21 | |||
22 | Systems which are running any of the following releases: | ||
23 | |||
24 | * Debian 4.0 (etch) | ||
25 | * Ubuntu 7.04 (Feisty) | ||
26 | * Ubuntu 7.10 (Gutsy) | ||
27 | * Ubuntu 8.04 LTS (Hardy) | ||
28 | * Ubuntu "Intrepid Ibex" (development): libssl <= 0.9.8g-8 | ||
29 | |||
30 | and have openssh-server installed or have been used to create an OpenSSH key or | ||
31 | X.509 (SSL) certificate. | ||
32 | |||
33 | All OpenSSH and X.509 keys generated on such systems must be considered | ||
34 | untrustworthy, regardless of the system on which they are used, even after the | ||
35 | update has been applied. | ||
36 | |||
37 | This includes the automatically generated host keys used by OpenSSH, which are | ||
38 | the basis for its server spoofing and man-in-the-middle protection. | ||
39 | |||
40 | The specific package versions affected are: | ||
41 | |||
42 | * Debian 4.0: libssl <= 0.9.8c-4etch3 | ||
43 | * Ubuntu 7.04: libssl <= 0.9.8c-4ubuntu0.2 | ||
44 | * Ubuntu 7.10: libssl <= 0.9.8e-5ubuntu3.1 | ||
45 | * Ubuntu 8.04: libssl <= 0.9.8g-4ubuntu3 | ||
46 | |||
47 | == What to do if you are affected == | ||
48 | |||
49 | OpenSSH: | ||
50 | |||
51 | 1. Install the security updates | ||
52 | |||
53 | Once the update is applied, weak user keys will be automatically rejected | ||
54 | where possible (though they cannot be detected in all cases). If you are | ||
55 | using such keys for user authentication, they will immediately stop working | ||
56 | and will need to be replaced (see step 3). | ||
57 | |||
58 | OpenSSH host keys can be automatically regenerated when the OpenSSH security | ||
59 | update is applied. The update will prompt for confirmation before taking | ||
60 | this step. | ||
61 | |||
62 | 2. Update OpenSSH known_hosts files | ||
63 | |||
64 | The regeneration of host keys will cause a warning to be displayed when | ||
65 | connecting to the system using SSH until the host key is updated in the | ||
66 | known_hosts file. The warning will look like this: | ||
67 | |||
68 | @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ | ||
69 | @ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @ | ||
70 | @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ | ||
71 | IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY! | ||
72 | Someone could be eavesdropping on you right now (man-in-the-middle attack)! | ||
73 | It is also possible that the RSA host key has just been changed. | ||
74 | |||
75 | In this case, the host key has simply been changed, and you should update | ||
76 | the relevant known_hosts file as indicated in the error message. | ||
77 | |||
78 | 3. Check all OpenSSH user keys | ||
79 | |||
80 | The safest course of action is to regenerate all OpenSSH user keys, | ||
81 | except where it can be established to a high degree of certainty that the | ||
82 | key was generated on an unaffected system. | ||
83 | |||
84 | Check whether your key is affected by running the ssh-vulnkey tool, included | ||
85 | in the security update. By default, ssh-vulnkey will check the standard | ||
86 | location for user keys (~/.ssh/id_rsa, ~/.ssh/id_dsa and ~/.ssh/identity), | ||
87 | your authorized_keys file (~/.ssh/authorized_keys and | ||
88 | ~/.ssh/authorized_keys2), and the system's host keys | ||
89 | (/etc/ssh/ssh_host_dsa_key and /etc/ssh/ssh_host_rsa_key). | ||
90 | |||
91 | To check all your own keys, assuming they are in the standard | ||
92 | locations (~/.ssh/id_rsa, ~/.ssh/id_dsa, or ~/.ssh/identity): | ||
93 | |||
94 | ssh-vulnkey | ||
95 | |||
96 | To check all keys on your system: | ||
97 | |||
98 | sudo ssh-vulnkey -a | ||
99 | |||
100 | To check a key in a non-standard location: | ||
101 | |||
102 | ssh-vulnkey /path/to/key | ||
103 | |||
104 | If ssh-vulnkey says "Unknown (no blacklist information)", then it has no | ||
105 | information about whether that key is affected. If in doubt, destroy the | ||
106 | key and generate a new one. | ||
107 | |||
108 | 4. Regenerate any affected user keys | ||
109 | |||
110 | OpenSSH keys used for user authentication must be manually regenerated, | ||
111 | including those which may have since been transferred to a different system | ||
112 | after being generated. | ||
113 | |||
114 | New keys can be generated using ssh-keygen, e.g.: | ||
115 | |||
116 | $ ssh-keygen | ||
117 | Generating public/private rsa key pair. | ||
118 | Enter file in which to save the key (/home/user/.ssh/id_rsa): | ||
119 | Enter passphrase (empty for no passphrase): | ||
120 | Enter same passphrase again: | ||
121 | Your identification has been saved in /home/user/.ssh/id_rsa. | ||
122 | Your public key has been saved in /home/user/.ssh/id_rsa.pub. | ||
123 | The key fingerprint is: | ||
124 | 00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00 user@host | ||
125 | |||
126 | 5. Update authorized_keys files (if necessary) | ||
127 | |||
128 | Once the user keys have been regenerated, the relevant public keys must | ||
129 | be propagated to any authorized_keys files on remote systems. Be sure to | ||
130 | delete the affected key. | ||
131 | |||
132 | OpenSSL: | ||
133 | |||
134 | 1. Install the security update | ||
135 | |||
136 | 2. Create new certificates to replace any server or client certificates in use | ||
137 | on the system | ||
138 | |||
139 | 3. If certificates have been generated for use on other systems, they must be | ||
140 | found and replaced as well. | ||
141 | |||
142 | == Removing openssh-blacklist == | ||
143 | |||
144 | For the moment, the openssh-server package depends on openssh-blacklist, in | ||
145 | order that the blacklist is deployed to the maximum possible number of | ||
146 | systems to reduce the potential spread of worms exploiting this | ||
147 | vulnerability. We acknowledge that this may be inconvenient for some small | ||
148 | systems, but nevertheless feel that this was the best course of action. | ||
149 | |||
150 | If you absolutely need to remove the blacklist from your system, then you | ||
151 | can run the following commands to substitute a fake package for | ||
152 | openssh-blacklist: | ||
153 | |||
154 | sudo apt-get install equivs | ||
155 | equivs-control openssh-blacklist.ctl | ||
156 | sed -i 's/^Package:.*/Package: openssh-blacklist/' openssh-blacklist.ctl | ||
157 | sed -i 's/^# Version:.*/Version: 9:1.0/' openssh-blacklist.ctl | ||
158 | equivs-build openssh-blacklist.ctl | ||
159 | sudo dpkg -i openssh-blacklist_1.0_all.deb | ||
160 | |||
161 | Be warned: this circumvents a security measure for the sake of disk space. | ||
162 | You should only do this if you have no other option, and if you are certain | ||
163 | that no compromised keys will ever be generated on or copied onto this | ||
164 | system. | ||
165 | |||
166 | Once a sufficient amount of time and number of releases have passed, the | ||
167 | openssh-blacklist package will be phased out. | ||
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 000000000..1530329a9 --- /dev/null +++ b/debian/changelog | |||
@@ -0,0 +1,2734 @@ | |||
1 | openssh (1:5.1p1-1) UNRELEASED; urgency=low | ||
2 | |||
3 | * New upstream release (closes: #474301). Important changes not previously | ||
4 | backported to 4.7p1: | ||
5 | - 4.9/4.9p1 (http://www.openssh.com/txt/release-4.9): | ||
6 | + Added chroot(2) support for sshd(8), controlled by a new option | ||
7 | "ChrootDirectory" (closes: #139047, LP: #24777). | ||
8 | + Linked sftp-server(8) into sshd(8). The internal sftp server is used | ||
9 | when the command "internal-sftp" is specified in a Subsystem or | ||
10 | ForceCommand declaration. When used with ChrootDirectory, the | ||
11 | internal sftp server requires no special configuration of files | ||
12 | inside the chroot environment. | ||
13 | + Added a protocol extension method "posix-rename@openssh.com" for | ||
14 | sftp-server(8) to perform POSIX atomic rename() operations; sftp(1) | ||
15 | prefers this if available (closes: #308561). | ||
16 | + Removed the fixed limit of 100 file handles in sftp-server(8). | ||
17 | + ssh(8) will now skip generation of SSH protocol 1 ephemeral server | ||
18 | keys when in inetd mode and protocol 2 connections are negotiated. | ||
19 | This speeds up protocol 2 connections to inetd-mode servers that | ||
20 | also allow Protocol 1. | ||
21 | + Accept the PermitRootLogin directive in a sshd_config(5) Match | ||
22 | block. Allows for, e.g. permitting root only from the local network. | ||
23 | + Reworked sftp(1) argument splitting and escaping to be more | ||
24 | internally consistent (i.e. between sftp commands) and more | ||
25 | consistent with sh(1). Please note that this will change the | ||
26 | interpretation of some quoted strings, especially those with | ||
27 | embedded backslash escape sequences. | ||
28 | + Support "Banner=none" in sshd_config(5) to disable sending of a | ||
29 | pre-login banner (e.g. in a Match block). | ||
30 | + ssh(1) ProxyCommands are now executed with $SHELL rather than | ||
31 | /bin/sh. | ||
32 | + ssh(1)'s ConnectTimeout option is now applied to both the TCP | ||
33 | connection and the SSH banner exchange (previously it just covered | ||
34 | the TCP connection). This allows callers of ssh(1) to better detect | ||
35 | and deal with stuck servers that accept a TCP connection but don't | ||
36 | progress the protocol, and also makes ConnectTimeout useful for | ||
37 | connections via a ProxyCommand. | ||
38 | + scp(1) incorrectly reported "stalled" on slow copies (closes: | ||
39 | #140828). | ||
40 | + scp(1) date underflow for timestamps before epoch. | ||
41 | + ssh(1) used the obsolete SIG DNS RRtype for host keys in DNS, | ||
42 | instead of the current standard RRSIG. | ||
43 | + Correctly drain ACKs when a sftp(1) upload write fails midway, | ||
44 | avoids a fatal() exit from what should be a recoverable condition. | ||
45 | + Fixed ssh-keygen(1) selective host key hashing (i.e. "ssh-keygen -HF | ||
46 | hostname") to not include any IP address in the data to be hashed. | ||
47 | + Make ssh(1) skip listening on the IPv6 wildcard address when a | ||
48 | binding address of 0.0.0.0 is used against an old SSH server that | ||
49 | does not support the RFC4254 syntax for wildcard bind addresses. | ||
50 | + Enable IPV6_V6ONLY socket option on sshd(8) listen socket, as is | ||
51 | already done for X11/TCP forwarding sockets (closes: #439661). | ||
52 | + Fix FD leak that could hang a ssh(1) connection multiplexing master. | ||
53 | + Make ssh(1) -q option documentation consistent with reality. | ||
54 | + Fixed sshd(8) PAM support not calling pam_session_close(), or | ||
55 | failing to call it with root privileges (closes: #372680). | ||
56 | + Fix activation of OpenSSL engine support when requested in configure | ||
57 | (LP: #119295). | ||
58 | - 5.1/5.1p1 (http://www.openssh.com/txt/release-5.1): | ||
59 | + Introduce experimental SSH Fingerprint ASCII Visualisation to ssh(1) | ||
60 | and ssh-keygen(1). Visual fingerprint display is controlled by a new | ||
61 | ssh_config(5) option "VisualHostKey". The intent is to render SSH | ||
62 | host keys in a visual form that is amenable to easy recall and | ||
63 | rejection of changed host keys. | ||
64 | + sshd_config(5) now supports CIDR address/masklen matching in "Match | ||
65 | address" blocks, with a fallback to classic wildcard matching. | ||
66 | + sshd(8) now supports CIDR matching in ~/.ssh/authorized_keys | ||
67 | from="..." restrictions, also with a fallback to classic wildcard | ||
68 | matching. | ||
69 | + Added an extended test mode (-T) to sshd(8) to request that it write | ||
70 | its effective configuration to stdout and exit. Extended test mode | ||
71 | also supports the specification of connection parameters (username, | ||
72 | source address and hostname) to test the application of | ||
73 | sshd_config(5) Match rules. | ||
74 | + ssh(1) now prints the number of bytes transferred and the overall | ||
75 | connection throughput for SSH protocol 2 sessions when in verbose | ||
76 | mode (previously these statistics were displayed for protocol 1 | ||
77 | connections only). | ||
78 | + sftp-server(8) now supports extension methods statvfs@openssh.com | ||
79 | and fstatvfs@openssh.com that implement statvfs(2)-like operations. | ||
80 | + sftp(1) now has a "df" command to the sftp client that uses the | ||
81 | statvfs@openssh.com to produce a df(1)-like display of filesystem | ||
82 | space and inode utilisation (requires statvfs@openssh.com support on | ||
83 | the server). | ||
84 | + Added a MaxSessions option to sshd_config(5) to allow control of the | ||
85 | number of multiplexed sessions supported over a single TCP | ||
86 | connection. This allows increasing the number of allowed sessions | ||
87 | above the previous default of 10, disabling connection multiplexing | ||
88 | (MaxSessions=1) or disallowing login/shell/subsystem sessions | ||
89 | entirely (MaxSessions=0). | ||
90 | + Added a no-more-sessions@openssh.com global request extension that | ||
91 | is sent from ssh(1) to sshd(8) when the client knows that it will | ||
92 | never request another session (i.e. when session multiplexing is | ||
93 | disabled). This allows a server to disallow further session requests | ||
94 | and terminate the session in cases where the client has been | ||
95 | hijacked. | ||
96 | + ssh-keygen(1) now supports the use of the -l option in combination | ||
97 | with -F to search for a host in ~/.ssh/known_hosts and display its | ||
98 | fingerprint. | ||
99 | + ssh-keyscan(1) now defaults to "rsa" (protocol 2) keys, instead of | ||
100 | "rsa1". | ||
101 | + Added an AllowAgentForwarding option to sshd_config(8) to control | ||
102 | whether authentication agent forwarding is permitted. Note that this | ||
103 | is a loose control, as a client may install their own unofficial | ||
104 | forwarder. | ||
105 | + ssh(1) and sshd(8): avoid unnecessary malloc/copy/free when | ||
106 | receiving network data, resulting in a ~10% speedup. | ||
107 | + ssh(1) and sshd(8) will now try additional addresses when connecting | ||
108 | to a port forward destination whose DNS name resolves to more than | ||
109 | one address. The previous behaviour was to try the only first | ||
110 | address and give up if that failed. | ||
111 | + ssh(1) and sshd(8) now support signalling that channels are | ||
112 | half-closed for writing, through a channel protocol extension | ||
113 | notification "eow@openssh.com". This allows propagation of closed | ||
114 | file descriptors, so that commands such as "ssh -2 localhost od | ||
115 | /bin/ls | true" do not send unnecessary data over the wire. | ||
116 | + sshd(8): increased the default size of ssh protocol 1 ephemeral keys | ||
117 | from 768 to 1024 bits. | ||
118 | + When ssh(1) has been requested to fork after authentication ("ssh | ||
119 | -f") with ExitOnForwardFailure enabled, delay the fork until after | ||
120 | replies for any -R forwards have been seen. Allows for robust | ||
121 | detection of -R forward failure when using -f. | ||
122 | + "Match group" blocks in sshd_config(5) now support negation of | ||
123 | groups. E.g. "Match group staff,!guests". | ||
124 | + sftp(1) and sftp-server(8) now allow chmod-like operations to set | ||
125 | set[ug]id/sticky bits. | ||
126 | + The MaxAuthTries option is now permitted in sshd_config(5) match | ||
127 | blocks. | ||
128 | + Multiplexed ssh(1) sessions now support a subset of the ~ escapes | ||
129 | that are available to a primary connection. | ||
130 | + ssh(1) connection multiplexing will now fall back to creating a new | ||
131 | connection in most error cases (closes: #352830). | ||
132 | + Make ssh(1) deal more gracefully with channel requests that fail. | ||
133 | Previously it would optimistically assume that requests would always | ||
134 | succeed, which could cause hangs if they did not (e.g. when the | ||
135 | server runs out of file descriptors). | ||
136 | + ssh(1) now reports multiplexing errors via the multiplex slave's | ||
137 | stderr where possible (subject to LogLevel in the mux master). | ||
138 | + Prevent sshd(8) from erroneously applying public key restrictions | ||
139 | leaned from ~/.ssh/authorized_keys to other authentication methods | ||
140 | when public key authentication subsequently fails (LP: #161047). | ||
141 | + Fixed an UMAC alignment problem that manifested on Itanium | ||
142 | platforms. | ||
143 | |||
144 | -- Colin Watson <cjwatson@ubuntu.com> Tue, 22 Jul 2008 17:34:06 +0100 | ||
145 | |||
146 | openssh (1:4.7p1-13) unstable; urgency=low | ||
147 | |||
148 | * Add some helpful advice to the end of ssh-vulnkey's output if there are | ||
149 | unknown or compromised keys (thanks, Dan Jacobson; closes: #483756). | ||
150 | * Check compromised key blacklist in ssh or ssh-add, as well as in the | ||
151 | server (LP: #232391). To override the blacklist check in ssh | ||
152 | temporarily, use 'ssh -o UseBlacklistedKeys=yes'; there is no override | ||
153 | for the blacklist check in ssh-add. | ||
154 | * Add cross-references to ssh-vulnkey(1) to ssh(1), ssh-add(1), | ||
155 | ssh-keygen(1), and sshd(8) (closes: #484451). | ||
156 | * Change openssh-client-udeb's Installer-Menu-Item from 99900 to 99999 | ||
157 | (thanks, Frans Pop). | ||
158 | * Drop openssh-client-udeb isinstallable hack, as main-menu (>= 1.26) now | ||
159 | takes care of that (thanks, Frans Pop; closes: #484404). | ||
160 | * Update DEB_BUILD_OPTIONS parsing code from policy 3.8.0. | ||
161 | * Add documentation on removing openssh-blacklist locally (see #484269). | ||
162 | * Clarify documentation of SSHD_OOM_ADJUST, and make setting it to the | ||
163 | empty string actually skip adjustment as intended (closes: #487325). | ||
164 | * Remove empty /usr/share/applications directory in ssh-askpass-gnome. | ||
165 | * debconf template translations: | ||
166 | - Update Romanian (thanks, Cătălin Feștilă; closes: #485415). | ||
167 | |||
168 | -- Colin Watson <cjwatson@debian.org> Mon, 21 Jul 2008 12:18:28 +0100 | ||
169 | |||
170 | openssh (1:4.7p1-12) unstable; urgency=low | ||
171 | |||
172 | * Fill in CVE identifier for ssh-vulnkey bug fixed in 1:4.7p1-10. | ||
173 | * Refactor rejection of blacklisted user keys into a single | ||
174 | reject_blacklisted_key function in auth.c (thanks, Dmitry V. Levin). | ||
175 | * Fix memory leak of blacklisted host keys (thanks, Dmitry V. Levin). | ||
176 | * debconf template translations: | ||
177 | - Update Dutch (thanks, Bart Cornelis; closes: #483004). | ||
178 | - Update Brazilian Portuguese (thanks, Eder L. Marques; closes: | ||
179 | #483142). | ||
180 | - Update Slovak (thanks, Ivan Masár; closes: #483517). | ||
181 | |||
182 | -- Colin Watson <cjwatson@debian.org> Thu, 29 May 2008 21:41:29 +0100 | ||
183 | |||
184 | openssh (1:4.7p1-11) unstable; urgency=low | ||
185 | |||
186 | * Make init script depend on $syslog, and fix some other dependency | ||
187 | glitches (thanks, Petter Reinholdtsen; closes: #481018). | ||
188 | * Remove 0 and 6 from Default-Stop in init script (thanks, Kel Modderman; | ||
189 | closes: #481151). | ||
190 | * Restore OOM killer adjustment for child processes (thanks, Vaclav Ovsik; | ||
191 | closes: #480020). | ||
192 | * Allow building with heimdal-dev (LP: #125805). | ||
193 | |||
194 | * Check RSA1 keys without the need for a separate blacklist. Thanks to | ||
195 | Simon Tatham for the idea. | ||
196 | * Generate two keys with the PID forced to the same value and test that | ||
197 | they differ, to defend against recurrences of the recent Debian OpenSSL | ||
198 | vulnerability. | ||
199 | * Recommend openssh-blacklist from openssh-client (closes: #481187). | ||
200 | * Recommend openssh-blacklist-extra from openssh-client and | ||
201 | openssh-server. | ||
202 | * Make ssh-vulnkey report the file name and line number for each key | ||
203 | (thanks, Heiko Schlittermann and Christopher Perry; closes: #481398). | ||
204 | * Check for blacklists in /usr/share/ssh/ as well as /etc/ssh/ (see | ||
205 | #481283). | ||
206 | * Log IP addresses of hosts attempting to use blacklisted keys (closes: | ||
207 | #481721). | ||
208 | * Incorporate various ssh-vulnkey suggestions from Hugh Daniel: | ||
209 | - Add -v (verbose) option, and don't print output for keys that have a | ||
210 | blacklist file but that are not listed unless in verbose mode. | ||
211 | - Move exit status documentation to a separate section. | ||
212 | - Document key status descriptions. | ||
213 | - Add key type to output. | ||
214 | - Fix error output if ssh-vulnkey fails to read key files, with the | ||
215 | exception of host keys unless -a was given. | ||
216 | - In verbose mode, output the name of each file examined. | ||
217 | * Handle leading IP addresses in ssh-vulnkey input (LP: #230497). | ||
218 | * Fix various ssh-vulnkey problems pointed out by Solar Designer: | ||
219 | - Fix some buffer handling inconsistencies. | ||
220 | - Use xasprintf to build user key file names, avoiding truncation | ||
221 | problems. | ||
222 | - Drop to the user's UID when reading user keys with -a. | ||
223 | - Use EUID rather than UID when run with no file names and without -a. | ||
224 | - Reword "Unknown (no blacklist information)" to "Unknown (blacklist | ||
225 | file not installed)". | ||
226 | |||
227 | * Fix typo in ssh/vulnerable_host_keys message (thanks, Esko Arajärvi). | ||
228 | * debconf template translations: | ||
229 | - Update Finnish (thanks, Esko Arajärvi; closes: #481530). | ||
230 | - Update French (thanks, Christian Perrier; closes: #481576). | ||
231 | - Update Norwegian Bokmål (thanks, Bjørn Steensrud; closes: #481591). | ||
232 | - Update Galician (thanks, Jacobo Tarrio; closes: #481596). | ||
233 | - Update Japanese (thanks, Kenshi Muto; closes: #481621). | ||
234 | - Update Czech (thanks, Miroslav Kure; closes: #481624). | ||
235 | - Update German (thanks, Helge Kreutzmann; closes: #481676). | ||
236 | - Update Portuguese (thanks, Ricardo Silva; closes: #481781). | ||
237 | - Update Basque (thanks, Piarres Beobide; closes: #481836). | ||
238 | - Update Bulgarian (thanks, Damyan Ivanov; closes: #481870). | ||
239 | - Update Vietnamese (thanks, Clytie Siddall; closes: #481876). | ||
240 | - Update Spanish (thanks, Javier Fernandez-Sanguino Peña; closes: | ||
241 | #482341). | ||
242 | - Update Turkish (thanks, Mert Dirik; closes: #482548). | ||
243 | - Update Russian (thanks, Yuri Kozlov; closes: #482887). | ||
244 | - Update Swedish (thanks, Martin Bagge; closes: #482464). | ||
245 | - Update Italian (thanks, Luca Monducci; closes: #482808). | ||
246 | |||
247 | -- Colin Watson <cjwatson@debian.org> Mon, 26 May 2008 12:21:39 +0100 | ||
248 | |||
249 | openssh (1:4.7p1-10) unstable; urgency=low | ||
250 | |||
251 | * Add a FILES section to ssh-vulnkey(1) (thanks, Hugh Daniel). | ||
252 | * CVE-2008-2285: ssh-vulnkey handles options in authorized_keys | ||
253 | (LP: #230029), and treats # as introducing a comment even if it is | ||
254 | preceded by whitespace. | ||
255 | |||
256 | -- Colin Watson <cjwatson@debian.org> Wed, 14 May 2008 12:35:05 +0100 | ||
257 | |||
258 | openssh (1:4.7p1-9) unstable; urgency=critical | ||
259 | |||
260 | * Fill in CVE identifier for security vulnerability fixed in 1:4.7p1-8. | ||
261 | * Mitigate OpenSSL security vulnerability (CVE-2008-0166): | ||
262 | - Add key blacklisting support. Keys listed in | ||
263 | /etc/ssh/blacklist.TYPE-LENGTH will be rejected for authentication by | ||
264 | sshd, unless "PermitBlacklistedKeys yes" is set in | ||
265 | /etc/ssh/sshd_config. | ||
266 | - Add a new program, ssh-vulnkey, which can be used to check keys | ||
267 | against these blacklists. | ||
268 | - Depend on openssh-blacklist. | ||
269 | - Force dependencies on libssl0.9.8 / libcrypto0.9.8-udeb to at least | ||
270 | 0.9.8g-9. | ||
271 | - Automatically regenerate known-compromised host keys, with a | ||
272 | critical-priority debconf note. (I regret that there was no time to | ||
273 | gather translations.) | ||
274 | |||
275 | -- Colin Watson <cjwatson@debian.org> Tue, 13 May 2008 12:33:38 +0100 | ||
276 | |||
277 | openssh (1:4.7p1-8) unstable; urgency=high | ||
278 | |||
279 | * Fill in CVE identifier for security vulnerability fixed in 1:4.7p1-5. | ||
280 | * Rename KeepAlive to TCPKeepAlive in sshd_config, cleaning up from old | ||
281 | configurations (LP: #211400). | ||
282 | * Tweak scp's reporting of filenames in verbose mode to be a bit less | ||
283 | confusing with spaces (thanks, Nicolas Valcárcel; LP: #89945). | ||
284 | * Backport from 4.9p1: | ||
285 | - CVE-2008-1657: Ignore ~/.ssh/rc if a sshd_config ForceCommand is | ||
286 | specified. | ||
287 | - Add no-user-rc authorized_keys option to disable execution of | ||
288 | ~/.ssh/rc. | ||
289 | * Backport from Simon Wilkinson's GSSAPI key exchange patch for 5.0p1: | ||
290 | - Add code to actually implement GSSAPIStrictAcceptorCheck, which had | ||
291 | somehow been omitted from a previous version of this patch (closes: | ||
292 | #474246). | ||
293 | |||
294 | -- Colin Watson <cjwatson@debian.org> Sun, 06 Apr 2008 12:34:19 +0100 | ||
295 | |||
296 | openssh (1:4.7p1-7) unstable; urgency=low | ||
297 | |||
298 | * Ignore errors writing to oom_adj (closes: #473573). | ||
299 | |||
300 | -- Colin Watson <cjwatson@debian.org> Mon, 31 Mar 2008 16:24:44 +0100 | ||
301 | |||
302 | openssh (1:4.7p1-6) unstable; urgency=low | ||
303 | |||
304 | * Disable the Linux kernel's OOM-killer for the sshd parent; tweak | ||
305 | SSHD_OOM_ADJUST in /etc/default/ssh to change this (closes: #341767). | ||
306 | |||
307 | -- Colin Watson <cjwatson@debian.org> Sun, 30 Mar 2008 21:14:12 +0100 | ||
308 | |||
309 | openssh (1:4.7p1-5) unstable; urgency=low | ||
310 | |||
311 | * Recommends: xauth rather than Suggests: xbase-clients. | ||
312 | * Document in ssh(1) that '-S none' disables connection sharing | ||
313 | (closes: #471437). | ||
314 | * Patch from Red Hat / Fedora: | ||
315 | - CVE-2008-1483: Don't use X11 forwarding port which can't be bound on | ||
316 | all address families, preventing hijacking of X11 forwarding by | ||
317 | unprivileged users when both IPv4 and IPv6 are configured (closes: | ||
318 | #463011). | ||
319 | * Use printf rather than echo -en (a bashism) in openssh-server.config and | ||
320 | openssh-server.preinst. | ||
321 | * debconf template translations: | ||
322 | - Update Finnish (thanks, Esko Arajärvi; closes: #468563). | ||
323 | |||
324 | -- Colin Watson <cjwatson@debian.org> Sat, 22 Mar 2008 12:37:00 +0000 | ||
325 | |||
326 | openssh (1:4.7p1-4) unstable; urgency=low | ||
327 | |||
328 | [ Caleb Case ] | ||
329 | * Fix configure detection of getseuserbyname and | ||
330 | get_default_context_with_level (closes: #465614, LP: #188136). | ||
331 | |||
332 | [ Colin Watson ] | ||
333 | * Include the autogenerated debian/copyright in the source package. | ||
334 | * Move /etc/pam.d/ssh to /etc/pam.d/sshd, allowing us to stop defining | ||
335 | SSHD_PAM_SERVICE (closes: #255870). | ||
336 | |||
337 | -- Colin Watson <cjwatson@debian.org> Wed, 13 Feb 2008 18:18:52 +0000 | ||
338 | |||
339 | openssh (1:4.7p1-3) unstable; urgency=low | ||
340 | |||
341 | * Improve grammar of ssh-askpass-gnome description. | ||
342 | * Backport from upstream: | ||
343 | - Use the correct packet maximum sizes for remote port and agent | ||
344 | forwarding. Prevents the server from killing the connection if too | ||
345 | much data is queued and an excessively large packet gets sent | ||
346 | (https://bugzilla.mindrot.org/show_bug.cgi?id=1360). | ||
347 | * Allow passing temporary daemon parameters on the init script's command | ||
348 | line, e.g. '/etc/init.d/ssh start "-o PermitRootLogin=yes"' (thanks, | ||
349 | Marc Haber; closes: #458547). | ||
350 | |||
351 | -- Colin Watson <cjwatson@debian.org> Fri, 01 Feb 2008 21:59:59 +0000 | ||
352 | |||
353 | openssh (1:4.7p1-2) unstable; urgency=low | ||
354 | |||
355 | * Adjust many relative links in faq.html to point to | ||
356 | http://www.openssh.org/ (thanks, Dan Jacobson; mentioned in #459807). | ||
357 | * Pass --with-mantype=doc to configure rather than build-depending on | ||
358 | groff (closes: #460121). | ||
359 | * Add armel to architecture list for libselinux1-dev build-dependency | ||
360 | (closes: #460136). | ||
361 | * Drop source-compatibility with Debian 3.0: | ||
362 | - Remove support for building with GNOME 1. This allows simplification | ||
363 | of our GNOME build-dependencies (see #460136). | ||
364 | - Remove hacks to support the old PAM configuration scheme. | ||
365 | - Remove compatibility for building without po-debconf. | ||
366 | * Build-depend on libgtk2.0-dev rather than libgnomeui-dev. As far as I | ||
367 | can see, the GTK2 version of ssh-askpass-gnome has never required | ||
368 | libgnomeui-dev. | ||
369 | |||
370 | -- Colin Watson <cjwatson@debian.org> Fri, 11 Jan 2008 00:14:10 +0000 | ||
371 | |||
372 | openssh (1:4.7p1-1) unstable; urgency=low | ||
373 | |||
374 | * New upstream release (closes: #453367). | ||
375 | - CVE-2007-4752: Prevent ssh(1) from using a trusted X11 cookie if | ||
376 | creation of an untrusted cookie fails; found and fixed by Jan Pechanec | ||
377 | (closes: #444738). | ||
378 | - sshd(8) in new installations defaults to SSH Protocol 2 only. Existing | ||
379 | installations are unchanged. | ||
380 | - The SSH channel window size has been increased, and both ssh(1) | ||
381 | sshd(8) now send window updates more aggressively. These improves | ||
382 | performance on high-BDP (Bandwidth Delay Product) networks. | ||
383 | - ssh(1) and sshd(8) now preserve MAC contexts between packets, which | ||
384 | saves 2 hash calls per packet and results in 12-16% speedup for | ||
385 | arcfour256/hmac-md5. | ||
386 | - A new MAC algorithm has been added, UMAC-64 (RFC4418) as | ||
387 | "umac-64@openssh.com". UMAC-64 has been measured to be approximately | ||
388 | 20% faster than HMAC-MD5. | ||
389 | - Failure to establish a ssh(1) TunnelForward is now treated as a fatal | ||
390 | error when the ExitOnForwardFailure option is set. | ||
391 | - ssh(1) returns a sensible exit status if the control master goes away | ||
392 | without passing the full exit status. | ||
393 | - When using a ProxyCommand in ssh(1), set the outgoing hostname with | ||
394 | gethostname(2), allowing hostbased authentication to work. | ||
395 | - Make scp(1) skip FIFOs rather than hanging (closes: #246774). | ||
396 | - Encode non-printing characters in scp(1) filenames. These could cause | ||
397 | copies to be aborted with a "protocol error". | ||
398 | - Handle SIGINT in sshd(8) privilege separation child process to ensure | ||
399 | that wtmp and lastlog records are correctly updated. | ||
400 | - Report GSSAPI mechanism in errors, for libraries that support multiple | ||
401 | mechanisms. | ||
402 | - Improve documentation for ssh-add(1)'s -d option. | ||
403 | - Rearrange and tidy GSSAPI code, removing server-only code being linked | ||
404 | into the client. | ||
405 | - Delay execution of ssh(1)'s LocalCommand until after all forwardings | ||
406 | have been established. | ||
407 | - In scp(1), do not truncate non-regular files. | ||
408 | - Improve exit message from ControlMaster clients. | ||
409 | - Prevent sftp-server(8) from reading until it runs out of buffer space, | ||
410 | whereupon it would exit with a fatal error (closes: #365541). | ||
411 | - pam_end() was not being called if authentication failed | ||
412 | (closes: #405041). | ||
413 | - Manual page datestamps updated (closes: #433181). | ||
414 | * Install the OpenSSH FAQ in /usr/share/doc/openssh-client. | ||
415 | - Includes documentation on copying files with colons using scp | ||
416 | (closes: #303453). | ||
417 | * Create /var/run/sshd on start even if /etc/ssh/sshd_not_to_be_run exists | ||
418 | (closes: #453285). | ||
419 | * Fix "overriden" typo in ssh(1) (thanks, A. Costa; closes: #390699). | ||
420 | * Refactor debian/rules configure and make invocations to make development | ||
421 | easier. | ||
422 | * Remove the hideously old /etc/ssh/primes on upgrade (closes: #123013). | ||
423 | * Update moduli(5) to revision 1.11 from OpenBSD CVS. | ||
424 | * Document the non-default options we set as standard in ssh_config(5) and | ||
425 | sshd_config(5) (closes: #327886, #345628). | ||
426 | * Recode LICENCE to UTF-8 when concatenating it to debian/copyright. | ||
427 | * Override desktop-file-but-no-dh_desktop-call lintian warning; the | ||
428 | .desktop file is intentionally not installed (see 1:3.8.1p1-10). | ||
429 | * Update copyright dates for Kerberos patch in debian/copyright.head. | ||
430 | * Policy version 3.7.3: no changes required. | ||
431 | |||
432 | -- Colin Watson <cjwatson@debian.org> Mon, 24 Dec 2007 16:43:02 +0000 | ||
433 | |||
434 | openssh (1:4.6p1-7) unstable; urgency=low | ||
435 | |||
436 | * Don't build PIE executables on m68k (closes: #451192). | ||
437 | * Use autotools-dev's recommended configure --build and --host options. | ||
438 | * Adjust README.Debian to suggest mailing debian-ssh@lists.debian.org | ||
439 | rather than Matthew. | ||
440 | * Check whether deluser exists in postrm (closes: #454085). | ||
441 | |||
442 | -- Colin Watson <cjwatson@debian.org> Mon, 03 Dec 2007 11:11:02 +0000 | ||
443 | |||
444 | openssh (1:4.6p1-6) unstable; urgency=low | ||
445 | |||
446 | * Remove blank line between head comment and first template in | ||
447 | debian/openssh-server.templates.master; apparently it confuses some | ||
448 | versions of debconf. | ||
449 | * Install authorized_keys(5) as a symlink to sshd(8) (thanks, Tomas | ||
450 | Pospisek; closes: #441817). | ||
451 | * Discard error output from dpkg-query in preinsts, in case the ssh | ||
452 | metapackage is not installed. | ||
453 | * Fix sshd/inittab advice in README.Debian to account for rc.d movement | ||
454 | (closes: #450632). | ||
455 | * Suppress error from debian/rules if lsb-release is not installed. | ||
456 | * Don't ignore errors from 'make -C contrib clean'. | ||
457 | * Adjust categories in ssh-askpass-gnome.desktop to comply with the | ||
458 | Desktop Menu Specification. | ||
459 | * debconf template translations: | ||
460 | - Add Slovak (thanks, Ivan Masár; closes: #441690). | ||
461 | - Update Brazilian Portuguese (thanks, Eder L. Marques; | ||
462 | closes: #447145). | ||
463 | |||
464 | -- Colin Watson <cjwatson@debian.org> Mon, 12 Nov 2007 11:47:28 +0000 | ||
465 | |||
466 | openssh (1:4.6p1-5) unstable; urgency=low | ||
467 | |||
468 | * Identify ssh as a metapackage rather than a transitional package. It's | ||
469 | still useful as a quick way to install both the client and the server. | ||
470 | * ssh-copy-id now checks the exit status of ssh-add -L (thanks, Adeodato | ||
471 | Simó; closes: #221675). | ||
472 | * ssh-copy-id no longer prints the output of expr (thanks, Peter | ||
473 | Eisentraut; closes: #291534). | ||
474 | * ssh-copy-id defaults to ~/.ssh/id_rsa.pub rather than | ||
475 | ~/.ssh/identity.pub, in line with ssh-keygen (thanks, Greg Norris; | ||
476 | closes: #234627). | ||
477 | * Build-depend on libselinux1-dev on lpia. | ||
478 | * openssh-client Suggests: keychain. | ||
479 | * debconf template translations: | ||
480 | - Update Catalan (thanks, Jordà Polo; closes: #431970). | ||
481 | |||
482 | -- Colin Watson <cjwatson@debian.org> Mon, 30 Jul 2007 09:34:38 +0100 | ||
483 | |||
484 | openssh (1:4.6p1-4) unstable; urgency=low | ||
485 | |||
486 | * Don't build PIE executables on hppa, as they crash. | ||
487 | |||
488 | -- Colin Watson <cjwatson@debian.org> Thu, 05 Jul 2007 11:06:54 +0100 | ||
489 | |||
490 | openssh (1:4.6p1-3) unstable; urgency=low | ||
491 | |||
492 | * Only build PIE executables on Linux and NetBSD (closes: #430455). | ||
493 | * Fix broken switch fallthrough when SELinux is running in permissive mode | ||
494 | (closes: #430838). | ||
495 | * Document that HashKnownHosts may break tab-completion (closes: #430154). | ||
496 | |||
497 | -- Colin Watson <cjwatson@debian.org> Fri, 29 Jun 2007 07:15:38 +0100 | ||
498 | |||
499 | openssh (1:4.6p1-2) unstable; urgency=low | ||
500 | |||
501 | * Fix ordering of SYSLOG_LEVEL_QUIET and SYSLOG_LEVEL_FATAL. | ||
502 | * Clarify that 'ssh -q -q' still prints errors caused by bad arguments | ||
503 | (i.e. before the logging system is initialised). | ||
504 | * Suppress "Connection to <host> closed" and "Connection to master closed" | ||
505 | messages at loglevel SILENT (thanks, Jaap Eldering; closes: #409788). | ||
506 | * Suppress "Pseudo-terminal will not be allocated because stdin is not a | ||
507 | terminal" message at loglevels QUIET and SILENT (closes: #366814). | ||
508 | * Document the SILENT loglevel in sftp-server(8), ssh_config(5), and | ||
509 | sshd_config(5). | ||
510 | * Add try-restart action to init script. | ||
511 | * Add /etc/network/if-up.d/openssh-server to restart sshd when new | ||
512 | interfaces appear (LP: #103436). | ||
513 | * Backport from upstream: | ||
514 | - Move C/R -> kbdint special case to after the defaults have been | ||
515 | loaded, which makes ChallengeResponse default to yes again. This was | ||
516 | broken by the Match changes and not fixed properly subsequently | ||
517 | (closes: #428968). | ||
518 | - Silence spurious error messages from hang-on-exit fix | ||
519 | (http://bugzilla.mindrot.org/show_bug.cgi?id=1306, closes: #429531). | ||
520 | |||
521 | -- Colin Watson <cjwatson@debian.org> Wed, 20 Jun 2007 11:52:44 +0100 | ||
522 | |||
523 | openssh (1:4.6p1-1) unstable; urgency=low | ||
524 | |||
525 | * New upstream release (closes: #395507, #397961, #420035). Important | ||
526 | changes not previously backported to 4.3p2: | ||
527 | - 4.4/4.4p1 (http://www.openssh.org/txt/release-4.4): | ||
528 | + On portable OpenSSH, fix a GSSAPI authentication abort that could be | ||
529 | used to determine the validity of usernames on some platforms. | ||
530 | + Implemented conditional configuration in sshd_config(5) using the | ||
531 | "Match" directive. This allows some configuration options to be | ||
532 | selectively overridden if specific criteria (based on user, group, | ||
533 | hostname and/or address) are met. So far a useful subset of | ||
534 | post-authentication options are supported and more are expected to | ||
535 | be added in future releases. | ||
536 | + Add support for Diffie-Hellman group exchange key agreement with a | ||
537 | final hash of SHA256. | ||
538 | + Added a "ForceCommand" directive to sshd_config(5). Similar to the | ||
539 | command="..." option accepted in ~/.ssh/authorized_keys, this forces | ||
540 | the execution of the specified command regardless of what the user | ||
541 | requested. This is very useful in conjunction with the new "Match" | ||
542 | option. | ||
543 | + Add a "PermitOpen" directive to sshd_config(5). This mirrors the | ||
544 | permitopen="..." authorized_keys option, allowing fine-grained | ||
545 | control over the port-forwardings that a user is allowed to | ||
546 | establish. | ||
547 | + Add optional logging of transactions to sftp-server(8). | ||
548 | + ssh(1) will now record port numbers for hosts stored in | ||
549 | ~/.ssh/known_hosts when a non-standard port has been requested | ||
550 | (closes: #50612). | ||
551 | + Add an "ExitOnForwardFailure" option to cause ssh(1) to exit (with a | ||
552 | non-zero exit code) when requested port forwardings could not be | ||
553 | established. | ||
554 | + Extend sshd_config(5) "SubSystem" declarations to allow the | ||
555 | specification of command-line arguments. | ||
556 | + Replacement of all integer overflow susceptible invocations of | ||
557 | malloc(3) and realloc(3) with overflow-checking equivalents. | ||
558 | + Many manpage fixes and improvements. | ||
559 | + Add optional support for OpenSSL hardware accelerators (engines), | ||
560 | enabled using the --with-ssl-engine configure option. | ||
561 | + Tokens in configuration files may be double-quoted in order to | ||
562 | contain spaces (closes: #319639). | ||
563 | + Move a debug() call out of a SIGCHLD handler, fixing a hang when the | ||
564 | session exits very quickly (closes: #307890). | ||
565 | + Fix some incorrect buffer allocation calculations (closes: #410599). | ||
566 | + ssh-add doesn't ask for a passphrase if key file permissions are too | ||
567 | liberal (closes: #103677). | ||
568 | + Likewise, ssh doesn't ask either (closes: #99675). | ||
569 | - 4.6/4.6p1 (http://www.openssh.org/txt/release-4.6): | ||
570 | + sshd now allows the enabling and disabling of authentication methods | ||
571 | on a per user, group, host and network basis via the Match directive | ||
572 | in sshd_config. | ||
573 | + Fixed an inconsistent check for a terminal when displaying scp | ||
574 | progress meter (closes: #257524). | ||
575 | + Fix "hang on exit" when background processes are running at the time | ||
576 | of exit on a ttyful/login session (closes: #88337). | ||
577 | * Update to current GSSAPI patch from | ||
578 | http://www.sxw.org.uk/computing/patches/openssh-4.6p1-gsskex-20070312.patch; | ||
579 | install ChangeLog.gssapi. | ||
580 | * Build the .deb --with-ssl-engine (closes: #408027, LP: #119295). | ||
581 | * Use LSB functions in init scripts, and add an LSB-style header (partly | ||
582 | from Ubuntu and partly thanks to Christian Perrier; closes: #389038). | ||
583 | * Move init script start links to S16, move rc1 stop link to K84, and | ||
584 | remove rc0 and rc6 stop links altogether (the last part from Ubuntu; | ||
585 | closes: #122188). | ||
586 | * Emit a slightly more informative message from the init script if | ||
587 | /dev/null has somehow become not a character device (closes: #369964). | ||
588 | * Belatedly build-depend on zlib1g-dev (>= 1:1.2.3-1) (closes: #333447). | ||
589 | * Merge from Ubuntu: | ||
590 | - Build position-independent executables (only for debs, not for udebs) | ||
591 | to take advantage of address space layout randomisation. | ||
592 | - If building on Ubuntu, add /sbin, /usr/sbin, and /usr/local/sbin to | ||
593 | the default path. | ||
594 | * Use ${binary:Version} rather than ${Source-Version} in openssh-server -> | ||
595 | openssh-client dependency. | ||
596 | |||
597 | -- Colin Watson <cjwatson@debian.org> Wed, 13 Jun 2007 00:28:26 +0100 | ||
598 | |||
599 | openssh (1:4.3p2-11) unstable; urgency=low | ||
600 | |||
601 | * It's been four and a half years now since I took over as "temporary" | ||
602 | maintainer, so the Maintainer field is getting a bit inaccurate. Set | ||
603 | Maintainer to debian-ssh@lists.debian.org and leave Matthew and myself | ||
604 | as Uploaders. | ||
605 | * Use dpkg-query to fetch conffile md5sums rather than parsing | ||
606 | /var/lib/dpkg/status directly. | ||
607 | * openssh-client Suggests: libpam-ssh (closes: #427840). | ||
608 | * Use 'start-stop-daemon --oknodo' so that openssh-server's init script | ||
609 | exits successfully if sshd is already running (closes: #426858). | ||
610 | |||
611 | * Apply results of debconf templates and package descriptions review by | ||
612 | debian-l10n-english (closes: #420107, #420742). | ||
613 | * debconf template translations: | ||
614 | - Update Dutch (thanks, Machteld de Kok; closes: #419260). | ||
615 | - Update Norwegian Bokmål (thanks, Bjørn Steensrud; closes: #420630). | ||
616 | - Update Galician (thanks, Jacobo Tarrio; closes: #420635). | ||
617 | - Update Spanish (thanks, Javier Fernández-Sanguino Peña; | ||
618 | closes: #420651). | ||
619 | - Update Swedish (thanks, Daniel Nylander; closes: #420663). | ||
620 | - Add Bulgarian (thanks, Damyan Ivanov; closes: #420703). | ||
621 | - Add Tamil (thanks, Tirumurti Vasudevan; closes: #420739). | ||
622 | - Update German (thanks, Helge Kreutzmann; closes: #420743). | ||
623 | - Update Japanese (thanks, Kenshi Muto; closes: #420946). | ||
624 | - Add Basque (thanks, Piarres Beobide; closes: #421238). | ||
625 | - Update Italian (thanks, Luca Monducci; closes: #421348). | ||
626 | - Update Czech (thanks, Miroslav Kure; closes: #421484). | ||
627 | - Update Romanian (thanks, Igor Stirbu; closes: #421760). | ||
628 | - Update Russian (thanks, Yuriy Talakan' and Sergey Alyoshin; | ||
629 | closes: #420862). | ||
630 | - Update Dutch (thanks, Bart Cornelis; closes: #422767). | ||
631 | - Update Portuguese (thanks, Ricardo Silva; closes: #423112). | ||
632 | - Update French (thanks, Christian Perrier). | ||
633 | - Add Korean (thanks, Sunjae Park; closes: #424008). | ||
634 | - Update Vietnamese (thanks, Clytie Siddall; closes: #426991). | ||
635 | |||
636 | -- Colin Watson <cjwatson@debian.org> Sun, 10 Jun 2007 08:59:42 +0100 | ||
637 | |||
638 | openssh (1:4.3p2-10) unstable; urgency=low | ||
639 | |||
640 | * Multiply openssh-client-udeb's Installer-Menu-Item by 100. | ||
641 | * Increase MAX_SESSIONS to 64. | ||
642 | |||
643 | -- Colin Watson <cjwatson@debian.org> Tue, 10 Apr 2007 19:17:20 +0100 | ||
644 | |||
645 | openssh (1:4.3p2-9) unstable; urgency=high | ||
646 | |||
647 | [ Russ Allbery ] | ||
648 | * Fix GSSAPIKeyExchange configuration file handling logic in ssh-krb5 | ||
649 | (closes: #404863). | ||
650 | * Fix uncommenting of GSSAPI options by ssh-krb5 (closes: #407766). | ||
651 | |||
652 | [ Colin Watson ] | ||
653 | * debconf template translations: | ||
654 | - Add Norwegian Bokmål (thanks, Bjørn Steensrud; closes: #412330). | ||
655 | |||
656 | -- Colin Watson <cjwatson@debian.org> Mon, 5 Mar 2007 16:13:50 +0000 | ||
657 | |||
658 | openssh (1:4.3p2-8) unstable; urgency=medium | ||
659 | |||
660 | [ Vincent Untz ] | ||
661 | * Give the ssh-askpass-gnome window a default icon; remove unnecessary | ||
662 | icon extension from .desktop file (closes: | ||
663 | https://launchpad.net/bugs/27152). | ||
664 | |||
665 | [ Colin Watson ] | ||
666 | * Drop versioning on ssh/ssh-krb5 Replaces, as otherwise it isn't | ||
667 | sufficient to replace conffiles (closes: #402804). | ||
668 | * Make GSSAPICleanupCreds a compatibility alias for | ||
669 | GSSAPICleanupCredentials. Mark GSSUseSessionCCache and | ||
670 | GSSAPIUseSessionCredCache as known-but-unsupported options, and migrate | ||
671 | away from them on upgrade. | ||
672 | * It turns out that the people who told me that removing a conffile in the | ||
673 | preinst was sufficient to have dpkg replace it without prompting when | ||
674 | moving a conffile between packages were very much mistaken. As far as I | ||
675 | can tell, the only way to do this reliably is to write out the desired | ||
676 | new text of the conffile in the preinst. This is gross, and requires | ||
677 | shipping the text of all conffiles in the preinst too, but there's | ||
678 | nothing for it. Fortunately this nonsense is only required for smooth | ||
679 | upgrades from sarge. | ||
680 | * debconf template translations: | ||
681 | - Add Romanian (thanks, Stan Ioan-Eugen; closes: #403528). | ||
682 | |||
683 | -- Colin Watson <cjwatson@debian.org> Sat, 23 Dec 2006 18:38:33 +0000 | ||
684 | |||
685 | openssh (1:4.3p2-7) unstable; urgency=medium | ||
686 | |||
687 | [ Colin Watson ] | ||
688 | * Ignore errors from usermod when changing sshd's shell, since it will | ||
689 | fail if the sshd user is not local (closes: #398436). | ||
690 | * Remove version control tags from /etc/ssh/moduli and /etc/ssh/ssh_config | ||
691 | to avoid unnecessary conffile resolution steps for administrators | ||
692 | (thanks, Jari Aalto; closes: #335259). | ||
693 | * Fix quoting error in configure.ac and regenerate configure (thanks, Ben | ||
694 | Pfaff; closes: #391248). | ||
695 | * When installing openssh-client or openssh-server from scratch, remove | ||
696 | any unchanged conffiles from the pre-split ssh package to work around a | ||
697 | bug in sarge's dpkg (thanks, Justin Pryzby and others; closes: #335276). | ||
698 | |||
699 | [ Russ Allbery ] | ||
700 | * Create transitional ssh-krb5 package which enables GSSAPI configuration | ||
701 | in sshd_config (closes: #390986). | ||
702 | * Default client to attempting GSSAPI authentication. | ||
703 | * Remove obsolete GSSAPINoMICAuthentication from sshd_config if it's | ||
704 | found. | ||
705 | * Add ssh -K option, the converse of -k, to enable GSSAPI credential | ||
706 | delegation (closes: #401483). | ||
707 | |||
708 | -- Colin Watson <cjwatson@debian.org> Wed, 6 Dec 2006 23:00:49 +0000 | ||
709 | |||
710 | openssh (1:4.3p2-6) unstable; urgency=low | ||
711 | |||
712 | * Acknowledge NMU (thanks, Manoj; closes: #394795). | ||
713 | * Backport from 4.5p1: | ||
714 | - Fix a bug in the sshd privilege separation monitor that weakened its | ||
715 | verification of successful authentication. This bug is not known to be | ||
716 | exploitable in the absence of additional vulnerabilities. | ||
717 | * openssh-server Suggests: molly-guard (closes: #395473). | ||
718 | * debconf template translations: | ||
719 | - Update German (thanks, Helge Kreutzmann; closes: #395947). | ||
720 | |||
721 | -- Colin Watson <cjwatson@debian.org> Wed, 15 Nov 2006 00:07:32 +0000 | ||
722 | |||
723 | openssh (1:4.3p2-5.1) unstable; urgency=low | ||
724 | |||
725 | * NMU to update SELinux patch, bringing it in line with current selinux | ||
726 | releases. The patch for this NMU is simply the Bug#394795 patch, | ||
727 | and no other changes. (closes: #394795) | ||
728 | |||
729 | -- Manoj Srivastava <srivasta@debian.org> Mon, 23 Oct 2006 14:11:24 -0500 | ||
730 | |||
731 | openssh (1:4.3p2-5) unstable; urgency=low | ||
732 | |||
733 | * Remove ssh/insecure_telnetd check altogether (closes: #391081). | ||
734 | * debconf template translations: | ||
735 | - Update Danish (thanks, Claus Hindsgaul; closes: #390612). | ||
736 | |||
737 | -- Colin Watson <cjwatson@debian.org> Thu, 5 Oct 2006 09:04:19 +0100 | ||
738 | |||
739 | openssh (1:4.3p2-4) unstable; urgency=high | ||
740 | |||
741 | * Backport from 4.4p1 (since I don't have an updated version of the GSSAPI | ||
742 | patch yet): | ||
743 | - CVE-2006-4924: Fix a pre-authentication denial of service found by | ||
744 | Tavis Ormandy, that would cause sshd(8) to spin until the login grace | ||
745 | time expired (closes: #389995). | ||
746 | - CVE-2006-5051: Fix an unsafe signal hander reported by Mark Dowd. The | ||
747 | signal handler was vulnerable to a race condition that could be | ||
748 | exploited to perform a pre-authentication denial of service. On | ||
749 | portable OpenSSH, this vulnerability could theoretically lead to | ||
750 | pre-authentication remote code execution if GSSAPI authentication is | ||
751 | enabled, but the likelihood of successful exploitation appears remote. | ||
752 | |||
753 | * Read /etc/default/locale as well as /etc/environment (thanks, Raphaël | ||
754 | Hertzog; closes: #369395). | ||
755 | * Remove no-longer-used ssh/insecure_rshd debconf template. | ||
756 | * Make ssh/insecure_telnetd Type: error (closes: #388946). | ||
757 | |||
758 | * debconf template translations: | ||
759 | - Update Portuguese (thanks, Rui Branco; closes: #381942). | ||
760 | - Update Spanish (thanks, Javier Fernández-Sanguino Peña; | ||
761 | closes: #382966). | ||
762 | |||
763 | -- Colin Watson <cjwatson@debian.org> Fri, 29 Sep 2006 16:28:24 +0100 | ||
764 | |||
765 | openssh (1:4.3p2-3) unstable; urgency=low | ||
766 | |||
767 | * Document KeepAlive->TCPKeepAlive renaming in sshd_config(5) (closes: | ||
768 | https://launchpad.net/bugs/50702). | ||
769 | * Change sshd user's shell to /usr/sbin/nologin (closes: #366541). | ||
770 | Introduces dependency on passwd for usermod. | ||
771 | * debconf template translations: | ||
772 | - Update French (thanks, Denis Barbier; closes: #368503). | ||
773 | - Update Dutch (thanks, Bart Cornelis; closes: #375100). | ||
774 | - Update Japanese (thanks, Kenshi Muto; closes: #379950). | ||
775 | |||
776 | -- Colin Watson <cjwatson@debian.org> Thu, 27 Jul 2006 00:12:36 +0100 | ||
777 | |||
778 | openssh (1:4.3p2-2) unstable; urgency=low | ||
779 | |||
780 | * Include commented-out pam_access example in /etc/pam.d/ssh. | ||
781 | * On '/etc/init.d/ssh restart', create /var/run/sshd before checking the | ||
782 | server configuration, as otherwise 'sshd -t' will complain about the | ||
783 | lack of /var/run/sshd (closes: https://launchpad.net/bugs/45234). | ||
784 | * debconf template translations: | ||
785 | - Update Russian (thanks, Yuriy Talakan'; closes: #367143). | ||
786 | - Update Czech (thanks, Miroslav Kure; closes: #367161). | ||
787 | - Update Italian (thanks, Luca Monducci; closes: #367186). | ||
788 | - Update Galician (thanks, Jacobo Tarrio; closes: #367318). | ||
789 | - Update Swedish (thanks, Daniel Nylander; closes: #367971). | ||
790 | |||
791 | -- Colin Watson <cjwatson@debian.org> Fri, 19 May 2006 09:14:27 +0100 | ||
792 | |||
793 | openssh (1:4.3p2-1) unstable; urgency=low | ||
794 | |||
795 | * New upstream release (closes: #361032). | ||
796 | - CVE-2006-0225: scp (as does rcp, on which it is based) invoked a | ||
797 | subshell to perform local to local, and remote to remote copy | ||
798 | operations. This subshell exposed filenames to shell expansion twice; | ||
799 | allowing a local attacker to create filenames containing shell | ||
800 | metacharacters that, if matched by a wildcard, could lead to execution | ||
801 | of attacker-specified commands with the privilege of the user running | ||
802 | scp (closes: #349645). | ||
803 | - Add support for tunneling arbitrary network packets over a connection | ||
804 | between an OpenSSH client and server via tun(4) virtual network | ||
805 | interfaces. This allows the use of OpenSSH (4.3+) to create a true VPN | ||
806 | between the client and server providing real network connectivity at | ||
807 | layer 2 or 3. This feature is experimental. | ||
808 | - Reduce default key length for new DSA keys generated by ssh-keygen | ||
809 | back to 1024 bits. DSA is not specified for longer lengths and does | ||
810 | not fully benefit from simply making keys longer. As per FIPS 186-2 | ||
811 | Change Notice 1, ssh-keygen will refuse to generate a new DSA key | ||
812 | smaller or larger than 1024 bits. | ||
813 | - Fixed X forwarding failing to start when the X11 client is executed in | ||
814 | background at the time of session exit. | ||
815 | - Change ssh-keygen to generate a protocol 2 RSA key when invoked | ||
816 | without arguments (closes: #114894). | ||
817 | - Fix timing variance for valid vs. invalid accounts when attempting | ||
818 | Kerberos authentication. | ||
819 | - Ensure that ssh always returns code 255 on internal error | ||
820 | (closes: #259865). | ||
821 | - Cleanup wtmp files on SIGTERM when not using privsep. | ||
822 | - Set SO_REUSEADDR on X11 listeners to avoid problems caused by | ||
823 | lingering sockets from previous session (X11 applications can | ||
824 | sometimes not connect to 127.0.0.1:60xx) (closes: | ||
825 | https://launchpad.net/bugs/25528). | ||
826 | - Ensure that fds 0, 1 and 2 are always attached in all programs, by | ||
827 | duping /dev/null to them if necessary. | ||
828 | - Xauth list invocation had bogus "." argument. | ||
829 | - Remove internal assumptions on key exchange hash algorithm and output | ||
830 | length, preparing OpenSSH for KEX methods with alternate hashes. | ||
831 | - Ignore junk sent by a server before it sends the "SSH-" banner. | ||
832 | - Many manual page improvements. | ||
833 | - Lots of cleanups, including fixes to memory leaks on error paths and | ||
834 | possible crashes. | ||
835 | * Update to current GSSAPI patch from | ||
836 | http://www.sxw.org.uk/computing/patches/openssh-4.3p2-gsskex-20060223.patch | ||
837 | (closes: #352042). | ||
838 | * debian/rules: Resynchronise CFLAGS with that generated by configure. | ||
839 | * Restore pam_nologin to /etc/pam.d/ssh; sshd no longer checks this itself | ||
840 | when PAM is enabled, but relies on PAM to do it. | ||
841 | * Rename KeepAlive to TCPKeepAlive in default sshd_config | ||
842 | (closes: #349896). | ||
843 | * Rephrase ssh/new_config and ssh/encrypted_host_key_but_no_keygen debconf | ||
844 | templates to make boolean short descriptions end with a question mark | ||
845 | and to avoid use of the first person. | ||
846 | * Ship README.tun. | ||
847 | * Policy version 3.7.2: no changes required. | ||
848 | * debconf template translations: | ||
849 | - Update Italian (thanks, Luca Monducci; closes: #360348). | ||
850 | - Add Galician (thanks, Jacobo Tarrio; closes: #361220). | ||
851 | |||
852 | -- Colin Watson <cjwatson@debian.org> Fri, 12 May 2006 12:48:24 +0100 | ||
853 | |||
854 | openssh (1:4.2p1-8) unstable; urgency=low | ||
855 | |||
856 | [ Frans Pop ] | ||
857 | * Use udeb support introduced in debhelper 4.2.0 (available in sarge) | ||
858 | rather than constructing udebs by steam. | ||
859 | * Require debhelper 5.0.22, which generates correct shared library | ||
860 | dependencies for udebs (closes: #360068). This build-dependency can be | ||
861 | ignored if building on sarge. | ||
862 | |||
863 | [ Colin Watson ] | ||
864 | * Switch to debhelper compatibility level 4, since we now require | ||
865 | debhelper 4 even on sarge anyway for udeb support. | ||
866 | |||
867 | -- Colin Watson <cjwatson@debian.org> Fri, 31 Mar 2006 09:44:55 +0100 | ||
868 | |||
869 | openssh (1:4.2p1-7) unstable; urgency=low | ||
870 | |||
871 | * I accidentally applied the default $PATH change in 1:4.2p1-6 to the udeb | ||
872 | rather than the deb. Fixed. | ||
873 | |||
874 | -- Colin Watson <cjwatson@debian.org> Wed, 1 Mar 2006 16:19:00 +0000 | ||
875 | |||
876 | openssh (1:4.2p1-6) unstable; urgency=low | ||
877 | |||
878 | * Sync default values of $PATH from shadow 1:4.0.12-6, adding /usr/bin/X11 | ||
879 | to the normal and superuser paths and /usr/games to the normal path. | ||
880 | * When the client receives a signal, don't fatal() with "Killed by signal | ||
881 | %d." (which produces unhelpful noise on stderr and causes confusion for | ||
882 | users of some applications that wrap ssh); instead, generate a debug | ||
883 | message and exit with the traditional status (closes: #313371). | ||
884 | * debconf template translations: | ||
885 | - Add Swedish (thanks, Daniel Nylander; closes: #333133). | ||
886 | - Update Spanish (thanks, Javier Fernández-Sanguino Peña; | ||
887 | closes: #341371). | ||
888 | - Correct erroneously-changed Last-Translator headers in Greek and | ||
889 | Spanish translations. | ||
890 | |||
891 | -- Colin Watson <cjwatson@debian.org> Mon, 20 Feb 2006 16:50:55 +0000 | ||
892 | |||
893 | openssh (1:4.2p1-5) unstable; urgency=low | ||
894 | |||
895 | * Add a CVE name to the 1:4.0p1-1 changelog entry. | ||
896 | * Build-depend on libselinux1-dev on armeb. | ||
897 | * Only send GSSAPI proposal if GSSAPIAuthentication is enabled. | ||
898 | * Build-depend on libssl-dev (>= 0.9.8-1) to cope with surprise OpenSSL | ||
899 | transition, since otherwise who knows what the buildds will do. If | ||
900 | you're building openssh yourself, you can safely ignore this and use an | ||
901 | older libssl-dev. | ||
902 | |||
903 | -- Colin Watson <cjwatson@debian.org> Fri, 7 Oct 2005 12:23:42 +0100 | ||
904 | |||
905 | openssh (1:4.2p1-4) unstable; urgency=low | ||
906 | |||
907 | * Initialise token to GSS_C_EMPTY_BUFFER in ssh_gssapi_check_mechanism | ||
908 | (closes: #328606). | ||
909 | |||
910 | -- Colin Watson <cjwatson@debian.org> Fri, 16 Sep 2005 12:50:16 +0100 | ||
911 | |||
912 | openssh (1:4.2p1-3) unstable; urgency=low | ||
913 | |||
914 | * Add prototype for ssh_gssapi_server_mechanisms (closes: #328372). | ||
915 | * Interoperate with ssh-krb5 << 3.8.1p1-1 servers, which used a slightly | ||
916 | different version of the gssapi authentication method (thanks, Aaron M. | ||
917 | Ucko; closes: #328388). | ||
918 | * Explicitly tell po2debconf to use the 'popular' output encoding, so that | ||
919 | the woody-compatibility hack works even with po-debconf 0.9.0. | ||
920 | |||
921 | -- Colin Watson <cjwatson@debian.org> Thu, 15 Sep 2005 09:28:21 +0100 | ||
922 | |||
923 | openssh (1:4.2p1-2) unstable; urgency=low | ||
924 | |||
925 | * Annotate 1:4.2p1-1 changelog with CVE references. | ||
926 | * Add remaining pieces of Kerberos support (closes: #152657, #275472): | ||
927 | - Add GSSAPI key exchange support from | ||
928 | http://www.sxw.org.uk/computing/patches/openssh.html (thanks, Stephen | ||
929 | Frost). | ||
930 | - Build-depend on libkrb5-dev and configure --with-kerberos5=/usr. | ||
931 | - openssh-client and openssh-server replace ssh-krb5. | ||
932 | - Update commented-out Kerberos/GSSAPI options in default sshd_config. | ||
933 | - Fix HAVE_GSSAPI_KRB5_H/HAVE_GSSAPI_GSSAPI_KRB5_H typos in | ||
934 | gss-serv-krb5.c. | ||
935 | |||
936 | -- Colin Watson <cjwatson@debian.org> Wed, 14 Sep 2005 18:28:49 +0100 | ||
937 | |||
938 | openssh (1:4.2p1-1) unstable; urgency=low | ||
939 | |||
940 | * New upstream release. | ||
941 | - SECURITY (CAN-2005-2797): Fix a bug introduced in OpenSSH 4.0 that | ||
942 | caused GatewayPorts to be incorrectly activated for dynamic ("-D") | ||
943 | port forwardings when no listen address was explicitly specified | ||
944 | (closes: #326065). | ||
945 | - SECURITY (CAN-2005-2798): Fix improper delegation of GSSAPI | ||
946 | credentials. This code is only built in openssh-krb5, not openssh, but | ||
947 | I mention the CVE reference here anyway for completeness. | ||
948 | - Add a new compression method ("Compression delayed") that delays zlib | ||
949 | compression until after authentication, eliminating the risk of zlib | ||
950 | vulnerabilities being exploited by unauthenticated users. Note that | ||
951 | users of OpenSSH versions earlier than 3.5 will need to disable | ||
952 | compression on the client or set "Compression yes" (losing this | ||
953 | security benefit) on the server. | ||
954 | - Increase the default size of new RSA/DSA keys generated by ssh-keygen | ||
955 | from 1024 to 2048 bits (closes: #181162). | ||
956 | - Many bugfixes and improvements to connection multiplexing. | ||
957 | - Don't pretend to accept $HOME (closes: #208648). | ||
958 | * debian/rules: Resynchronise CFLAGS with that generated by configure. | ||
959 | * openssh-client and openssh-server conflict with pre-split ssh to avoid | ||
960 | problems when ssh is left un-upgraded (closes: #324695). | ||
961 | * Set X11Forwarding to yes in the default sshd_config (new installs only). | ||
962 | At least when X11UseLocalhost is turned on, which is the default, the | ||
963 | security risks of using X11 forwarding are risks to the client, not to | ||
964 | the server (closes: #320104). | ||
965 | |||
966 | -- Colin Watson <cjwatson@debian.org> Wed, 14 Sep 2005 15:16:14 +0100 | ||
967 | |||
968 | openssh (1:4.1p1-7) unstable; urgency=low | ||
969 | |||
970 | * Do the IDEA host key check on a temporary file to avoid altering | ||
971 | /etc/ssh/ssh_host_key itself (closes: #312312). | ||
972 | * Work around the ssh-askpass alternative somehow ending up in manual mode | ||
973 | pointing to the obsolete /usr/lib/ssh/gnome-ssh-askpass. | ||
974 | * Add GNU/kFreeBSD support (thanks, Aurelien Jarno; closes: #318113). | ||
975 | * Fix XSIish uses of 'test' in openssh-server.preinst. | ||
976 | * Policy version 3.6.2: no changes required. | ||
977 | |||
978 | -- Colin Watson <cjwatson@debian.org> Fri, 2 Sep 2005 16:18:11 +0100 | ||
979 | |||
980 | openssh (1:4.1p1-6) unstable; urgency=low | ||
981 | |||
982 | * Fix one-character typo that meant the binaries in openssh-client and | ||
983 | openssh-server got recompiled with the wrong options during | ||
984 | 'debian/rules install' (closes: #317088, #317238, #317241). | ||
985 | |||
986 | -- Colin Watson <cjwatson@debian.org> Thu, 7 Jul 2005 10:56:16 +0100 | ||
987 | |||
988 | openssh (1:4.1p1-5) unstable; urgency=low | ||
989 | |||
990 | * Build-depend on libselinux1-dev on ppc64 too (closes: #314625). | ||
991 | * Drop priority of ssh to extra to match the override file. | ||
992 | * Make /usr/share/doc/openssh-server and /usr/share/doc/ssh symlinks to | ||
993 | /usr/share/doc/openssh-client (closes: #314745). | ||
994 | * Ship README.dns (closes: #284874). | ||
995 | * Disable btmp logging, since Debian's /var/log/btmp has inappropriate | ||
996 | permissions (closes: #314956). | ||
997 | * Allow ~/.ssh/config to be group-writable, provided that the group in | ||
998 | question contains only the file's owner (closes: #314347). | ||
999 | * debconf template translations: | ||
1000 | - Update Brazilian Portuguese (thanks, André LuÃs Lopes; | ||
1001 | closes: #315477). | ||
1002 | - Add Vietnamese (thanks, Clytie Siddall; closes: #316636). | ||
1003 | |||
1004 | -- Colin Watson <cjwatson@debian.org> Sun, 3 Jul 2005 17:08:08 +0100 | ||
1005 | |||
1006 | openssh (1:4.1p1-4) unstable; urgency=low | ||
1007 | |||
1008 | * openssh-client and openssh-server conflict with ssh-krb5, as ssh-krb5 | ||
1009 | only conflicts with ssh (closes: #312475). | ||
1010 | * SELinux support (thanks, Manoj Srivastava; closes: #308555): | ||
1011 | - Added SELinux capability, and turned it on be default. Added | ||
1012 | restorecon calls in preinst and postinst (should not matter if the | ||
1013 | machine is not SELinux aware). By and large, the changes made should | ||
1014 | have no effect unless the rules file calls --with-selinux; and even | ||
1015 | then there should be no performance hit for machines not actively | ||
1016 | running SELinux. | ||
1017 | - Modified the preinst and postinst to call restorecon to set the | ||
1018 | security context for the generated public key files. | ||
1019 | - Added a comment to /etc/pam.d/ssh to indicate that an SELinux system | ||
1020 | may want to also include pam_selinux.so. | ||
1021 | * Re-enable ssh-askpass-gnome on the Hurd, now that its build-dependencies | ||
1022 | are available. | ||
1023 | * Restore /usr/lib/sftp-server temporarily, as a symlink to | ||
1024 | /usr/lib/openssh/sftp-server (closes: #312891). | ||
1025 | * Switch to debhelper compatibility level 3, since 2 is deprecated. | ||
1026 | * debconf template translations: | ||
1027 | - Update German (thanks, Jens Seidel; closes: #313949). | ||
1028 | |||
1029 | -- Colin Watson <cjwatson@debian.org> Fri, 17 Jun 2005 14:20:20 +0100 | ||
1030 | |||
1031 | openssh (1:4.1p1-3) unstable; urgency=low | ||
1032 | |||
1033 | * Upload to unstable. | ||
1034 | |||
1035 | -- Colin Watson <cjwatson@debian.org> Mon, 6 Jun 2005 22:28:33 +0100 | ||
1036 | |||
1037 | openssh (1:4.1p1-2) experimental; urgency=low | ||
1038 | |||
1039 | * Drop debconf support for allowing SSH protocol 1, which is discouraged | ||
1040 | and has not been the default since openssh 1:3.0.1p1-1. Users who need | ||
1041 | this should edit sshd_config instead (closes: #147212). | ||
1042 | * Since ssh-keysign isn't used by default (you need to set | ||
1043 | EnableSSHKeysign to "yes" in /etc/ssh/ssh_config), having a debconf | ||
1044 | question to ask whether it should be setuid is overkill, and the | ||
1045 | question text had got out of date anyway. Remove this question, ship | ||
1046 | ssh-keysign setuid in openssh-client.deb, and set a statoverride if the | ||
1047 | debconf question was previously set to false. | ||
1048 | * Add lintian overrides for the above (setuid-binary, | ||
1049 | no-debconf-templates). | ||
1050 | * Fix picky lintian errors about slogin symlinks. | ||
1051 | * Fix DEB_HOST_ARCH_OS/DEB_HOST_GNU_SYSTEM compatibility handling. | ||
1052 | * Apply Linux 2.2 workaround (see #239999) only on Linux. | ||
1053 | |||
1054 | -- Colin Watson <cjwatson@debian.org> Thu, 2 Jun 2005 00:55:58 +0100 | ||
1055 | |||
1056 | openssh (1:4.1p1-1) experimental; urgency=low | ||
1057 | |||
1058 | * New upstream release. | ||
1059 | - Normalise socket addresses returned by get_remote_hostname(), fixing | ||
1060 | 4-in-6 mapping issues with AllowUsers et al (closes: #192234). | ||
1061 | * Take upstream's hint and disable the unsupported USE_POSIX_THREADS | ||
1062 | (closes: #295757, #308868, and possibly others; may open other bugs). | ||
1063 | Use PAM password authentication to avoid #278394. In future I may | ||
1064 | provide two sets of binaries built with and without this option, since | ||
1065 | it seems I can't win. | ||
1066 | * Disable ChallengeResponseAuthentication in new installations, returning | ||
1067 | to PasswordAuthentication by default, since it now supports PAM and | ||
1068 | apparently works better with a non-threaded sshd (closes: #247521). | ||
1069 | * openssh-server Suggests: rssh (closes: #233012). | ||
1070 | * Change libexecdir to /usr/lib/openssh, and fix up various alternatives | ||
1071 | and configuration files to match (closes: #87900, #151321). | ||
1072 | * Fix up very old sshd_config files that refer to /usr/libexec/sftp-server | ||
1073 | (closes: #141979). | ||
1074 | |||
1075 | -- Colin Watson <cjwatson@debian.org> Tue, 31 May 2005 01:33:33 +0100 | ||
1076 | |||
1077 | openssh (1:4.0p1-1) experimental; urgency=low | ||
1078 | |||
1079 | * New upstream release. | ||
1080 | - Port-forwarding specifications now take optional bind addresses, and | ||
1081 | the server allows client-specified bind addresses for remote port | ||
1082 | forwardings when configured with "GatewayPorts clientspecified" | ||
1083 | (closes: #87253, #192206). | ||
1084 | - ssh and ssh-keyscan now support hashing of known_hosts files for | ||
1085 | improved privacy (CAN-2005-2666). ssh-keygen has new options for | ||
1086 | managing known_hosts files, which understand hashing. | ||
1087 | - sftp supports command history and editing support using libedit | ||
1088 | (closes: #287013). | ||
1089 | - Have scp and sftp wait for the spawned ssh to exit before they exit | ||
1090 | themselves, allowing ssh to restore terminal modes (closes: #257130). | ||
1091 | - Improved the handling of bad data in authorized_keys files, | ||
1092 | eliminating fatal errors on corrupt or very large keys; e.g. linefeeds | ||
1093 | in keys only produce errors in auth.log now (closes: #220726). | ||
1094 | - Add "command mode" to ssh connection multiplexing (closes: #303452). | ||
1095 | - Mention $HOME/.hushlogin in sshd(8) FILES section (closes: #163933). | ||
1096 | * Make gnome-ssh-askpass stay above other windows (thanks, Liyang HU; | ||
1097 | closes: #296487). | ||
1098 | * Remove obsolete and unnecessary ssh/forward_warning debconf note. | ||
1099 | * Hurd build fixes (although sshd still doesn't work): | ||
1100 | - Restore X forwarding fix from #102991, lost somewhere along the way. | ||
1101 | - Link with -lcrypt. | ||
1102 | - Link with -lpthread rather than -pthread. | ||
1103 | - Don't build ssh-askpass-gnome on the Hurd, until GNOME is available to | ||
1104 | satisfy build-dependencies. | ||
1105 | * Drop workaround for #242462 on amd64; it's been fixed properly upstream. | ||
1106 | * Enable HashKnownHosts by default. This only affects new entries; use | ||
1107 | 'ssh-keygen -H' to convert an entire known_hosts file to hashed format. | ||
1108 | * Note in ssh_config(5) that the SetupTimeOut option is Debian-specific | ||
1109 | (closes: #307069). | ||
1110 | * debconf template translations: | ||
1111 | - Update Czech (thanks, Miroslav Kure; closes: #298744). | ||
1112 | - Update Finnish (thanks, Matti Pöllä; closes: #303787). | ||
1113 | - Synchronise Spanish with sarge branch (thanks, Javier | ||
1114 | Fernández-Sanguino Peña; closes: #298536). | ||
1115 | - Add Ukrainian (thanks, Eugeniy Meshcheryakov; closes: #301852). | ||
1116 | |||
1117 | -- Colin Watson <cjwatson@debian.org> Thu, 26 May 2005 11:23:18 +0100 | ||
1118 | |||
1119 | openssh (1:3.9p1-3) experimental; urgency=low | ||
1120 | |||
1121 | * Explain how to run sshd from inittab in README.Debian (closes: #147360). | ||
1122 | * Add debian/watch file. | ||
1123 | |||
1124 | -- Colin Watson <cjwatson@debian.org> Fri, 18 Feb 2005 00:20:16 +0000 | ||
1125 | |||
1126 | openssh (1:3.9p1-2) experimental; urgency=low | ||
1127 | |||
1128 | * Remove pam_nologin from /etc/pam.d/ssh, as sshd's built-in support | ||
1129 | appears to be sufficient and more useful (closes: #162996). | ||
1130 | * Depend on debconf | debconf-2.0. | ||
1131 | * Drop LoginGraceTime back to the upstream default of two minutes on new | ||
1132 | installs (closes: #289573). | ||
1133 | * debconf template translations from Ubuntu bug #1232: | ||
1134 | - Update Greek (thanks, Logiotatidis George). | ||
1135 | - Update Spanish (thanks, Santiago Erquicia). | ||
1136 | |||
1137 | -- Colin Watson <cjwatson@debian.org> Sat, 15 Jan 2005 12:37:54 +0000 | ||
1138 | |||
1139 | openssh (1:3.9p1-1) experimental; urgency=low | ||
1140 | |||
1141 | * New upstream release. | ||
1142 | - PAM password authentication implemented again (closes: #238699, | ||
1143 | #242119). | ||
1144 | - Implemented the ability to pass selected environment variables between | ||
1145 | the client and the server. | ||
1146 | - Fix ssh-keyscan breakage when remote server doesn't speak SSH protocol | ||
1147 | (closes: #228828). | ||
1148 | - Fix res_query detection (closes: #242462). | ||
1149 | - 'ssh -c' documentation improved (closes: #265627). | ||
1150 | * Pass LANG and LC_* environment variables from the client by default, and | ||
1151 | accept them to the server by default in new installs, although not on | ||
1152 | upgrade (closes: #264024). | ||
1153 | * Build ssh in binary-indep, not binary-arch (thanks, LaMont Jones). | ||
1154 | * Expand on openssh-client package description (closes: #273831). | ||
1155 | |||
1156 | -- Colin Watson <cjwatson@debian.org> Tue, 4 Jan 2005 14:18:31 +0000 | ||
1157 | |||
1158 | openssh (1:3.8.1p1-14) experimental; urgency=low | ||
1159 | |||
1160 | * We use DH_COMPAT=2, so build-depend on debhelper (>= 2). | ||
1161 | * Fix timing information leak allowing discovery of invalid usernames in | ||
1162 | PAM keyboard-interactive authentication (backported from a patch by | ||
1163 | Darren Tucker; closes: #281595). | ||
1164 | * Make sure that there's a delay in PAM keyboard-interactive | ||
1165 | authentication when PermitRootLogin is not set to yes and the correct | ||
1166 | root password is entered (closes: #248747). | ||
1167 | |||
1168 | -- Colin Watson <cjwatson@debian.org> Sun, 28 Nov 2004 18:09:37 +0000 | ||
1169 | |||
1170 | openssh (1:3.8.1p1-13) experimental; urgency=low | ||
1171 | |||
1172 | * Enable threading for PAM, on Sam Hartman's advice (closes: #278394). | ||
1173 | * debconf template translations: | ||
1174 | - Update Dutch (thanks, cobaco; closes: #278715). | ||
1175 | * Correct README.Debian's ForwardX11Trusted description (closes: #280190). | ||
1176 | |||
1177 | -- Colin Watson <cjwatson@debian.org> Fri, 12 Nov 2004 12:03:13 +0000 | ||
1178 | |||
1179 | openssh (1:3.8.1p1-12) experimental; urgency=low | ||
1180 | |||
1181 | * Preserve /etc/ssh/sshd_config ownership/permissions (closes: #276754). | ||
1182 | * Shorten the version string from the form "OpenSSH_3.8.1p1 Debian | ||
1183 | 1:3.8.1p1-8.sarge.1" to "OpenSSH_3.8.1p1 Debian-8.sarge.1", as some SSH | ||
1184 | implementations apparently have problems with the long version string. | ||
1185 | This is of course a bug in those implementations, but since the extent | ||
1186 | of the problem is unknown it's best to play safe (closes: #275731). | ||
1187 | * debconf template translations: | ||
1188 | - Add Finnish (thanks, Matti Pöllä; closes: #265339). | ||
1189 | - Update Danish (thanks, Morten Brix Pedersen; closes: #275895). | ||
1190 | - Update French (thanks, Denis Barbier; closes: #276703). | ||
1191 | - Update Japanese (thanks, Kenshi Muto; closes: #277438). | ||
1192 | |||
1193 | -- Colin Watson <cjwatson@debian.org> Sun, 24 Oct 2004 19:21:17 +0100 | ||
1194 | |||
1195 | openssh (1:3.8.1p1-11) experimental; urgency=high | ||
1196 | |||
1197 | * Move sshd_config(5) to openssh-server, where it belongs. | ||
1198 | * If PasswordAuthentication is disabled, then offer to disable | ||
1199 | ChallengeResponseAuthentication too. The current PAM code will attempt | ||
1200 | password-style authentication if ChallengeResponseAuthentication is | ||
1201 | enabled (closes: #250369). | ||
1202 | * This will ask a question of anyone who installed fresh with 1:3.8p1-2 or | ||
1203 | later and then upgraded. Sorry about that ... for this reason, the | ||
1204 | default answer is to leave ChallengeResponseAuthentication enabled. | ||
1205 | |||
1206 | -- Colin Watson <cjwatson@debian.org> Wed, 6 Oct 2004 14:28:20 +0100 | ||
1207 | |||
1208 | openssh (1:3.8.1p1-10) experimental; urgency=low | ||
1209 | |||
1210 | * Don't install the ssh-askpass-gnome .desktop file by default; I've had | ||
1211 | too many GNOME people tell me it's the wrong thing to be doing. I've | ||
1212 | left it in /usr/share/doc/ssh-askpass-gnome/examples/ for now. | ||
1213 | |||
1214 | -- Colin Watson <cjwatson@debian.org> Wed, 25 Aug 2004 18:18:14 +0100 | ||
1215 | |||
1216 | openssh (1:3.8.1p1-9) experimental; urgency=low | ||
1217 | |||
1218 | * Split the ssh binary package into openssh-client and openssh-server | ||
1219 | (closes: #39741). openssh-server depends on openssh-client for some | ||
1220 | common functionality; it didn't seem worth creating yet another package | ||
1221 | for this. openssh-client is priority standard, openssh-server optional. | ||
1222 | * New transitional ssh package, priority optional, depending on | ||
1223 | openssh-client and openssh-server. May be removed once nothing depends | ||
1224 | on it. | ||
1225 | * When upgrading from ssh to openssh-{client,server}, it's very difficult | ||
1226 | for the maintainer scripts to find out what version we're upgrading from | ||
1227 | without dodgy dpkg hackery. I've therefore taken the opportunity to move | ||
1228 | a couple of debconf notes into NEWS files, namely ssh/ssh2_keys_merged | ||
1229 | and ssh/user_environment_tell. | ||
1230 | * Add a heuristic to try to make sure the sshd_config upgrade to >= 3.7 | ||
1231 | happens even though we don't know what version we're upgrading from. | ||
1232 | * Remove /etc/ssh/sshd_not_to_be_run on purge of openssh-server. For now | ||
1233 | (until sarge+2) it's still honoured to avoid breaking existing | ||
1234 | configurations, but the right approach is now to remove the | ||
1235 | openssh-server package if you don't want to run the server. Add a NEWS | ||
1236 | item to that effect. | ||
1237 | |||
1238 | -- Colin Watson <cjwatson@debian.org> Mon, 2 Aug 2004 20:48:54 +0100 | ||
1239 | |||
1240 | openssh (1:3.8.1p1-8.sarge.4) unstable; urgency=high | ||
1241 | |||
1242 | * Fix timing information leak allowing discovery of invalid usernames in | ||
1243 | PAM keyboard-interactive authentication (backported from a patch by | ||
1244 | Darren Tucker; closes: #281595). | ||
1245 | * Make sure that there's a delay in PAM keyboard-interactive | ||
1246 | authentication when PermitRootLogin is not set to yes and the correct | ||
1247 | root password is entered (closes: #248747). | ||
1248 | |||
1249 | -- Colin Watson <cjwatson@debian.org> Sun, 28 Nov 2004 12:37:16 +0000 | ||
1250 | |||
1251 | openssh (1:3.8.1p1-8.sarge.3) unstable; urgency=low | ||
1252 | |||
1253 | * Enable threading for PAM, on Sam Hartman's advice (closes: #278394). | ||
1254 | * debconf template translations: | ||
1255 | - Update Dutch (thanks, cobaco; closes: #278715). | ||
1256 | * Correct README.Debian's ForwardX11Trusted description (closes: #280190). | ||
1257 | |||
1258 | -- Colin Watson <cjwatson@debian.org> Fri, 12 Nov 2004 10:31:12 +0000 | ||
1259 | |||
1260 | openssh (1:3.8.1p1-8.sarge.2) unstable; urgency=low | ||
1261 | |||
1262 | * Preserve /etc/ssh/sshd_config ownership/permissions (closes: #276754). | ||
1263 | * Shorten the version string from the form "OpenSSH_3.8.1p1 Debian | ||
1264 | 1:3.8.1p1-8.sarge.1" to "OpenSSH_3.8.1p1 Debian-8.sarge.1", as some SSH | ||
1265 | implementations apparently have problems with the long version string. | ||
1266 | This is of course a bug in those implementations, but since the extent | ||
1267 | of the problem is unknown it's best to play safe (closes: #275731). | ||
1268 | * debconf template translations: | ||
1269 | - Add Finnish (thanks, Matti Pöllä; closes: #265339). | ||
1270 | - Update Danish (thanks, Morten Brix Pedersen; closes: #275895). | ||
1271 | - Update French (thanks, Denis Barbier; closes: #276703). | ||
1272 | - Update Japanese (thanks, Kenshi Muto; closes: #277438). | ||
1273 | |||
1274 | -- Colin Watson <cjwatson@debian.org> Sun, 24 Oct 2004 17:57:14 +0100 | ||
1275 | |||
1276 | openssh (1:3.8.1p1-8.sarge.1) unstable; urgency=high | ||
1277 | |||
1278 | * If PasswordAuthentication is disabled, then offer to disable | ||
1279 | ChallengeResponseAuthentication too. The current PAM code will attempt | ||
1280 | password-style authentication if ChallengeResponseAuthentication is | ||
1281 | enabled (closes: #250369). | ||
1282 | * This will ask a question of anyone who installed fresh with 1:3.8p1-2 or | ||
1283 | later and then upgraded. Sorry about that ... for this reason, the | ||
1284 | default answer is to leave ChallengeResponseAuthentication enabled. | ||
1285 | |||
1286 | -- Colin Watson <cjwatson@debian.org> Wed, 6 Oct 2004 14:21:55 +0100 | ||
1287 | |||
1288 | openssh (1:3.8.1p1-8) unstable; urgency=high | ||
1289 | |||
1290 | * Matthew Vernon: | ||
1291 | - Add a GPL exception to the licensing terms of the Debian patch | ||
1292 | (closes: #211644). | ||
1293 | |||
1294 | -- Colin Watson <cjwatson@debian.org> Thu, 29 Jul 2004 13:28:47 +0100 | ||
1295 | |||
1296 | openssh (1:3.8.1p1-7) unstable; urgency=low | ||
1297 | |||
1298 | * Re-enable shadow password support in openssh-server-udeb, at Bastian | ||
1299 | Blank's request (closes: #260800). | ||
1300 | |||
1301 | -- Colin Watson <cjwatson@debian.org> Thu, 22 Jul 2004 10:56:06 +0100 | ||
1302 | |||
1303 | openssh (1:3.8.1p1-6) unstable; urgency=low | ||
1304 | |||
1305 | * Implement hack in | ||
1306 | http://lists.debian.org/debian-boot/2004/07/msg01207.html to get | ||
1307 | openssh-client-udeb to show up as a retrievable debian-installer | ||
1308 | component. | ||
1309 | * Generate host keys in postinst only if the relevant HostKey directives | ||
1310 | are found in sshd_config (closes: #87946). | ||
1311 | |||
1312 | -- Colin Watson <cjwatson@debian.org> Wed, 21 Jul 2004 15:14:46 +0100 | ||
1313 | |||
1314 | openssh (1:3.8.1p1-5) unstable; urgency=medium | ||
1315 | |||
1316 | * Update German debconf template translation (thanks, Helge Kreutzmann; | ||
1317 | closes: #252226). | ||
1318 | * Remove Suggests: dnsutils, as it was only needed for | ||
1319 | make-ssh-known-hosts (#93265), which has been replaced by ssh-keyscan. | ||
1320 | * Disable shadow password support in openssh-server-udeb. | ||
1321 | * Fix non-portable shell constructs in maintainer scripts, Makefile, and | ||
1322 | ssh-copy-id (thanks, David Weinehall; closes: #258517). | ||
1323 | * Apply patch from Darren Tucker to make the PAM authentication SIGCHLD | ||
1324 | handler kill the PAM thread if its waitpid() call returns 0, as well as | ||
1325 | the previous check for -1 (closes: #252676). | ||
1326 | * Add scp and sftp to openssh-client-udeb. It might not be very 'u' any | ||
1327 | more; oh well. | ||
1328 | |||
1329 | -- Colin Watson <cjwatson@debian.org> Sat, 10 Jul 2004 13:57:27 +0100 | ||
1330 | |||
1331 | openssh (1:3.8.1p1-4) unstable; urgency=medium | ||
1332 | |||
1333 | * Kill off PAM thread if privsep slave dies (closes: #248125). | ||
1334 | |||
1335 | -- Colin Watson <cjwatson@debian.org> Fri, 28 May 2004 17:58:45 -0300 | ||
1336 | |||
1337 | openssh (1:3.8.1p1-3) unstable; urgency=low | ||
1338 | |||
1339 | * Add ssh-keygen to openssh-server-udeb. | ||
1340 | |||
1341 | -- Colin Watson <cjwatson@debian.org> Thu, 20 May 2004 16:31:52 +0100 | ||
1342 | |||
1343 | openssh (1:3.8.1p1-2) unstable; urgency=low | ||
1344 | |||
1345 | * Add Catalan debconf template translation (thanks, Aleix Badia i Bosch; | ||
1346 | closes: #248748). | ||
1347 | * openssh-client-udeb and openssh-server-udeb depend on libnss-files-udeb | ||
1348 | (not yet uploaded). | ||
1349 | * Restore ssh-askpass-gnome binary, lost by mistake. | ||
1350 | * Don't link against libnsl in udeb builds. | ||
1351 | |||
1352 | -- Colin Watson <cjwatson@debian.org> Thu, 20 May 2004 11:15:58 +0100 | ||
1353 | |||
1354 | openssh (1:3.8.1p1-1) unstable; urgency=low | ||
1355 | |||
1356 | * New upstream release. | ||
1357 | - Use a longer buffer for tty names in utmp (closes: #247538). | ||
1358 | * Make sure there's a newline at the end of sshd_config before adding | ||
1359 | 'UsePAM yes' (closes: #244829). | ||
1360 | * Generate a new .orig.tar.gz without RFC.nroff, and remove | ||
1361 | /usr/share/doc/ssh/RFC.gz (closes: #211640). It isn't DFSG-free and only | ||
1362 | documents the obsolete SSH1 protocol, not to mention that it was never a | ||
1363 | real RFC but only an Internet-Draft. It's available from | ||
1364 | http://www.free.lp.se/bamse/draft-ylonen-ssh-protocol-00.txt if you want | ||
1365 | it for some reason. | ||
1366 | * Add openssh-client-udeb and openssh-server-udeb binary packages for use | ||
1367 | in debian-installer. They still need libnss_files to be supplied in udeb | ||
1368 | form by glibc. | ||
1369 | * Work around lack of res_query weak alias in libresolv on amd64 (see | ||
1370 | #242462, awaiting real fix upstream). | ||
1371 | * Fix grammar in sshd(8) (closes: #238753). | ||
1372 | * Add .desktop file and icon for ssh-askpass-gnome (closes: #232333). | ||
1373 | * Update Polish debconf template translation (thanks, Emil Nowak; | ||
1374 | closes: #242808). | ||
1375 | * Add Turkish debconf template translation (thanks, Recai OktaÅŸ; | ||
1376 | closes: #246068). | ||
1377 | |||
1378 | -- Colin Watson <cjwatson@debian.org> Tue, 11 May 2004 23:38:10 +0100 | ||
1379 | |||
1380 | openssh (1:3.8p1-3) unstable; urgency=low | ||
1381 | |||
1382 | * Remove deprecated ReverseMappingCheck option from newly generated | ||
1383 | sshd_config files (closes: #239987). | ||
1384 | * Build everything apart from contrib in a subdirectory, to allow for | ||
1385 | multiple builds. | ||
1386 | * Some older kernels are missing setresuid() and setresgid(), so don't try | ||
1387 | to use them. setreuid() and setregid() will do well enough for our | ||
1388 | purposes (closes: #239999). | ||
1389 | |||
1390 | -- Colin Watson <cjwatson@debian.org> Mon, 5 Apr 2004 21:23:43 +0100 | ||
1391 | |||
1392 | openssh (1:3.8p1-2) unstable; urgency=medium | ||
1393 | |||
1394 | * Disable PasswordAuthentication for new installations (closes: #236810). | ||
1395 | * Turn off the new ForwardX11Trusted by default, returning to the | ||
1396 | semantics of 3.7 and earlier, since it seems immature and causes far too | ||
1397 | many problems with existing setups. See README.Debian for details | ||
1398 | (closes: #237021). | ||
1399 | |||
1400 | -- Colin Watson <cjwatson@debian.org> Wed, 10 Mar 2004 10:33:07 +0000 | ||
1401 | |||
1402 | openssh (1:3.8p1-1) unstable; urgency=low | ||
1403 | |||
1404 | * New upstream release (closes: #232281): | ||
1405 | - New PAM implementation based on that in FreeBSD. This runs PAM session | ||
1406 | modules before dropping privileges (closes: #132681, #150968). | ||
1407 | - Since PAM session modules are run as root, we can turn pam_limits back | ||
1408 | on by default, and it no longer spits out "Operation not permitted" to | ||
1409 | syslog (closes: #171673). | ||
1410 | - Password expiry works again (closes: #153235). | ||
1411 | - 'ssh -q' suppresses login banner (closes: #134589). | ||
1412 | - sshd doesn't lie to PAM about invalid usernames (closes: #157078). | ||
1413 | - ssh-add prints key comment on each prompt (closes: #181869). | ||
1414 | - Punctuation formatting fixed in man pages (closes: #191131). | ||
1415 | - EnableSSHKeysign documented in ssh_config(5) (closes: #224457). | ||
1416 | * Add 'UsePAM yes' to /etc/ssh/sshd_config on upgrade from versions older | ||
1417 | than this, to maintain the standard Debian sshd configuration. | ||
1418 | * Comment out PAMAuthenticationViaKbdInt and RhostsAuthentication in | ||
1419 | sshd_config on upgrade. Neither option is supported any more. | ||
1420 | * Privilege separation and PAM are now properly supported together, so | ||
1421 | remove both debconf questions related to them and simply set it | ||
1422 | unconditionally in newly generated sshd_config files (closes: #228838). | ||
1423 | * ServerAliveInterval implemented upstream, so ProtocolKeepAlives is now a | ||
1424 | compatibility alias. The semantics differ slightly, though; see | ||
1425 | ssh_config(5) for details. | ||
1426 | * Implement SSH1 support for ServerAliveInterval using SSH_MSG_IGNORE. As | ||
1427 | documented in ssh_config(5), it's not as good as the SSH2 version. | ||
1428 | * Remove -fno-builtin-log, -DHAVE_MMAP_ANON_SHARED, and | ||
1429 | -D__FILE_OFFSET_BITS=64 compiler options, which are no longer necessary. | ||
1430 | * Update config.guess and config.sub from autotools-dev 20040105.1. | ||
1431 | * Darren Tucker: | ||
1432 | - Reset signal status when starting pam auth thread, prevent hanging | ||
1433 | during PAM keyboard-interactive authentications. | ||
1434 | - Fix a non-security-critical segfault in PAM authentication. | ||
1435 | * Add debconf template translations: | ||
1436 | - Greek (thanks, Konstantinos Margaritis; closes: #232843). | ||
1437 | - Italian (thanks, Renato Gini; closes: #234777). | ||
1438 | |||
1439 | -- Colin Watson <cjwatson@debian.org> Sat, 6 Mar 2004 18:43:44 +0000 | ||
1440 | |||
1441 | openssh (1:3.6.1p2-12) unstable; urgency=low | ||
1442 | |||
1443 | * Update Spanish debconf template translation (thanks, Javier | ||
1444 | Fernández-Sanguino Peña; closes: #228242). | ||
1445 | * Add debconf template translations: | ||
1446 | - Czech (thanks, Miroslav Kure; closes: #230110). | ||
1447 | - Simplified Chinese (thanks, Hiei Xu; closes: #230726). | ||
1448 | |||
1449 | -- Colin Watson <cjwatson@debian.org> Wed, 11 Feb 2004 09:37:57 +0000 | ||
1450 | |||
1451 | openssh (1:3.6.1p2-11) unstable; urgency=low | ||
1452 | |||
1453 | * Comment out pam_limits in default configuration, for now at least | ||
1454 | (closes: #198254). | ||
1455 | * Use invoke-rc.d (if it exists) to run the init script. | ||
1456 | * Backport format string bug fix in sshconnect.c (closes: #225238). | ||
1457 | * ssh-copy-id exits if ssh fails (closes: #215252). | ||
1458 | |||
1459 | -- Colin Watson <cjwatson@debian.org> Sun, 4 Jan 2004 18:59:21 +0000 | ||
1460 | |||
1461 | openssh (1:3.6.1p2-10) unstable; urgency=low | ||
1462 | |||
1463 | * Use --retry in init script when restarting rather than sleeping, to make | ||
1464 | sure the old process is dead (thanks, Herbert Xu; closes: #212117). | ||
1465 | Depend on dpkg (>= 1.9.0) for start-stop-daemon's --retry option. | ||
1466 | * Update debconf template translations: | ||
1467 | - Brazilian Portuguese (thanks, Andre Luis Lopes; closes: #219844). | ||
1468 | - Danish (thanks, Morten Brix Pedersen; closes: #217964). | ||
1469 | - Japanese (thanks, Kenshi Muto; closes: #212497). | ||
1470 | - Russian (thanks, Ilgiz Kalmetev). | ||
1471 | - Spanish (thanks, Carlos Valdivia Yagüe; closes: #211832). | ||
1472 | * Add Dutch debconf template translation (thanks, cobaco; | ||
1473 | closes: #215372). | ||
1474 | * Update config.guess and config.sub from autotools-dev 20031007.1 | ||
1475 | (closes: #217696). | ||
1476 | * Implement New World Order for PAM configuration, including | ||
1477 | /etc/pam.d/common-* from /etc/pam.d/ssh (closes: #212959). | ||
1478 | - To backport this release to woody, you need to set DEB_BUILD_SSH_WOODY | ||
1479 | in your environment. See README.Debian. | ||
1480 | * Add more commentary to /etc/pam.d/ssh. | ||
1481 | |||
1482 | -- Colin Watson <cjwatson@debian.org> Sun, 16 Nov 2003 01:14:16 +0000 | ||
1483 | |||
1484 | openssh (1:3.6.1p2-9) unstable; urgency=high | ||
1485 | |||
1486 | * Merge even more buffer allocation fixes from upstream (CAN-2003-0682; | ||
1487 | closes: #211434). | ||
1488 | |||
1489 | -- Colin Watson <cjwatson@debian.org> Fri, 19 Sep 2003 10:25:25 +0100 | ||
1490 | |||
1491 | openssh (1:3.6.1p2-8) unstable; urgency=high | ||
1492 | |||
1493 | * Merge more buffer allocation fixes from new upstream version 3.7.1p1 | ||
1494 | (closes: #211324). | ||
1495 | |||
1496 | -- Colin Watson <cjwatson@debian.org> Wed, 17 Sep 2003 03:07:19 +0100 | ||
1497 | |||
1498 | openssh (1:3.6.1p2-7) unstable; urgency=high | ||
1499 | |||
1500 | * Update debconf template translations: | ||
1501 | - French (thanks, Christian Perrier; closes: #208801). | ||
1502 | - Japanese (thanks, Kenshi Muto; closes: #210380). | ||
1503 | * Some small improvements to the English templates courtesy of Christian | ||
1504 | Perrier. I've manually unfuzzied a few translations where it was | ||
1505 | obvious, on Christian's advice, but the others will have to be updated. | ||
1506 | * Document how to generate an RSA1 host key (closes: #141703). | ||
1507 | * Incorporate NMU fix for early buffer expansion vulnerability, | ||
1508 | CAN-2003-0693 (closes: #211205). Thanks to Michael Stone. | ||
1509 | |||
1510 | -- Colin Watson <cjwatson@debian.org> Tue, 16 Sep 2003 14:32:28 +0100 | ||
1511 | |||
1512 | openssh (1:3.6.1p2-6.0) unstable; urgency=high | ||
1513 | |||
1514 | * SECURITY: fix for CAN-2003-0693, buffer allocation error | ||
1515 | |||
1516 | -- Michael Stone <mstone@debian.org> Tue, 16 Sep 2003 08:27:07 -0400 | ||
1517 | |||
1518 | openssh (1:3.6.1p2-6) unstable; urgency=medium | ||
1519 | |||
1520 | * Use a more CVS-friendly means of setting SSH_VERSION. | ||
1521 | * Update Brazilian Portuguese debconf template translation (thanks, Andre | ||
1522 | Luis Lopes; closes: #208036). | ||
1523 | * Don't run 'sshd -t' in init script if the server isn't to be run | ||
1524 | (closes: #197576). | ||
1525 | * Fix login delay, spurious auth.log entry, and PermitRootLogin | ||
1526 | information leakage due to PAM issues with upstream's recent security | ||
1527 | update (thanks, Darren Tucker; closes: #99168, #192207, #193546). | ||
1528 | * Policy version 3.6.1: recode this changelog to UTF-8. | ||
1529 | |||
1530 | -- Colin Watson <cjwatson@debian.org> Wed, 3 Sep 2003 19:14:02 +0100 | ||
1531 | |||
1532 | openssh (1:3.6.1p2-5) unstable; urgency=low | ||
1533 | |||
1534 | * Disable cmsg_type check for file descriptor passing when running on | ||
1535 | Linux 2.0 (closes: #150976). Remove comments about non-functional | ||
1536 | privilege separation on 2.0 from ssh/privsep_ask and ssh/privsep_tell | ||
1537 | debconf questions and from README.Debian, since it should all now work. | ||
1538 | * Fix "defails" typo in generated sshd_config (closes: #206484). | ||
1539 | * Backport upstream patch to strip trailing whitespace (including | ||
1540 | newlines) from configuration directives (closes: #192079). | ||
1541 | |||
1542 | -- Colin Watson <cjwatson@debian.org> Wed, 27 Aug 2003 02:19:57 +0100 | ||
1543 | |||
1544 | openssh (1:3.6.1p2-4) unstable; urgency=low | ||
1545 | |||
1546 | * getent can get just one key; no need to use grep (thanks, James Troup). | ||
1547 | * Move /usr/local/bin to the front of the default path, following | ||
1548 | /etc/login.defs (closes: #201150). | ||
1549 | * Remove specifics of problematic countries from package description | ||
1550 | (closes: #197040). | ||
1551 | * Update Spanish debconf template translation (thanks, Carlos Valdivia | ||
1552 | Yagüe; closes: #198456). | ||
1553 | * Backport upstream patch to pass monitor signals through to child | ||
1554 | (closes: #164797). | ||
1555 | |||
1556 | -- Colin Watson <cjwatson@debian.org> Sun, 27 Jul 2003 17:31:15 +0100 | ||
1557 | |||
1558 | openssh (1:3.6.1p2-3) unstable; urgency=low | ||
1559 | |||
1560 | * Update French debconf template translation (thanks, Christian Perrier; | ||
1561 | closes: #194323). | ||
1562 | * Version the adduser dependency for --no-create-home (closes: #195756). | ||
1563 | * Add a version of moduli(5), namely revision 1.7 of | ||
1564 | http://www.openbsd.org/cgi-bin/cvsweb/src/share/man/man5/moduli.5 with | ||
1565 | '/etc/moduli' changed to '/etc/ssh/moduli' throughout (closes: #196061). | ||
1566 | |||
1567 | -- Colin Watson <cjwatson@debian.org> Mon, 9 Jun 2003 02:51:35 +0100 | ||
1568 | |||
1569 | openssh (1:3.6.1p2-2) unstable; urgency=low | ||
1570 | |||
1571 | * Force /etc/default/ssh to be non-executable, since dpkg apparently | ||
1572 | doesn't deal with permissions changes on conffiles (closes: #192966). | ||
1573 | * Use debconf 0.5's seen flag rather than the deprecated isdefault. | ||
1574 | * Add GPL location to copyright file. | ||
1575 | * Remove debian/postinst.old. | ||
1576 | * Switch to po-debconf, with some careful manual use of po2debconf to | ||
1577 | ensure that the source package continues to build smoothly on woody | ||
1578 | (closes: #183986). | ||
1579 | * Update debconf template translations: | ||
1580 | - Brazilian Portugese (thanks, Andre Luis Lopes; see #183986). | ||
1581 | - Japanese (thanks, Tomohiro KUBOTA; closes: #192429). | ||
1582 | * Compile with -fno-builtin-log for now, otherwise gcc-3.3 complains | ||
1583 | "log.h:59: warning: conflicting types for built-in function `log'". The | ||
1584 | OpenSSH log() function has been renamed in upstream CVS. | ||
1585 | |||
1586 | -- Colin Watson <cjwatson@debian.org> Mon, 19 May 2003 01:52:38 +0100 | ||
1587 | |||
1588 | openssh (1:3.6.1p2-1) unstable; urgency=medium | ||
1589 | |||
1590 | * New upstream release, including fix for PAM user-discovery security hole | ||
1591 | (closes: #191681). | ||
1592 | * Fix ChallengeResponseAuthentication default in generated sshd_config | ||
1593 | (closes: #106037). | ||
1594 | * Put newlines after full stops in man page documentation for | ||
1595 | ProtocolKeepAlives and SetupTimeOut. | ||
1596 | * Policy version 3.5.9: support DEB_BUILD_OPTIONS=noopt, build | ||
1597 | gnome-ssh-askpass with -g and -Wall flags. | ||
1598 | * Really ask ssh/new_config debconf question before trying to fetch its | ||
1599 | value (closes: #188721). | ||
1600 | * On purge, remove only the files we know about in /etc/ssh rather than | ||
1601 | the whole thing, and remove the directory if that leaves it empty | ||
1602 | (closes: #176679). | ||
1603 | * ssh has depended on debconf for some time now with no complaints, so: | ||
1604 | - Simplify the postinst by relying on debconf being present. (The absent | ||
1605 | case was buggy anyway.) | ||
1606 | - Get rid of "if you have not installed debconf" text in README.Debian, | ||
1607 | and generally update the "/usr/bin/ssh not SUID" entry. | ||
1608 | * More README.Debian work: | ||
1609 | - Reorganize into "UPGRADE ISSUES" and "OTHER ISSUES", in an effort to | ||
1610 | make it easier for people to find the former. The upgrade issues | ||
1611 | should probably be sorted by version somehow. | ||
1612 | - Document X11UseLocalhost under "X11 Forwarding" (closes: #150913). | ||
1613 | * Fix setting of IP flags for interactive sessions (upstream bug #541). | ||
1614 | |||
1615 | -- Colin Watson <cjwatson@debian.org> Mon, 5 May 2003 17:47:40 +0100 | ||
1616 | |||
1617 | openssh (1:3.6.1p1-1) unstable; urgency=low | ||
1618 | |||
1619 | * New upstream release (thanks, Laurence J. Lane). | ||
1620 | * debian/control: ssh-askpass-gnome is now Section: gnome, following the | ||
1621 | override file. | ||
1622 | |||
1623 | -- Colin Watson <cjwatson@debian.org> Wed, 2 Apr 2003 00:51:02 +0100 | ||
1624 | |||
1625 | openssh (1:3.6p1-1) unstable; urgency=low | ||
1626 | |||
1627 | * New upstream release. | ||
1628 | - Workaround applied upstream for a bug in the interaction of glibc's | ||
1629 | getaddrinfo() with the Linux 2.2 kernel (closes: #155814). | ||
1630 | - As such, it should now be safe to remove --with-ipv4-default, so | ||
1631 | starting sshd with -6 is no longer necessary (closes: #79861 and lots | ||
1632 | of other merged bugs). | ||
1633 | - ssh-copy-id prints usage when run without arguments (closes: #71376). | ||
1634 | - scp exits 1 if ssh fails (closes: #138400). | ||
1635 | - sshd writes to utmp's ut_addr_v6 field in IPv6 mode (closes: #167867). | ||
1636 | - 'ssh-add -c' causes ssh-agent to ask the user each time a key is used | ||
1637 | (closes: #109795). | ||
1638 | * Install /etc/default/ssh non-executable (closes: #185537). | ||
1639 | |||
1640 | -- Colin Watson <cjwatson@debian.org> Mon, 31 Mar 2003 23:00:59 +0100 | ||
1641 | |||
1642 | openssh (1:3.5p1-5) unstable; urgency=low | ||
1643 | |||
1644 | * Add /etc/default/ssh (closes: #161049). | ||
1645 | * Run the init script under 'set -e' (closes: #175010). | ||
1646 | * Change the default superuser path to include /sbin, /usr/sbin, and | ||
1647 | /usr/local/sbin (closes: #128235, #151267). Using login.defs would be | ||
1648 | nice, but that belongs to another package. Without a defined API to | ||
1649 | retrieve its settings, parsing it is off-limits. | ||
1650 | * Build ssh-askpass-gnome with GNOME 2. The source package should still | ||
1651 | support building on stable with GNOME 1, using the alternate | ||
1652 | libgnome-dev build-dependency (thanks, Colin Walters; closes: #167582). | ||
1653 | |||
1654 | -- Colin Watson <cjwatson@debian.org> Sun, 9 Mar 2003 20:12:10 +0000 | ||
1655 | |||
1656 | openssh (1:3.5p1-4) unstable; urgency=low | ||
1657 | |||
1658 | * Point rlogin and rcp alternatives at slogin and scp respectively rather | ||
1659 | than ssh (closes: #121103, #151666). Fix alternative removal to match; | ||
1660 | previously it was completely wrong anyway. | ||
1661 | * Find out whether /etc/ssh/sshd_not_to_be_run exists and set the debconf | ||
1662 | question's default using that information, rather than using debconf as | ||
1663 | a registry. Other solutions may be better in the long run, but this is | ||
1664 | at least correct (thanks, Matthew Woodcraft; closes: #84725). | ||
1665 | * Stop using pam_lastlog, as it doesn't currently work well as a session | ||
1666 | module when privilege separation is enabled; it can usually read | ||
1667 | /var/log/lastlog but can't write to it. Instead, just use sshd's | ||
1668 | built-in support, already enabled by default (closes: #151297, #169938). | ||
1669 | * Use 'ssh-keygen -q' rather than redirecting output to /dev/null. | ||
1670 | * Add a "this may take some time" warning when creating host keys on | ||
1671 | installation (part of #110094). | ||
1672 | * When restarting via the init script, check for sshd_not_to_be_run after | ||
1673 | stopping sshd (idea from Tomas Pospisek; closes: #149850). | ||
1674 | * Append /usr/sbin:/sbin to the init script's $PATH, just in case of | ||
1675 | strangeness (closes: #115138). | ||
1676 | * Fix a dpkg-statoverride call to redirect stdout to /dev/null, not | ||
1677 | stderr. | ||
1678 | * Correct copyright file typo: "orignal" -> "original" (closes: #176490). | ||
1679 | * Rebuild with libssl0.9.7 (closes: #176983). | ||
1680 | * We're up to policy version 3.5.6. DEB_BUILD_OPTIONS stuff still needs to | ||
1681 | be looked at. | ||
1682 | |||
1683 | -- Colin Watson <cjwatson@debian.org> Sat, 18 Jan 2003 01:37:23 +0000 | ||
1684 | |||
1685 | openssh (1:3.5p1-3) unstable; urgency=low | ||
1686 | |||
1687 | * Happy new year! | ||
1688 | * Use getent rather than id to find out whether the sshd user exists | ||
1689 | (closes: #150974). | ||
1690 | * Remove some duplication from the postinst's ssh-keysign setuid code. | ||
1691 | * Replace db_text with db_input throughout debian/config. (db_text has | ||
1692 | been a compatibility wrapper since debconf 0.1.5.) | ||
1693 | * Warn about PermitUserEnvironment on upgrade (closes: #167895). | ||
1694 | * Use 'make install-nokeys', and disable unused debhelper commands, | ||
1695 | thereby forward-porting the last pieces of Zack Weinberg's patch | ||
1696 | (closes: #68341). | ||
1697 | * Move the man page for gnome-ssh-askpass from the ssh package to | ||
1698 | ssh-askpass-gnome (closes: #174449). | ||
1699 | * Build with -DLOGIN_NO_ENDOPT, since Debian's /bin/login doesn't accept | ||
1700 | '--' to terminate the list of options (closes: #171554). | ||
1701 | * Add Jonathan Amery's ssh-argv0 script (closes: #111341). | ||
1702 | * Update Danish debconf template (thanks, Morten Brix Pedersen; | ||
1703 | closes: #174757). | ||
1704 | * Document setgid ssh-agent's effect on certain environment variables in | ||
1705 | README.Debian (closes: #167974). | ||
1706 | * Document interoperability problems between scp and ssh.com's server in | ||
1707 | README.Debian, and suggest some workarounds (closes: #174662). | ||
1708 | |||
1709 | -- Colin Watson <cjwatson@debian.org> Wed, 1 Jan 2003 14:18:30 +0000 | ||
1710 | |||
1711 | openssh (1:3.5p1-2) unstable; urgency=low | ||
1712 | |||
1713 | * Mention in the ssh package description that it provides both ssh and | ||
1714 | sshd (closes: #99680). | ||
1715 | * Create a system group for ssh-agent, not a user group (closes: #167669). | ||
1716 | |||
1717 | -- Colin Watson <cjwatson@debian.org> Mon, 4 Nov 2002 13:43:53 +0000 | ||
1718 | |||
1719 | openssh (1:3.5p1-1) unstable; urgency=low | ||
1720 | |||
1721 | * New upstream release. | ||
1722 | - Fixes typo in ssh-add usage (closes: #152239). | ||
1723 | - Fixes 'PermitRootLogin forced-commands-only' (closes: #166184). | ||
1724 | - ~/.ssh/environment and environment= options in ~/.ssh/authorized_keys | ||
1725 | are deprecated for security reasons and will eventually go away. For | ||
1726 | now they can be re-enabled by setting 'PermitUserEnvironment yes' in | ||
1727 | sshd_config. | ||
1728 | - ssh-agent is installed setgid to prevent ptrace() attacks. The group | ||
1729 | actually doesn't matter, as it drops privileges immediately, but to | ||
1730 | avoid confusion the postinst creates a new 'ssh' group for it. | ||
1731 | * Obsolete patches: | ||
1732 | - Solar Designer's privsep+compression patch for Linux 2.2 (see | ||
1733 | 1:3.3p1-0.0woody1). | ||
1734 | - Hostbased auth ssh-keysign backport (see 1:3.4p1-4). | ||
1735 | |||
1736 | * Remove duplicated phrase in ssh_config(5) (closes: #152404). | ||
1737 | * Source the debconf confmodule at the top of the postrm rather than at | ||
1738 | the bottom, to avoid making future non-idempotency problems worse (see | ||
1739 | #151035). | ||
1740 | * Debconf templates: | ||
1741 | - Add Polish (thanks, Grzegorz Kusnierz). | ||
1742 | - Update French (thanks, Denis Barbier; closes: #132509). | ||
1743 | - Update Spanish (thanks, Carlos Valdivia Yagüe; closes: #164716). | ||
1744 | * Write a man page for gnome-ssh-askpass, and link it to ssh-askpass.1 if | ||
1745 | this is the selected ssh-askpass alternative (closes: #67775). | ||
1746 | |||
1747 | -- Colin Watson <cjwatson@debian.org> Sat, 26 Oct 2002 19:41:51 +0100 | ||
1748 | |||
1749 | openssh (1:3.4p1-4) unstable; urgency=low | ||
1750 | |||
1751 | * Allow ssh-krb5 in ssh-askpass-gnome's dependencies (closes: #129532). | ||
1752 | * Restore Russia to list of countries where encryption is problematic (see | ||
1753 | #148951 and http://www.average.org/freecrypto/). | ||
1754 | * Drop ssh-askpass-gnome's priority to optional, per the override file. | ||
1755 | * Drop the PAM special case for hurd-i386 (closes: #99157). | ||
1756 | * s/dile/idle/ in ssh_config(5) (closes: #118331). | ||
1757 | * Note in README.Debian that you need xauth from xbase-clients on the | ||
1758 | server for X11 forwarding (closes: #140269). | ||
1759 | * Use correct path to upstream README in copyright file (closes: #146037). | ||
1760 | * Document the units for ProtocolKeepAlives (closes: #159479). | ||
1761 | * Backport upstream patch to fix hostbased auth (closes: #117114). | ||
1762 | * Add -g to CFLAGS. | ||
1763 | |||
1764 | -- Colin Watson <cjwatson@debian.org> Sun, 13 Oct 2002 18:58:53 +0100 | ||
1765 | |||
1766 | openssh (1:3.4p1-3) unstable; urgency=low | ||
1767 | |||
1768 | * Add myself to Uploaders: and begin acting as temporary maintainer, at | ||
1769 | Matthew's request. (Normal service will resume in some months' time.) | ||
1770 | * Add sharutils to Build-Depends (closes: #138465). | ||
1771 | * Stop creating the /usr/doc/ssh symlink. | ||
1772 | |||
1773 | * Fix some debconf template typos (closes: #160358). | ||
1774 | * Split debconf templates into one file per language. | ||
1775 | * Add debconf template translations: | ||
1776 | - Brazilian Portuguese (thanks, Andre Luis Lopes; closes: #106173). | ||
1777 | - Danish (thanks, Claus Hindsgaul; closes: #126607). | ||
1778 | - Japanese (thanks, Tomohiro KUBOTA; closes: #137427). | ||
1779 | - Russian (thanks, Ilgiz Kalmetev; closes: #136610). | ||
1780 | - Spanish (thanks, Carlos Valdivia Yagüe; closes: #129041). | ||
1781 | * Update debconf template translations: | ||
1782 | - French (thanks, Igor Genibel; closes: #151361). | ||
1783 | - German (thanks, Axel Noetzold; closes: #147069). | ||
1784 | * Some of these translations are fuzzy. Please send updates. | ||
1785 | |||
1786 | -- Colin Watson <cjwatson@debian.org> Sun, 13 Oct 2002 14:09:57 +0100 | ||
1787 | |||
1788 | openssh (1:3.4p1-2) unstable; urgency=high | ||
1789 | |||
1790 | * Get a security-fixed version into unstable | ||
1791 | * Also tidy README.Debian up a little | ||
1792 | |||
1793 | -- Matthew Vernon <matthew@debian.org> Fri, 28 Jun 2002 17:20:59 +0100 | ||
1794 | |||
1795 | openssh (1:3.4p1-1) testing; urgency=high | ||
1796 | |||
1797 | * Extend my tendrils back into this package (Closes: #150915, #151098) | ||
1798 | * thanks to the security team for their work | ||
1799 | * no thanks to ISS/Theo de Raadt for their handling of these bugs | ||
1800 | * save old sshd_configs to sshd_config.dpkg-old when auto-generating a | ||
1801 | new one | ||
1802 | * tell/ask the user about PriviledgeSeparation | ||
1803 | * /etc/init.d/ssh run will now create the chroot empty dir if necessary | ||
1804 | * Remove our previous statoverride on /usr/bin/ssh (only for people | ||
1805 | upgrading from a version where we'd put one in ourselves!) | ||
1806 | * Stop slandering Russia, since someone asked so nicely (Closes: #148951) | ||
1807 | * Reduce the sleep time in /etc/init.d/ssh during a restart | ||
1808 | |||
1809 | -- Matthew Vernon <matthew@debian.org> Fri, 28 Jun 2002 15:52:10 +0100 | ||
1810 | |||
1811 | openssh (1:3.4p1-0.0woody1) testing-security; urgency=high | ||
1812 | |||
1813 | * NMU by the security team. | ||
1814 | * New upstream version | ||
1815 | |||
1816 | -- Michael Stone <mstone@debian.org> Wed, 26 Jun 2002 15:40:38 -0400 | ||
1817 | |||
1818 | openssh (1:3.3p1-0.0woody4) testing-security; urgency=high | ||
1819 | |||
1820 | * NMU by the security team. | ||
1821 | * fix error when /etc/ssh/sshd_config exists on new install | ||
1822 | * check that user doesn't exist before running adduser | ||
1823 | * use openssl internal random unconditionally | ||
1824 | |||
1825 | -- Michael Stone <mstone@debian.org> Tue, 25 Jun 2002 19:44:39 -0400 | ||
1826 | |||
1827 | openssh (1:3.3p1-0.0woody3) testing-security; urgency=high | ||
1828 | |||
1829 | * NMU by the security team. | ||
1830 | * use correct home directory when sshd user is created | ||
1831 | |||
1832 | -- Michael Stone <mstone@debian.org> Tue, 25 Jun 2002 08:59:50 -0400 | ||
1833 | |||
1834 | openssh (1:3.3p1-0.0woody2) testing-security; urgency=high | ||
1835 | |||
1836 | * NMU by the security team. | ||
1837 | * Fix rsa1 key creation (Closes: #150949) | ||
1838 | * don't fail if sshd user removal fails | ||
1839 | * depends: on adduser (Closes: #150907) | ||
1840 | |||
1841 | -- Michael Stone <mstone@debian.org> Tue, 25 Jun 2002 08:59:50 -0400 | ||
1842 | |||
1843 | openssh (1:3.3p1-0.0woody1) testing-security; urgency=high | ||
1844 | |||
1845 | * NMU by the security team. | ||
1846 | * New upstream version. | ||
1847 | - Enable privilege separation by default. | ||
1848 | * Include patch from Solar Designer for privilege separation and | ||
1849 | compression on 2.2.x kernels. | ||
1850 | * Remove --disable-suid-ssh from configure. | ||
1851 | * Support setuid ssh-keysign binary instead of setuid ssh client. | ||
1852 | * Check sshd configuration before restarting. | ||
1853 | |||
1854 | -- Daniel Jacobowitz <dan@debian.org> Mon, 24 Jun 2002 13:43:44 -0400 | ||
1855 | |||
1856 | openssh (1:3.0.2p1-9) unstable; urgency=high | ||
1857 | |||
1858 | * Thanks to those who NMUd | ||
1859 | * The only change in this version is to debian/control - I've removed | ||
1860 | the bit that says you can't export it from the US - it would look | ||
1861 | pretty daft to say this about a package in main! Also, it's now OK | ||
1862 | to use crypto in France, so I've edited that comment slightly | ||
1863 | * Correct a path in README.Debian too (Closes: #138634) | ||
1864 | |||
1865 | -- Matthew Vernon <matthew@debian.org> Sun, 4 Apr 2002 09:52:59 +0100 | ||
1866 | |||
1867 | openssh (1:3.0.2p1-8.3) unstable; urgency=medium | ||
1868 | |||
1869 | * NMU | ||
1870 | * Really set urgency to medium this time (oops) | ||
1871 | * Fix priority to standard per override while I'm at it | ||
1872 | |||
1873 | -- Aaron M. Ucko <ucko@debian.org> Sun, 24 Mar 2002 09:00:08 -0500 | ||
1874 | |||
1875 | openssh (1:3.0.2p1-8.2) unstable; urgency=low | ||
1876 | |||
1877 | * NMU with maintainer's permission | ||
1878 | * Prepare for upcoming ssh-nonfree transitional packages per | ||
1879 | <http://lists.debian.org/debian-ssh/2002/debian-ssh-200203/msg00008.html> | ||
1880 | * Urgency medium because it would really be good to get this into woody | ||
1881 | before it releases | ||
1882 | * Fix sections to match override file | ||
1883 | * Reissued due to clash with non-US -> main move | ||
1884 | |||
1885 | -- Aaron M. Ucko <ucko@debian.org> Sat, 23 Mar 2002 21:21:52 -0500 | ||
1886 | |||
1887 | openssh (1:3.0.2p1-8.1) unstable; urgency=low | ||
1888 | |||
1889 | * NMU | ||
1890 | * Move from non-US to mani | ||
1891 | |||
1892 | -- LaMont Jones <lamont@debian.org> Thu, 21 Mar 2002 09:33:50 -0700 | ||
1893 | |||
1894 | openssh (1:3.0.2p1-8) unstable; urgency=critical | ||
1895 | |||
1896 | * Security fix - patch from upstream (Closes: #137209, #137210) | ||
1897 | * Undo the changes in the unreleased -7, since they appear to break | ||
1898 | things here. Accordingly, the code change is minimal, and I'm | ||
1899 | happy to get it into testing ASAP | ||
1900 | |||
1901 | -- Matthew Vernon <matthew@debian.org> Thu, 7 Mar 2002 14:25:23 +0000 | ||
1902 | |||
1903 | openssh (1:3.0.2p1-7) unstable; urgency=high | ||
1904 | |||
1905 | * Build to support IPv6 and IPv4 by default again | ||
1906 | |||
1907 | -- Matthew Vernon <matthew@debian.org> Sat, 2 Mar 2002 00:25:05 +0000 | ||
1908 | |||
1909 | openssh (1:3.0.2p1-6) unstable; urgency=high | ||
1910 | |||
1911 | * Correct error in the clean target (Closes: #130868) | ||
1912 | |||
1913 | -- Matthew Vernon <matthew@debian.org> Sat, 26 Jan 2002 00:32:00 +0000 | ||
1914 | |||
1915 | openssh (1:3.0.2p1-5) unstable; urgency=medium | ||
1916 | |||
1917 | * Include the Debian version in our identification, to make it easier to | ||
1918 | audit networks for patched versions in future | ||
1919 | |||
1920 | -- Matthew Vernon <matthew@debian.org> Mon, 21 Jan 2002 17:16:10 +0000 | ||
1921 | |||
1922 | openssh (1:3.0.2p1-4) unstable; urgency=medium | ||
1923 | |||
1924 | * If we're asked to not run sshd, stop any running sshd's first | ||
1925 | (Closes: #129327) | ||
1926 | |||
1927 | -- Matthew Vernon <matthew@debian.org> Wed, 16 Jan 2002 21:24:16 +0000 | ||
1928 | |||
1929 | openssh (1:3.0.2p1-3) unstable; urgency=high | ||
1930 | |||
1931 | * Fix /etc/pam.d/ssh to not set $MAIL (Closes: #128913) | ||
1932 | * Remove extra debconf suggestion (Closes: #128094) | ||
1933 | * Mmm. speedy bug-fixing :-) | ||
1934 | |||
1935 | -- Matthew Vernon <matthew@debian.org> Sat, 12 Jan 2002 17:23:58 +0000 | ||
1936 | |||
1937 | openssh (1:3.0.2p1-2) unstable; urgency=high | ||
1938 | |||
1939 | * Fix postinst to not automatically overwrite sshd_config (!) | ||
1940 | (Closes: #127842, #127867) | ||
1941 | * Add section in README.Debian about the PermitRootLogin setting | ||
1942 | |||
1943 | -- Matthew Vernon <matthew@debian.org> Sat, 5 Jan 2003 05:26:30 +0000 | ||
1944 | |||
1945 | openssh (1:3.0.2p1-1) unstable; urgency=high | ||
1946 | |||
1947 | * Incorporate fix from Colin's NMU | ||
1948 | * New upstream version (fixes the bug Wichert fixed) (Closes: #124035) | ||
1949 | * Capitalise IETF (Closes: #125379) | ||
1950 | * Refer to the correct sftp-server location (Closes: #126854, #126224) | ||
1951 | * Do what we're asked re SetUID ssh (Closes: #124065, #124154, #123247) | ||
1952 | * Ask people upgrading from potato if they want a new conffile | ||
1953 | (Closes: #125642) | ||
1954 | * Fix a typo in postinst (Closes: #122192, #122410, #123440) | ||
1955 | * Frob the default config a little (Closes: #122284, #125827, #125696, | ||
1956 | #123854) | ||
1957 | * Make /etc/init.d/ssh be more clear about ssh not running (Closes: | ||
1958 | #123552) | ||
1959 | * Fix typo in templates file (Closes: #123411) | ||
1960 | |||
1961 | -- Matthew Vernon <matthew@debian.org> Fri, 4 Jan 2002 16:01:52 +0000 | ||
1962 | |||
1963 | openssh (1:3.0.1p1-1.2) unstable; urgency=high | ||
1964 | |||
1965 | * Non-maintainer upload | ||
1966 | * Prevent local users from passing environment variables to the login | ||
1967 | process when UseLogin is enabled | ||
1968 | |||
1969 | -- Wichert Akkerman <wakkerma@debian.org> Mon, 3 Dec 2001 19:34:45 +0100 | ||
1970 | |||
1971 | openssh (1:3.0.1p1-1.1) unstable; urgency=low | ||
1972 | |||
1973 | * Non-maintainer upload, at Matthew's request. | ||
1974 | * Remove sa_restorer assignment to fix compilation on alpha, hppa, and | ||
1975 | ia64 (closes: #122086). | ||
1976 | |||
1977 | -- Colin Watson <cjwatson@debian.org> Sun, 2 Dec 2001 18:54:16 +0000 | ||
1978 | |||
1979 | openssh (1:3.0.1p1-1) unstable; urgency=high | ||
1980 | |||
1981 | * New upstream version (Closes: #113646, #113513, #114707, #118564) | ||
1982 | * Building with a libc that works (!) (Closes: #115228) | ||
1983 | * Patches forward-ported are -1/-2 options for scp, the improvement to | ||
1984 | 'waiting for forwarded connections to terminate...' | ||
1985 | * Fix /etc/init.d/ssh to stop sshd properly (Closes: #115228) | ||
1986 | * /etc/ssh/sshd_config is no longer a conffile but generated in the postinst | ||
1987 | * Remove suidregister leftover from postrm | ||
1988 | * Mention key we are making in the postinst | ||
1989 | * Default to not enable SSH protocol 1 support, since protocol 2 is | ||
1990 | much safer anyway. | ||
1991 | * New version of the vpn-fixes patch, from Ian Jackson | ||
1992 | * New handling of -q, and added new -qq option; thanks to Jon Amery | ||
1993 | * Experimental smartcard support not enabled, since I have no way of | ||
1994 | testing it. | ||
1995 | |||
1996 | -- Matthew Vernon <matthew@debian.org> Thu, 28 Nov 2001 17:43:01 +0000 | ||
1997 | |||
1998 | openssh (1:2.9p2-6) unstable; urgency=low | ||
1999 | |||
2000 | * check for correct file in /etc/init.d/ssh (Closes: #110876) | ||
2001 | * correct location of version 2 keys in ssh.1 (Closes: #110439) | ||
2002 | * call update-alternatives --quiet (Closes: #103314) | ||
2003 | * hack ssh-copy-id to chmod go-w (Closes: #95551) | ||
2004 | * TEMPORARY fix to provide largefile support using a -D in the cflags | ||
2005 | line. long-term, upstream will patch the autoconf stuff | ||
2006 | (Closes: #106809, #111849) | ||
2007 | * remove /etc/rc references in ssh-keygen.1 (Closes: #68350) | ||
2008 | * scp.1 patch from Adam McKenna to document -r properly (Closes: #76054) | ||
2009 | * Check for files containing a newline character (Closes: #111692) | ||
2010 | |||
2011 | -- Matthew Vernon <matthew@debian.org> Thu, 13 Sep 2001 16:47:36 +0100 | ||
2012 | |||
2013 | openssh (1:2.9p2-5) unstable; urgency=high | ||
2014 | |||
2015 | * Thanks to all the bug-fixers who helped! | ||
2016 | * remove sa_restorer assignment (Closes: #102837) | ||
2017 | * patch from Peter Benie to DTRT wrt X forwarding if the server refuses | ||
2018 | us access (Closes: #48297) | ||
2019 | * patch from upstream CVS to fix port forwarding (Closes: #107132) | ||
2020 | * patch from Jonathan Amery to document ssh-keygen behaviour | ||
2021 | (Closes:#106643, #107512) | ||
2022 | * patch to postinst from Jonathan Amery (Closes: #106411) | ||
2023 | * patch to manpage from Jonathan Amery (Closes: #107364) | ||
2024 | * patch from Matthew Vernon to make -q emit fatal errors as that is the | ||
2025 | documented behaviour (Closes: #64347) | ||
2026 | * patch from Ian Jackson to cause us to destroy a file when we scp it | ||
2027 | onto itself, rather than dumping bits of our memory into it, which was | ||
2028 | a security hole (see #51955) | ||
2029 | * patch from Jonathan Amery to document lack of Kerberos support | ||
2030 | (Closes: #103726) | ||
2031 | * patch from Matthew Vernon to make the 'waiting for connections to | ||
2032 | terminate' message more helpful (Closes: #50308) | ||
2033 | |||
2034 | -- Matthew Vernon <matthew@debian.org> Thu, 23 Aug 2001 02:14:09 +0100 | ||
2035 | |||
2036 | openssh (1:2.9p2-4) unstable; urgency=high | ||
2037 | |||
2038 | * Today's build of ssh is strawberry flavoured | ||
2039 | * Patch from mhp to reduce length of time sshd is stopped for (Closes: #106176) | ||
2040 | * Tidy up debconf template (Closes: #106152) | ||
2041 | * If called non-setuid, then setgid()'s failure should not be fatal (see | ||
2042 | #105854) | ||
2043 | |||
2044 | -- Matthew Vernon <matthew@debian.org> Sun, 22 Jul 2001 14:19:43 +0100 | ||
2045 | |||
2046 | openssh (1:2.9p2-3) unstable; urgency=low | ||
2047 | |||
2048 | * Patch from yours truly to add -1 and -2 options to scp (Closes: #106061) | ||
2049 | * Improve the IdentityFile section in the man page (Closes: #106038) | ||
2050 | |||
2051 | -- Matthew Vernon <matthew@debian.org> Sat, 21 Jul 2001 14:47:27 +0100 | ||
2052 | |||
2053 | openssh (1:2.9p2-2) unstable; urgency=low | ||
2054 | |||
2055 | * Document the protocol version 2 and IPV6 changes (Closes: #105845, #105868) | ||
2056 | * Make PrintLastLog 'no' by default (Closes: #105893) | ||
2057 | |||
2058 | -- Matthew Vernon <matthew@debian.org> Thu, 19 Jul 2001 18:36:41 +0100 | ||
2059 | |||
2060 | openssh (1:2.9p2-1) unstable; urgency=low | ||
2061 | |||
2062 | * new (several..) upstream version (Closes: #96726, #81856, #96335) | ||
2063 | * Hopefully, this will close some other bugs too | ||
2064 | |||
2065 | -- Matthew Vernon <matthew@debian.org> Tue, 17 Jul 2001 19:41:58 +0100 | ||
2066 | |||
2067 | openssh (1:2.5.2p2-3) unstable; urgency=low | ||
2068 | |||
2069 | * Taking Over this package | ||
2070 | * Patches from Robert Bihlmeyer for the Hurd (Closes: #102991) | ||
2071 | * Put PermitRootLogin back to yes (Closes: #67334, #67371, #78274) | ||
2072 | * Don't fiddle with conf-files any more (Closes: #69501) | ||
2073 | |||
2074 | -- Matthew Vernon <matthew@debian.org> Tue, 03 Jul 2001 02:58:13 +0100 | ||
2075 | |||
2076 | openssh (1:2.5.2p2-2.2) unstable; urgency=low | ||
2077 | |||
2078 | * NMU | ||
2079 | * Include Hurd compatibility patches from Robert Bihlmeyer (Closes: #76033) | ||
2080 | * Patch from Richard Kettlewell for protocolkeepalives (Closes: #99273) | ||
2081 | * Patch from Matthew Vernon for BannerTimeOut, batchmode, and | ||
2082 | documentation for protocolkeepalives. Makes ssh more generally useful | ||
2083 | for scripting uses (Closes: #82877, #99275) | ||
2084 | * Set a umask, so ourpidfile isn't world-writable (closes: #100012, | ||
2085 | #98286, #97391) | ||
2086 | |||
2087 | -- Matthew Vernon <matthew@debian.org> Thu, 28 Jun 2001 23:15:42 +0100 | ||
2088 | |||
2089 | openssh (1:2.5.2p2-2.1) unstable; urgency=low | ||
2090 | |||
2091 | * NMU | ||
2092 | * Remove duplicate Build-Depends for libssl096-dev and change it to | ||
2093 | depend on libssl-dev instaed. Also adding in virtual | real package | ||
2094 | style build-deps. (Closes: #93793, #75228) | ||
2095 | * Removing add-log entry (Closes: #79266) | ||
2096 | * This was a pam bug from a while back (Closes: #86908, #88457, #86843) | ||
2097 | * pam build-dep already exists (Closes: #93683) | ||
2098 | * libgnome-dev build-dep already exists (Closes: #93694) | ||
2099 | * No longer in non-free (Closes: #85401) | ||
2100 | * Adding in fr debconf translations (Closes: #83783) | ||
2101 | * Already suggests xbase-clients (Closes: #79741) | ||
2102 | * No need to suggest libpam-pwdb anymore (Closes: #81658) | ||
2103 | * Providing rsh-client (Closes: #79437) | ||
2104 | * hurd patch was already applied (Closes: #76033) | ||
2105 | * default set to no (Closes: #73682) | ||
2106 | * Adding in a suggests for dnsutils (Closes: #93265) | ||
2107 | * postinst bugs fixed (Closes: #88057, #88066, #88196, #88405, #88612) | ||
2108 | (Closes: #88774, #88196, #89556, #90123, #90228, #90833, #87814, #85465) | ||
2109 | * Adding in debconf dependency | ||
2110 | |||
2111 | -- Ivan E. Moore II <rkrusty@debian.org> Mon, 16 Apr 2001 14:11:04 +0100 | ||
2112 | |||
2113 | openssh (1:2.5.2p2-2) unstable; urgency=high | ||
2114 | |||
2115 | * disable the OpenSSL version check in entropy.c | ||
2116 | (closes: #93581, #93588, #93590, #93614, #93619, #93635, #93648) | ||
2117 | |||
2118 | -- Philip Hands <phil@uk.alcove.com> Wed, 11 Apr 2001 20:30:04 +0100 | ||
2119 | |||
2120 | openssh (1:2.5.2p2-1) unstable; urgency=low | ||
2121 | |||
2122 | * New upstream release | ||
2123 | * removed make-ssh-known-hosts, since ssh-keyscan does that job (closes: #86069, #87748) | ||
2124 | * fix double space indent in german templates (closes: #89493) | ||
2125 | * make postinst check for ssh_host_rsa_key | ||
2126 | * get rid of the last of the misguided debian/rules NMU debris :-/ | ||
2127 | |||
2128 | -- Philip Hands <phil@hands.com> Sat, 24 Mar 2001 20:59:33 +0000 | ||
2129 | |||
2130 | openssh (1:2.5.1p2-2) unstable; urgency=low | ||
2131 | |||
2132 | * rebuild with new debhelper (closes: #89558, #89536, #90225) | ||
2133 | * fix broken dpkg-statoverride test in postinst | ||
2134 | (closes: #89612, #90474, #90460, #89605) | ||
2135 | * NMU bug fixed but not closed in last upload (closes: #88206) | ||
2136 | |||
2137 | -- Philip Hands <phil@hands.com> Fri, 23 Mar 2001 16:11:33 +0000 | ||
2138 | |||
2139 | openssh (1:2.5.1p2-1) unstable; urgency=high | ||
2140 | |||
2141 | * New upstream release | ||
2142 | * fix typo in postinst (closes: #88110) | ||
2143 | * revert to setting PAM service name in debian/rules, backing out last | ||
2144 | NMU, which also (closes: #88101) | ||
2145 | * restore the pam lastlog/motd lines, lost during the NMUs, and sshd_config | ||
2146 | * restore printlastlog option patch | ||
2147 | * revert to using debhelper, which had been partially disabled in NMUs | ||
2148 | |||
2149 | -- Philip Hands <phil@hands.com> Tue, 13 Mar 2001 01:41:34 +0000 | ||
2150 | |||
2151 | openssh (1:2.5.1p1-1.8) unstable; urgency=high | ||
2152 | |||
2153 | * And now the old pam-bug s/sshd/ssh in ssh.c is also fixed | ||
2154 | |||
2155 | -- Christian Kurz <shorty@debian.org> Thu, 1 Mar 2001 19:48:01 +0100 | ||
2156 | |||
2157 | openssh (1:2.5.1p1-1.7) unstable; urgency=high | ||
2158 | |||
2159 | * And now we mark the correct binary as setuid, when a user requested | ||
2160 | to install it setuid. | ||
2161 | |||
2162 | -- Christian Kurz <shorty@debian.org> Thu, 1 Mar 2001 07:19:56 +0100 | ||
2163 | |||
2164 | openssh (1:2.5.1p1-1.6) unstable; urgency=high | ||
2165 | |||
2166 | * Fixes postinst to handle overrides that are already there. Damn, I | ||
2167 | should have noticed the bug earlier. | ||
2168 | |||
2169 | -- Christian Kurz <shorty@debian.org> Wed, 28 Feb 2001 22:35:00 +0100 | ||
2170 | |||
2171 | openssh (1:2.5.1p1-1.5) unstable; urgency=high | ||
2172 | |||
2173 | * Rebuild ssh with pam-support. | ||
2174 | |||
2175 | -- Christian Kurz <shorty@debian.org> Mon, 26 Feb 2001 21:55:51 +0100 | ||
2176 | |||
2177 | openssh (1:2.5.1p1-1.4) unstable; urgency=low | ||
2178 | |||
2179 | * Added Build-Depends on libssl096-dev. | ||
2180 | * Fixed sshd_config file to disallow root logins again. | ||
2181 | |||
2182 | -- Christian Kurz <shorty@debian.org> Sun, 25 Feb 2001 20:03:55 +0100 | ||
2183 | |||
2184 | openssh (1:2.5.1p1-1.3) unstable; urgency=low | ||
2185 | |||
2186 | * Fixed missing manpages for sftp.1 and ssh-keyscan.1 | ||
2187 | * Made package policy 3.5.2 compliant. | ||
2188 | |||
2189 | -- Christian Kurz <shorty@debian.org> Sun, 25 Feb 2001 15:46:26 +0100 | ||
2190 | |||
2191 | openssh (1:2.5.1p1-1.2) unstable; urgency=low | ||
2192 | |||
2193 | * Added Conflict with sftp, since we now provide our own sftp-client. | ||
2194 | * Added a fix for our broken dpkg-statoverride call in the | ||
2195 | 2.3.0p1-13. | ||
2196 | * Fixed some config pathes in the comments of sshd_config. | ||
2197 | * Removed ssh-key-exchange-vulnerability-patch since it's not needed | ||
2198 | anymore because upstream included the fix. | ||
2199 | |||
2200 | -- Christian Kurz <shorty@debian.org> Sun, 25 Feb 2001 13:46:58 +0100 | ||
2201 | |||
2202 | openssh (1:2.5.1p1-1.1) unstable; urgency=high | ||
2203 | |||
2204 | * Another NMU to get the new upstream version 2.5.1p1 into | ||
2205 | unstable. (Closes: #87123) | ||
2206 | * Corrected postinst to mark ssh as setuid. (Closes: #86391, #85766) | ||
2207 | * Key Exchange patch is already included by upstream. (Closes: #86015) | ||
2208 | * Upgrading should be possible now. (Closes: #85525, #85523) | ||
2209 | * Added --disable-suid-ssh as compile option, so ssh won't get installed | ||
2210 | suid per default. | ||
2211 | * Fixed postinst to run dpkg-statoverride only, when dpkg-statoverride | ||
2212 | is available and the mode of the binary should be 4755. And also added | ||
2213 | suggestion for a newer dpkg. | ||
2214 | (Closes: #85734, #85741, #86876) | ||
2215 | * sftp and ssh-keyscan will also be included from now on. (Closes: #79994) | ||
2216 | * scp now understands spaces in filenames (Closes: #53783, #58958, | ||
2217 | #66723) | ||
2218 | * ssh-keygen now supports showing DSA fingerprints. (Closes: #68623) | ||
2219 | * ssh doesn' t show motd anymore when switch -t is used. (Closes #69035) | ||
2220 | * ssh supports the usage of other dsa keys via the ssh command line | ||
2221 | options. (Closes: #81250) | ||
2222 | * Documentation in sshd_config fixed. (Closes: #81088) | ||
2223 | * primes file included by upstream and included now. (Closes: #82101) | ||
2224 | * scp now allows dots in the username. (Closes: #82477) | ||
2225 | * Spelling error in ssh-copy-id.1 corrected by upstream. (Closes: #78124) | ||
2226 | |||
2227 | -- Christian Kurz <shorty@debian.org> Sun, 25 Feb 2001 10:06:08 +0100 | ||
2228 | |||
2229 | openssh (1:2.3.0p1-1.13) unstable; urgency=low | ||
2230 | |||
2231 | * Config should now also be fixed with this hopefully last NMU. | ||
2232 | |||
2233 | -- Christian Kurz <shorty@debian.org> Sat, 10 Feb 2001 22:56:36 +0100 | ||
2234 | |||
2235 | openssh (1:2.3.0p1-1.12) unstable; urgency=high | ||
2236 | |||
2237 | * Added suggest for xbase-clients to control-file. (Closes #85227) | ||
2238 | * Applied patch from Markus Friedl to fix a vulnerability in | ||
2239 | the rsa keyexchange. | ||
2240 | * Fixed position of horizontal line. (Closes: #83613) | ||
2241 | * Fixed hopefully the grep problem in the config-file. (Closes: #78802) | ||
2242 | * Converted package from suidregister to dpkg-statoverride. | ||
2243 | |||
2244 | -- Christian Kurz <shorty@debian.org> Fri, 9 Feb 2001 19:43:55 +0100 | ||
2245 | |||
2246 | openssh (1:2.3.0p1-1.11) unstable; urgency=medium | ||
2247 | |||
2248 | * Fixed some typos in the german translation of the debconf | ||
2249 | template. | ||
2250 | |||
2251 | -- Christian Kurz <shorty@debian.org> Wed, 24 Jan 2001 18:22:38 +0100 | ||
2252 | |||
2253 | openssh (1:2.3.0p1-1.10) unstable; urgency=medium | ||
2254 | |||
2255 | * Fixed double printing of motd. (Closes: #82618) | ||
2256 | |||
2257 | -- Christian Kurz <shorty@debian.org> Tue, 23 Jan 2001 21:03:43 +0100 | ||
2258 | |||
2259 | openssh (1:2.3.0p1-1.9) unstable; urgency=high | ||
2260 | |||
2261 | * And the next NMU which includes the patch from Andrew Bartlett | ||
2262 | and Markus Friedl to fix the root privileges handling of openssh. | ||
2263 | (Closes: #82657) | ||
2264 | |||
2265 | -- Christian Kurz <shorty@debian.org> Wed, 17 Jan 2001 22:20:54 +0100 | ||
2266 | |||
2267 | openssh (1:2.3.0p1-1.8) unstable; urgency=high | ||
2268 | |||
2269 | * Applied fix from Ryan Murray to allow building on other architectures | ||
2270 | since the hurd patch was wrong. (Closes: #82471) | ||
2271 | |||
2272 | -- Christian Kurz <shorty@debian.org> Tue, 16 Jan 2001 22:45:51 +0100 | ||
2273 | |||
2274 | openssh (1:2.3.0p1-1.7) unstable; urgency=medium | ||
2275 | |||
2276 | * Fixed another typo on sshd_config | ||
2277 | |||
2278 | -- Christian Kurz <shorty@debian.org> Sun, 14 Jan 2001 19:01:31 +0100 | ||
2279 | |||
2280 | openssh (1:2.3.0p1-1.6) unstable; urgency=high | ||
2281 | |||
2282 | * Added Build-Dependency on groff (Closes: #81886) | ||
2283 | * Added Build-Depencency on debhelper (Closes: #82072) | ||
2284 | * Fixed entry for known_hosts in sshd_config (Closes: #82096) | ||
2285 | |||
2286 | -- Christian Kurz <shorty@debian.org> Thu, 11 Jan 2001 23:08:16 +0100 | ||
2287 | |||
2288 | openssh (1:2.3.0p1-1.5) unstable; urgency=high | ||
2289 | |||
2290 | * Fixed now also the problem with sshd used as default ipv4 and | ||
2291 | didn't use IPv6. This should be now fixed. | ||
2292 | |||
2293 | -- Christian Kurz <shorty@debian.org> Thu, 11 Jan 2001 21:25:55 +0100 | ||
2294 | |||
2295 | openssh (1:2.3.0p1-1.4) unstable; urgency=high | ||
2296 | |||
2297 | * Fixed buggy entry in postinst. | ||
2298 | |||
2299 | -- Christian Kurz <shorty@debian.org> Wed, 10 Jan 2001 23:12:16 +0100 | ||
2300 | |||
2301 | openssh (1:2.3.0p1-1.3) unstable; urgency=high | ||
2302 | |||
2303 | * After finishing the rewrite of the rules-file I had to notice that | ||
2304 | the manpage installation was broken. This should now work again. | ||
2305 | |||
2306 | -- Christian Kurz <shorty@debian.org> Wed, 10 Jan 2001 22:11:59 +0100 | ||
2307 | |||
2308 | openssh (1:2.3.0p1-1.2) unstable; urgency=high | ||
2309 | |||
2310 | * Fixed the screwed up build-dependency. | ||
2311 | * Removed --with-ipv4-default to support ipv6. | ||
2312 | * Changed makefile to use /etc/pam.d/ssh instead of /etc/pam.d/sshd. | ||
2313 | * Fixed location to sftp-server in config. | ||
2314 | * Since debian still relies on /etc/pam.d/ssh instead of moving to | ||
2315 | /etc/pam.d/sshd, I had to hack ssh.h to get ssh to use this name. | ||
2316 | * Fixed path to host key in sshd_config. | ||
2317 | |||
2318 | -- Christian Kurz <shorty@debian.org> Wed, 10 Jan 2001 08:23:47 +0100 | ||
2319 | |||
2320 | openssh (1:2.3.0p1-1.1) unstable; urgency=medium | ||
2321 | |||
2322 | * NMU with permission of Phil Hands. | ||
2323 | * New upstream release | ||
2324 | * Update Build-Depends to point to new libssl096. | ||
2325 | * This upstream release doesn't leak any information depending | ||
2326 | on the setting of PermitRootLogin (Closes: #59933) | ||
2327 | * New upstream release contains fix against forcing a client to | ||
2328 | do X/agent forwarding (Closes: #76788) | ||
2329 | * Changed template to contain correct path to the documentation | ||
2330 | (Closes: #67245) | ||
2331 | * Added --with-4in6 switch as compile option into debian/rules. | ||
2332 | * Added --with-ipv4-default as compile option into debian/rules. | ||
2333 | (Closes: #75037) | ||
2334 | * Changed default path to also contain /usr/local/bin and | ||
2335 | /usr/X11R6/bin (Closes: #62472,#54567,#62810) | ||
2336 | * Changed path to sftp-server in sshd_config to match the | ||
2337 | our package (Closes: #68347) | ||
2338 | * Replaced OpenBSDh with OpenBSD in the init-script. | ||
2339 | * Changed location to original source in copyright.head | ||
2340 | * Changed behaviour of init-script when invoked with the option | ||
2341 | restart (Closes: #68706,#72560) | ||
2342 | * Added a note about -L option of scp to README.Debian | ||
2343 | * ssh won't print now the motd if invoked with -t option | ||
2344 | (Closes: #59933) | ||
2345 | * RFC.nroff.gz get's now converted into RFC.gz. (Closes: #63867) | ||
2346 | * Added a note about tcp-wrapper support to README.Debian | ||
2347 | (Closes: #72807,#22190) | ||
2348 | * Removed two unneeded options from building process. | ||
2349 | * Added sshd.pam into debian dir and install it. | ||
2350 | * Commented out unnecessary call to dh_installinfo. | ||
2351 | * Added a line to sshd.pam so that limits will be paid attention | ||
2352 | to (Closes: #66904) | ||
2353 | * Restart Option has a Timeout of 10 seconds (Closes: 51264) | ||
2354 | * scp won't override files anymore (Closes: 51955) | ||
2355 | * Removed pam_lastlog module, so that the lastlog is now printed | ||
2356 | only once (Closes: #71742, #68335, #69592, #71495, #77781) | ||
2357 | * If password is expired, openssh now forces the user to change it. | ||
2358 | (Closes: #51747) | ||
2359 | * scp should now have no more problems with shell-init-files that | ||
2360 | produces ouput (Closes: #56280,#59873) | ||
2361 | * ssh now prints the motd correctly (Closes: #66926) | ||
2362 | * ssh upgrade should disable ssh daemon only if users has choosen | ||
2363 | to do so (Closes: #67478) | ||
2364 | * ssh can now be installed suid (Closes: #70879) | ||
2365 | * Modified debian/rules to support hurd. | ||
2366 | |||
2367 | -- Christian Kurz <shorty@debian.org> Wed, 27 Dec 2000 20:06:57 +0100 | ||
2368 | |||
2369 | openssh (1:2.2.0p1-1.1) unstable; urgency=medium | ||
2370 | |||
2371 | * Non-Maintainer Upload | ||
2372 | * Check for new returns in the new libc | ||
2373 | (closes: #72803, #74393, #72797, #71307, #71702) | ||
2374 | * Link against libssl095a (closes: #66304) | ||
2375 | * Correct check for PermitRootLogin (closes: #69448) | ||
2376 | |||
2377 | -- Ryan Murray <rmurray@debian.org> Wed, 18 Oct 2000 00:48:18 -0700 | ||
2378 | |||
2379 | openssh (1:2.2.0p1-1) unstable; urgency=low | ||
2380 | |||
2381 | * New upstream release | ||
2382 | |||
2383 | -- Philip Hands <phil@hands.com> Mon, 11 Sep 2000 14:49:43 +0100 | ||
2384 | |||
2385 | openssh (1:2.1.1p4-3) unstable; urgency=low | ||
2386 | |||
2387 | * add rsh alternatives | ||
2388 | * add -S option to scp (using Tommi Virtanen's patch) (closes: #63097) | ||
2389 | * do the IPV4_DEFAULT thing properly this time | ||
2390 | |||
2391 | -- Philip Hands <phil@hands.com> Fri, 11 Aug 2000 18:14:37 +0100 | ||
2392 | |||
2393 | openssh (1:2.1.1p4-2) unstable; urgency=low | ||
2394 | |||
2395 | * reinstate manpage .out patch from 1:1.2.3 | ||
2396 | * fix typo in postinst | ||
2397 | * only compile ssh with IPV4_DEFAULT | ||
2398 | * apply James Troup's patch to add a -o option to scp and updated manpage | ||
2399 | |||
2400 | -- Philip Hands <phil@hands.com> Sun, 30 Jul 2000 00:12:49 +0100 | ||
2401 | |||
2402 | openssh (1:2.1.1p4-1) unstable; urgency=low | ||
2403 | |||
2404 | * New upstream release | ||
2405 | |||
2406 | -- Philip Hands <phil@hands.com> Sat, 29 Jul 2000 14:46:16 +0100 | ||
2407 | |||
2408 | openssh (1:1.2.3-10) unstable; urgency=low | ||
2409 | |||
2410 | * add version to libpam-modules dependency, because old versions of | ||
2411 | pam_motd make it impossible to log in. | ||
2412 | |||
2413 | -- Philip Hands <phil@hands.com> Sat, 29 Jul 2000 13:28:22 +0100 | ||
2414 | |||
2415 | openssh (1:1.2.3-9) frozen unstable; urgency=low | ||
2416 | |||
2417 | * force location of /usr/bin/X11/xauth | ||
2418 | (closes: #64424, #66437, #66859) *RC* | ||
2419 | * typos in config (closes: #66779, #66780) | ||
2420 | * sshd_not_to_be_run could be assumed to be true, in error, if the config | ||
2421 | script died in an unusual way --- I've reversed this (closes: #66335) | ||
2422 | * Apply Zack Weinberg <zack@wolery.cumb.org>'s patch to ssh-askpass-ptk | ||
2423 | (closes: #65981) | ||
2424 | * change default for PermitRootLogin to "no" (closes: #66406) | ||
2425 | |||
2426 | -- Philip Hands <phil@hands.com> Tue, 11 Jul 2000 20:51:18 +0100 | ||
2427 | |||
2428 | openssh (1:1.2.3-8) frozen unstable; urgency=low | ||
2429 | |||
2430 | * get rid of Provides: rsh-server (this will mean that rstartd | ||
2431 | will need to change it's depends to deal with #63948, which I'm | ||
2432 | reopening) (closes: #66257) | ||
2433 | Given that this is also a trivial change, and is a reversal of a | ||
2434 | change that was mistakenly made after the freeze, I think this should | ||
2435 | also go into frozen. | ||
2436 | |||
2437 | -- Philip Hands <phil@hands.com> Wed, 28 Jun 2000 03:26:30 +0100 | ||
2438 | |||
2439 | openssh (1:1.2.3-7) frozen unstable; urgency=low | ||
2440 | |||
2441 | * check if debconf is installed before calling db_stop in postinst. | ||
2442 | This is required to allow ssh to be installed when debconf is not | ||
2443 | wanted, which probably makes it an RC upload (hopefully the last of | ||
2444 | too many). | ||
2445 | |||
2446 | -- Philip Hands <phil@hands.com> Wed, 28 Jun 2000 03:19:47 +0100 | ||
2447 | |||
2448 | openssh (1:1.2.3-6) frozen unstable; urgency=low | ||
2449 | |||
2450 | * fixed depressing little bug involving a line wrap looking like | ||
2451 | a blank line in the templates file *RC* | ||
2452 | (closes: #66090, #66078, #66083, #66182) | ||
2453 | |||
2454 | -- Philip Hands <phil@hands.com> Mon, 26 Jun 2000 00:45:05 +0100 | ||
2455 | |||
2456 | openssh (1:1.2.3-5) frozen unstable; urgency=low | ||
2457 | |||
2458 | * add code to prevent UseLogin exploit, although I think our PAM | ||
2459 | conditional code breaks UseLogin in a way that protects us from this | ||
2460 | exploit anyway. ;-) (closes: #65495) *RC* | ||
2461 | * Apply Zack Weinberg <zack@wolery.cumb.org>'s patch to fix keyboard | ||
2462 | grab vulnerability in ssh-askpass-gnome (closes: #64795) *RC* | ||
2463 | * stop redirection of sshd's file descriptors (introduced in 1:1.2.3-3) | ||
2464 | and use db_stop in the postinst to solve that problem instead | ||
2465 | (closes: #65104) | ||
2466 | * add Provides: rsh-server to ssh (closes: #63948) | ||
2467 | * provide config option not to run sshd | ||
2468 | |||
2469 | -- Philip Hands <phil@hands.com> Mon, 12 Jun 2000 23:05:11 +0100 | ||
2470 | |||
2471 | openssh (1:1.2.3-4) frozen unstable; urgency=low | ||
2472 | |||
2473 | * fixes #63436 which is *RC* | ||
2474 | * add 10 second pause in init.d restart (closes: #63844) | ||
2475 | * get rid of noenv in PAM mail line (closes: #63856) | ||
2476 | * fix host key path in make-ssh-known-hosts (closes: #63713) | ||
2477 | * change wording of SUID template (closes: #62788, #63436) | ||
2478 | |||
2479 | -- Philip Hands <phil@hands.com> Sat, 27 May 2000 11:18:06 +0100 | ||
2480 | |||
2481 | openssh (1:1.2.3-3) frozen unstable; urgency=low | ||
2482 | |||
2483 | * redirect sshd's file descriptors to /dev/null in init to | ||
2484 | prevent debconf from locking up during installation | ||
2485 | ** grave bug just submited by me ** | ||
2486 | |||
2487 | -- Philip Hands <phil@hands.com> Thu, 20 Apr 2000 17:10:59 +0100 | ||
2488 | |||
2489 | openssh (1:1.2.3-2) frozen unstable; urgency=low | ||
2490 | |||
2491 | * allow user to select SUID status of /usr/bin/ssh (closes: 62462) ** RC ** | ||
2492 | * suggest debconf | ||
2493 | * conflict with debconf{,-tiny} (<<0.2.17) so I can clean up the preinst | ||
2494 | |||
2495 | -- Philip Hands <phil@hands.com> Wed, 19 Apr 2000 17:49:15 +0100 | ||
2496 | |||
2497 | openssh (1:1.2.3-1) frozen unstable; urgency=low | ||
2498 | |||
2499 | * New upstream release | ||
2500 | * patch sshd to create extra xauth key required for localhost | ||
2501 | (closes: #49944) *** RC *** | ||
2502 | * FallbacktoRsh now defaults to ``no'' to match impression | ||
2503 | given in sshd_config | ||
2504 | * stop setting suid bit on ssh (closes: #58711, #58558) | ||
2505 | This breaks Rhosts authentication (which nobody uses) and allows | ||
2506 | the LD_PRELOAD trick to get socks working, so seems like a net benefit. | ||
2507 | |||
2508 | -- Philip Hands <phil@hands.com> Thu, 13 Apr 2000 20:01:54 +0100 | ||
2509 | |||
2510 | openssh (1:1.2.2-1.4) frozen unstable; urgency=low | ||
2511 | |||
2512 | * Recompile for frozen, contains fix for RC bug. | ||
2513 | |||
2514 | -- Tommi Virtanen <tv@debian.org> Tue, 29 Feb 2000 22:14:58 +0200 | ||
2515 | |||
2516 | openssh (1:1.2.2-1.3) unstable; urgency=low | ||
2517 | |||
2518 | * Integrated man page addition for PrintLastLog. | ||
2519 | This bug was filed on "openssh", and I ended up | ||
2520 | creating my own patch for this (closes: #59054) | ||
2521 | * Improved error message when ssh_exchange_identification | ||
2522 | gets EOF (closes: #58904) | ||
2523 | * Fixed typo (your -> you're) in debian/preinst. | ||
2524 | * Added else-clauses to config to make this upgradepath possible: | ||
2525 | oldssh -> openssh preinst fails due to upgrade_to_openssh=false | ||
2526 | -> ssh-nonfree -> openssh. Without these, debconf remembered | ||
2527 | the old answer, config didn't force asking it, and preinst always | ||
2528 | aborted (closes: #56596, #57782) | ||
2529 | * Moved setting upgrade_to_openssh isdefault flag to the place | ||
2530 | where preinst would abort. This means no double question to most | ||
2531 | users, people who currently suffer from "can't upgrade" may need | ||
2532 | to run apt-get install ssh twice. Did not do the same for | ||
2533 | use_old_init_script, as the situation is a bit different, and | ||
2534 | less common (closes: #54010, #56224) | ||
2535 | * Check for existance of ssh-keygen before attempting to use it in | ||
2536 | preinst, added warning for non-existant ssh-keygen in config. This | ||
2537 | happens when the old ssh is removed (say, due to ssh-nonfree getting | ||
2538 | installed). | ||
2539 | |||
2540 | -- Tommi Virtanen <tv@debian.org> Sun, 27 Feb 2000 21:36:43 +0200 | ||
2541 | |||
2542 | openssh (1:1.2.2-1.2) frozen unstable; urgency=low | ||
2543 | |||
2544 | * Non-maintainer upload. | ||
2545 | * Added configuration option PrintLastLog, default off due to PAM | ||
2546 | (closes: #54007, #55042) | ||
2547 | * ssh-askpass-{gnome,ptk} now provide ssh-askpass, making ssh's | ||
2548 | Suggests: line more accurate. Also closing related bugs fixed | ||
2549 | earlier, when default ssh-askpass moved to /usr/bin. | ||
2550 | (closes: #52403, #54741, #50607, #52298, #50967, #51661) | ||
2551 | * Patched to call vhangup, with autoconf detection and all | ||
2552 | (closes: #55379) | ||
2553 | * Added --with-ipv4-default workaround to a glibc bug causing | ||
2554 | slow DNS lookups, as per UPGRADING. Use -6 to really use | ||
2555 | IPv6 addresses. (closes: #57891, #58744, #58713, #57970) | ||
2556 | * Added noenv to PAM pam_mail line. Thanks to Ben Collins. | ||
2557 | (closes: #58429) | ||
2558 | * Added the UPGRADING file to the package. | ||
2559 | * Added frozen to the changelog line and recompiled before | ||
2560 | package was installed into the archive. | ||
2561 | |||
2562 | -- Tommi Virtanen <tv@debian.org> Fri, 25 Feb 2000 22:08:57 +0200 | ||
2563 | |||
2564 | openssh (1:1.2.2-1.1) frozen unstable; urgency=low | ||
2565 | |||
2566 | * Non-maintainer upload. | ||
2567 | * Integrated scp pipe buffer patch from Ben Collins | ||
2568 | <benc@debian.org>, should now work even if reading | ||
2569 | a pipe gives less than fstat st_blksize bytes. | ||
2570 | Should now work on Alpha and Sparc Linux (closes: #53697, #52071) | ||
2571 | * Made ssh depend on libssl09 (>= 0.9.4-3) (closes: #51393) | ||
2572 | * Integrated patch from Ben Collins <benc@debian.org> | ||
2573 | to do full shadow account locking and expiration | ||
2574 | checking (closes: #58165, #51747) | ||
2575 | |||
2576 | -- Tommi Virtanen <tv@debian.org> Tue, 22 Feb 2000 20:46:12 +0200 | ||
2577 | |||
2578 | openssh (1:1.2.2-1) frozen unstable; urgency=medium | ||
2579 | |||
2580 | * New upstream release (closes: #56870, #56346) | ||
2581 | * built against new libesd (closes: #56805) | ||
2582 | * add Colin Watson <cjw44@cam.ac.uk> =NULL patch | ||
2583 | (closes: #49902, #54894) | ||
2584 | * use socketpairs as suggested by Andrew Tridgell to eliminate rsync | ||
2585 | (and other) lockups | ||
2586 | * patch SSHD_PAM_SERVICE back into auth-pam.c, again :-/ | ||
2587 | (closes: #49902, #55872, #56959) | ||
2588 | * uncoment the * line in ssh_config (closes: #56444) | ||
2589 | |||
2590 | * #54894 & #49902 are release critical, so this should go in frozen | ||
2591 | |||
2592 | -- Philip Hands <phil@hands.com> Wed, 9 Feb 2000 04:52:04 +0000 | ||
2593 | |||
2594 | openssh (1:1.2.1pre24-1) unstable; urgency=low | ||
2595 | |||
2596 | * New upstream release | ||
2597 | |||
2598 | -- Philip Hands <phil@hands.com> Fri, 31 Dec 1999 02:47:24 +0000 | ||
2599 | |||
2600 | openssh (1:1.2.1pre23-1) unstable; urgency=low | ||
2601 | |||
2602 | * New upstream release | ||
2603 | * excape ? in /etc/init.d/ssh (closes: #53269) | ||
2604 | |||
2605 | -- Philip Hands <phil@hands.com> Wed, 29 Dec 1999 16:50:46 +0000 | ||
2606 | |||
2607 | openssh (1:1.2pre17-1) unstable; urgency=low | ||
2608 | |||
2609 | * New upstream release | ||
2610 | |||
2611 | -- Philip Hands <phil@hands.com> Thu, 9 Dec 1999 16:50:40 +0000 | ||
2612 | |||
2613 | openssh (1:1.2pre16-1) unstable; urgency=low | ||
2614 | |||
2615 | * New upstream release | ||
2616 | * upstream release (1.2pre14) (closes: #50299) | ||
2617 | * make ssh depend on libwrap0 (>= 7.6-1.1) (closes: #50973, #50776) | ||
2618 | * dispose of grep -q broken pipe message in config script (closes: #50855) | ||
2619 | * add make-ssh-known-hosts (closes: #50660) | ||
2620 | * add -i option to ssh-copy-id (closes: #50657) | ||
2621 | * add check for *LK* in password, indicating a locked account | ||
2622 | |||
2623 | -- Philip Hands <phil@hands.com> Wed, 8 Dec 1999 22:59:38 +0000 | ||
2624 | |||
2625 | openssh (1:1.2pre13-1) unstable; urgency=low | ||
2626 | |||
2627 | * New upstream release | ||
2628 | * make sshd.c use SSHD_PAM_SERVICE and define it as "ssh" in debian/rules | ||
2629 | * remove duplicate line in /etc/pam.d/ssh (closes: #50310) | ||
2630 | * mention ssh -A option in ssh.1 & ssh_config | ||
2631 | * enable forwarding to localhost in default ssh_config (closes: #50373) | ||
2632 | * tweak preinst to deal with debconf being `unpacked' | ||
2633 | * use --with-tcp-wrappers (closes: #49545) | ||
2634 | |||
2635 | -- Philip Hands <phil@hands.com> Sat, 20 Nov 1999 14:20:04 +0000 | ||
2636 | |||
2637 | openssh (1:1.2pre11-2) unstable; urgency=low | ||
2638 | |||
2639 | * oops, just realised that I forgot to strip out the unpleasant | ||
2640 | fiddling mentioned below (which turned not to be a fix anyway) | ||
2641 | |||
2642 | -- Philip Hands <phil@hands.com> Mon, 15 Nov 1999 01:35:23 +0000 | ||
2643 | |||
2644 | openssh (1:1.2pre11-1) unstable; urgency=low | ||
2645 | |||
2646 | * New upstream release (closes: #49722) | ||
2647 | * add 2>/dev/null to dispose of spurious message casused by grep -q | ||
2648 | (closes: #49876, #49604) | ||
2649 | * fix typo in debian/control (closes: #49841) | ||
2650 | * Do some unpleasant fiddling with upgraded keys in the preinst, which | ||
2651 | should make the keylength problem go away. (closes: #49676) | ||
2652 | * make pam_start in sshd use ``ssh'' as the service name (closes: #49956) | ||
2653 | * If /etc/ssh/NOSERVER exist, stop sshd from starting (closes: #47107) | ||
2654 | * apply Ben Collins <bcollins@debian.org>'s shadow patch | ||
2655 | * disable lastlogin and motd printing if using pam (closes: #49957) | ||
2656 | * add ssh-copy-id script and manpage | ||
2657 | |||
2658 | -- Philip Hands <phil@hands.com> Fri, 12 Nov 1999 01:03:38 +0000 | ||
2659 | |||
2660 | openssh (1:1.2pre9-1) unstable; urgency=low | ||
2661 | |||
2662 | * New upstream release | ||
2663 | * apply Chip Salzenberg <chip@valinux.com>'s SO_REUSEADDR patch | ||
2664 | to channels.c, to make forwarded ports instantly reusable | ||
2665 | * replace Pre-Depend: debconf with some check code in preinst | ||
2666 | * make the ssh-add ssh-askpass failure message more helpful | ||
2667 | * fix the ssh-agent getopts bug (closes: #49426) | ||
2668 | * fixed typo on Suggests: line (closes: #49704, #49571) | ||
2669 | * tidy up ssh package description (closes: #49642) | ||
2670 | * make ssh suid (closes: #49635) | ||
2671 | * in preinst upgrade code, ensure ssh_host_keys is mode 600 (closes: #49606) | ||
2672 | * disable agent forwarding by default, for the similar reasons as | ||
2673 | X forwarding (closes: #49586) | ||
2674 | |||
2675 | -- Philip Hands <phil@hands.com> Tue, 9 Nov 1999 09:57:47 +0000 | ||
2676 | |||
2677 | openssh (1:1.2pre7-4) unstable; urgency=low | ||
2678 | |||
2679 | * predepend on debconf (>= 0.2.17) should now allow preinst questions | ||
2680 | |||
2681 | -- Philip Hands <phil@hands.com> Sat, 6 Nov 1999 10:31:06 +0000 | ||
2682 | |||
2683 | openssh (1:1.2pre7-3) unstable; urgency=low | ||
2684 | |||
2685 | * add ssh-askpass package using Tommi Virtanen's perl-tk script | ||
2686 | * add ssh-preconfig package cludge | ||
2687 | * add usage hints to ssh-agent.1 | ||
2688 | |||
2689 | -- Philip Hands <phil@hands.com> Fri, 5 Nov 1999 00:38:33 +0000 | ||
2690 | |||
2691 | openssh (1:1.2pre7-2) unstable; urgency=low | ||
2692 | |||
2693 | * use pam patch from Ben Collins <bcollins@debian.org> | ||
2694 | * add slogin symlink to Makefile.in | ||
2695 | * change /usr/bin/login to LOGIN_PROGRAM define of /bin/login | ||
2696 | * sort out debconf usage | ||
2697 | * patch from Tommi Virtanen <tv@debian.org>'s makes ssh-add use ssh-askpass | ||
2698 | |||
2699 | -- Philip Hands <phil@hands.com> Thu, 4 Nov 1999 11:08:54 +0000 | ||
2700 | |||
2701 | openssh (1:1.2pre7-1) unstable; urgency=low | ||
2702 | |||
2703 | * New upstream release | ||
2704 | |||
2705 | -- Philip Hands <phil@hands.com> Tue, 2 Nov 1999 21:02:37 +0000 | ||
2706 | |||
2707 | openssh (1:1.2.0.pre6db1-2) unstable; urgency=low | ||
2708 | |||
2709 | * change the binary package name to ssh (the non-free branch of ssh has | ||
2710 | been renamed to ssh-nonfree) | ||
2711 | * make pam file comply with Debian standards | ||
2712 | * use an epoch to make sure openssh supercedes ssh-nonfree | ||
2713 | |||
2714 | -- Philip Hands <phil@hands.com> Sat, 30 Oct 1999 16:26:05 +0100 | ||
2715 | |||
2716 | openssh (1.2pre6db1-1) unstable; urgency=low | ||
2717 | |||
2718 | * New upstream source | ||
2719 | * sshd accepts logins now! | ||
2720 | |||
2721 | -- Dan Brosemer <odin@linuxfreak.com> Fri, 29 Oct 1999 11:13:38 -0500 | ||
2722 | |||
2723 | openssh (1.2.0.19991028-1) unstable; urgency=low | ||
2724 | |||
2725 | * New upstream source | ||
2726 | * Added test for -lnsl to configure script | ||
2727 | |||
2728 | -- Dan Brosemer <odin@linuxfreak.com> Thu, 28 Oct 1999 18:52:09 -0500 | ||
2729 | |||
2730 | openssh (1.2.0.19991027-3) unstable; urgency=low | ||
2731 | |||
2732 | * Initial release | ||
2733 | |||
2734 | -- 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..1809ca267 --- /dev/null +++ b/debian/control | |||
@@ -0,0 +1,124 @@ | |||
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, libgtk2.0-dev, libedit-dev, debhelper (>= 5.0.22), sharutils, libselinux1-dev [alpha amd64 arm armeb armel hppa i386 ia64 lpia m68k mips mipsel powerpc ppc64 s390 sparc], libkrb5-dev | heimdal-dev | ||
6 | Standards-Version: 3.7.3 | ||
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 (>= 1.2.0) | debconf-2.0, adduser (>= 3.10), dpkg (>= 1.7.0), passwd, libssl0.9.8 (>= 0.9.8g-9) | ||
12 | Recommends: xauth, openssh-blacklist, openssh-blacklist-extra | ||
13 | Conflicts: ssh (<< 1:3.8.1p1-9), sftp, rsh-client (<<0.16.1-1), ssh-krb5 (<< 1:4.3p2-7) | ||
14 | Replaces: ssh, ssh-krb5 | ||
15 | Suggests: ssh-askpass, libpam-ssh, keychain | ||
16 | Provides: rsh-client, ssh-client | ||
17 | Description: secure shell client, an rlogin/rsh/rcp replacement | ||
18 | This is the portable version of OpenSSH, a free implementation of | ||
19 | the Secure Shell protocol as specified by the IETF secsh working | ||
20 | group. | ||
21 | . | ||
22 | Ssh (Secure Shell) is a program for logging into a remote machine | ||
23 | and for executing commands on a remote machine. | ||
24 | It provides secure encrypted communications between two untrusted | ||
25 | hosts over an insecure network. X11 connections and arbitrary TCP/IP | ||
26 | ports can also be forwarded over the secure channel. | ||
27 | It is intended as a replacement for rlogin, rsh and rcp, and can be | ||
28 | used to provide applications with a secure communication channel. | ||
29 | . | ||
30 | This package provides the ssh, scp and sftp clients, the ssh-agent | ||
31 | and ssh-add programs to make public key authentication more convenient, | ||
32 | and the ssh-keygen, ssh-keyscan, ssh-copy-id and ssh-argv0 utilities. | ||
33 | . | ||
34 | In some countries it may be illegal to use any encryption at all | ||
35 | without a special permit. | ||
36 | |||
37 | Package: openssh-server | ||
38 | Priority: optional | ||
39 | Architecture: any | ||
40 | Depends: ${shlibs:Depends}, debconf (>= 1.2.0) | debconf-2.0, libpam-runtime (>= 0.76-14), libpam-modules (>= 0.72-9), adduser (>= 3.9), dpkg (>= 1.9.0), openssh-client (= ${binary:Version}), lsb-base (>= 3.0-6), libssl0.9.8 (>= 0.9.8g-9), openssh-blacklist | ||
41 | Recommends: xauth, openssh-blacklist-extra | ||
42 | 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) | ||
43 | Replaces: ssh, openssh-client (<< 1:3.8.1p1-11), ssh-krb5 | ||
44 | Suggests: ssh-askpass, rssh, molly-guard | ||
45 | Provides: ssh-server | ||
46 | Description: secure shell server, an rshd replacement | ||
47 | This is the portable version of OpenSSH, a free implementation of | ||
48 | the Secure Shell protocol as specified by the IETF secsh working | ||
49 | group. | ||
50 | . | ||
51 | Ssh (Secure Shell) is a program for logging into a remote machine | ||
52 | and for executing commands on a remote machine. | ||
53 | It provides secure encrypted communications between two untrusted | ||
54 | hosts over an insecure network. X11 connections and arbitrary TCP/IP | ||
55 | ports can also be forwarded over the secure channel. | ||
56 | It is intended as a replacement for rlogin, rsh and rcp, and can be | ||
57 | used to provide applications with a secure communication channel. | ||
58 | . | ||
59 | This package provides the sshd server. | ||
60 | . | ||
61 | In some countries it may be illegal to use any encryption at all | ||
62 | without a special permit. | ||
63 | |||
64 | Package: ssh | ||
65 | Priority: extra | ||
66 | Architecture: all | ||
67 | Depends: openssh-client, openssh-server | ||
68 | Description: secure shell client and server (metapackage) | ||
69 | This metapackage is a convenient way to install both the OpenSSH client | ||
70 | and the OpenSSH server. It provides nothing in and of itself, so you | ||
71 | may remove it if nothing depends on it. | ||
72 | |||
73 | Package: ssh-krb5 | ||
74 | Priority: extra | ||
75 | Architecture: all | ||
76 | Depends: openssh-client, openssh-server | ||
77 | Description: secure shell client and server (transitional package) | ||
78 | This is a transitional package depending on the regular Debian OpenSSH | ||
79 | client and server, which now support GSSAPI natively. It will add the | ||
80 | necessary GSSAPI options to the server configuration file. You can | ||
81 | remove it once the upgrade is complete and nothing depends on it. | ||
82 | |||
83 | Package: ssh-askpass-gnome | ||
84 | Section: gnome | ||
85 | Priority: optional | ||
86 | Architecture: any | ||
87 | Depends: ${shlibs:Depends}, openssh-client | ssh (>= 1:1.2pre7-4) | ssh-krb5 | ||
88 | Replaces: ssh (<< 1:3.5p1-3) | ||
89 | Provides: ssh-askpass | ||
90 | Description: interactive X program to prompt users for a passphrase for ssh-add | ||
91 | This has been split out of the main openssh-client package so that | ||
92 | openssh-client does not need to depend on GTK. | ||
93 | . | ||
94 | You probably want the ssh-askpass package instead, but this is | ||
95 | provided to add to your choice and/or confusion. | ||
96 | |||
97 | Package: openssh-client-udeb | ||
98 | XC-Package-Type: udeb | ||
99 | Section: debian-installer | ||
100 | Priority: optional | ||
101 | Architecture: any | ||
102 | Depends: ${shlibs:Depends}, libnss-files-udeb, libcrypto0.9.8-udeb (>= 0.9.8g-9) | ||
103 | XB-Installer-Menu-Item: 99999 | ||
104 | Description: secure shell client for the Debian installer | ||
105 | This is the portable version of OpenSSH, a free implementation of | ||
106 | the Secure Shell protocol as specified by the IETF secsh working | ||
107 | group. | ||
108 | . | ||
109 | This package provides the ssh client for use in debian-installer. | ||
110 | |||
111 | Package: openssh-server-udeb | ||
112 | XC-Package-Type: udeb | ||
113 | Section: debian-installer | ||
114 | Priority: optional | ||
115 | Architecture: any | ||
116 | Depends: ${shlibs:Depends}, libnss-files-udeb, libcrypto0.9.8-udeb (>= 0.9.8g-9) | ||
117 | Description: secure shell server for the Debian installer | ||
118 | This is the portable version of OpenSSH, a free implementation of | ||
119 | the Secure Shell protocol as specified by the IETF secsh working | ||
120 | group. | ||
121 | . | ||
122 | This package provides the sshd server for use in debian-installer. | ||
123 | Since it is expected to be used in specialized situations (e.g. S/390 | ||
124 | 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..0b310a7e5 --- /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-2006 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/faq.html b/debian/faq.html new file mode 100644 index 000000000..67d55cb52 --- /dev/null +++ b/debian/faq.html | |||
@@ -0,0 +1,1176 @@ | |||
1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> | ||
2 | <html> | ||
3 | <head> | ||
4 | <title>OpenSSH FAQ</title> | ||
5 | <link rev= "made" href= "mailto:www@openbsd.org"> | ||
6 | <meta name= "resource-type" content= "document"> | ||
7 | <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> | ||
8 | <meta name= "description" content= "the OpenSSH FAQ page"> | ||
9 | <meta name= "keywords" content= "OpenSSH,SSH,Secure Shell,faq"> | ||
10 | <meta name= "distribution" content= "global"> | ||
11 | <meta name= "copyright" content= "This document copyright 1999-2005 OpenBSD."> | ||
12 | </head> | ||
13 | |||
14 | <body bgcolor= "#ffffff" text= "#000000" link= "#23238E"> | ||
15 | <a href="http://www.openssh.org/index.html"><img alt="[OpenSSH]" height="30" width="141" src="images/smalltitle.gif" border="0"></a> | ||
16 | <p> | ||
17 | |||
18 | <h1>OpenSSH FAQ (Frequently asked questions)</h1> | ||
19 | |||
20 | <strong>Date: 2005/09/20</strong> | ||
21 | |||
22 | <hr> | ||
23 | |||
24 | <blockquote> | ||
25 | <h3><a href= "#1.0">1.0 - What Is OpenSSH and Where Can I Get It?</a></h3> | ||
26 | <ul> | ||
27 | <li><a href= "#1.1">1.1 - What is OpenSSH and where can I download it?</a> | ||
28 | <li><a href= "#1.2">1.2 - Why should it be used?</a> | ||
29 | <li><a href= "#1.3">1.3 - What Operating Systems are supported?</a> | ||
30 | <li><a href= "#1.4">1.4 - What about copyright, usage and patents?</a> | ||
31 | <li><a href= "#1.5">1.5 - Where should I ask for help?</a> | ||
32 | </ul> | ||
33 | |||
34 | <h3><a href= "#2.0">2.0 - General Questions</a></h3> | ||
35 | <ul> | ||
36 | <li><a href= "#2.1">2.1 - Why does ssh/scp make connections from low-numbered ports. My firewall blocks these.</a> | ||
37 | <li><a href= "#2.2">2.2 - Why is the ssh client setuid root?</a> | ||
38 | <li><a href= "#2.3">2.3 - Why does SSH 2.3 have problems interoperating with OpenSSH 2.1.1?</a> | ||
39 | <li><a href= "#2.4">2.4 - Why does OpenSSH print: Dispatch protocol error: type 20</a> | ||
40 | <li><a href= "#2.5">2.5 - Old versions of commercial SSH encrypt host keys with IDEA.</a> | ||
41 | <li><a href= "#2.6">2.6 - What are these warning messages about key lengths?</a> | ||
42 | <li><a href= "#2.7">2.7 - X11 and/or agent forwarding does not work.</a> | ||
43 | <li><a href= "#2.8">2.8 - After upgrading OpenSSH I lost SSH2 support.</a> | ||
44 | <li><a href= "#2.9">2.9 - sftp/scp fails at connection, but ssh is OK.</a> | ||
45 | <li><a href= "#2.10">2.10 - Will you add [foo] to scp?</a> | ||
46 | <li><a href= "#2.11">2.11 - How do I use port forwarding?</a> | ||
47 | <li><a href= "#2.12">2.12 - My ssh connection freezes or drops out after N minutes of inactivity.</a> | ||
48 | <li><a href= "#2.13">2.13 - How do I use scp to copy a file with a colon in it?</a> | ||
49 | <li><a href= "#2.14">2.14 - Why does OpenSSH report its version to clients?</a> | ||
50 | </ul> | ||
51 | |||
52 | <h3><a href= "#3.0">3.0 - Portable OpenSSH Questions</a></h3> | ||
53 | <ul> | ||
54 | <li><a href= "#3.1">3.1 - Spurious PAM authentication messages in logfiles.</a> | ||
55 | <li><a href= "#3.2">3.2 - Empty passwords not allowed with PAM authentication.</a> | ||
56 | <li><a href= "#3.3">3.3 - ssh(1) takes a long time to connect or log in</a> | ||
57 | <li><a href= "#3.4">3.4 - "Can't locate module net-pf-10" messages in log under Linux.</a> | ||
58 | <li><a href= "#3.5">3.5 - Password authentication doesn't work (eg on Slackware 7.0 or Red Hat Linux 6.x)</a> | ||
59 | <li><a href= "#3.6">3.6 - Configure or sshd(8) complain about lack of RSA support</a> | ||
60 | <li><a href= "#3.7">3.7 - "scp: command not found" errors</a> | ||
61 | <li><a href= "#3.8">3.8 - Unable to read passphrase</a> | ||
62 | <li><a href= "#3.9">3.9 - 'configure' missing or make fails</a> | ||
63 | <li><a href= "#3.10">3.10 - Hangs when exiting ssh</a> | ||
64 | <li><a href= "#3.11">3.11 - Why does ssh hang on exit?</a> | ||
65 | <li><a href= "#3.12">3.12 - I upgraded to OpenSSH 3.1 and X11 forwarding stopped working.</a> | ||
66 | <li><a href= "#3.13">3.13 - I upgraded to OpenSSH 3.8 and some X11 programs stopped working.</a> | ||
67 | <li><a href= "#3.14">3.14 - I copied my public key to authorized_keys but public-key authentication still doesn't work.</a> | ||
68 | <li><a href= "#3.15">3.15 - OpenSSH versions and PAM behaviour.</a> | ||
69 | <li><a href= "#3.16">3.16 - Why doesn't "w" or "who" on AIX 5.x show users logged in via ssh?</a> | ||
70 | </ul> | ||
71 | |||
72 | </blockquote> | ||
73 | |||
74 | <hr> | ||
75 | |||
76 | <h2><u><a name= "1.0">1.0 - What Is OpenSSH and Where Can I Get It?</a></u></h2> | ||
77 | |||
78 | <h2><a name= "1.1">1.1 - What is OpenSSH and where can I download it?</a></h2> | ||
79 | |||
80 | <p> | ||
81 | OpenSSH is a <b>FREE</b> version of the SSH suite of network connectivity | ||
82 | tools that increasing numbers of people on the Internet are coming to | ||
83 | rely on. Many users of telnet, rlogin, ftp, and other such programs might | ||
84 | not realize that their password is transmitted across the Internet | ||
85 | unencrypted, but it is. OpenSSH encrypts all traffic (including passwords) | ||
86 | to effectively eliminate eavesdropping, connection hijacking, | ||
87 | and other network-level attacks. | ||
88 | |||
89 | <p> | ||
90 | The OpenSSH suite includes the | ||
91 | <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=ssh&sektion=1">ssh(1)</a> | ||
92 | program which replaces rlogin and telnet, and | ||
93 | <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=scp&sektion=1">scp(1)</a> | ||
94 | which replaces | ||
95 | <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=rcp&sektion=1">rcp(1)</a> and | ||
96 | <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=ftp&sektion=1">ftp(1)</a>. | ||
97 | OpenSSH has also added | ||
98 | <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=sftp&sektion=1">sftp(1)</a> and | ||
99 | <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=sftp-server&sektion=8">sftp-server(8)</a> | ||
100 | which implement an easier solution for file-transfer. This is based upon the | ||
101 | <a href="http://www.openssh.org/txt/draft-ietf-secsh-filexfer-02.txt">secsh-filexfer</a> IETF draft. | ||
102 | |||
103 | |||
104 | <p><strong>OpenSSH consists of a number of programs.</strong> | ||
105 | |||
106 | <ul> | ||
107 | <li><a href="http://www.openbsd.org/cgi-bin/man.cgi?query=sshd&sektion=8">sshd(8)</a> - Server program run on the server machine. This listens for connections from client machines, and whenever it receives a connection, it performs authentication and starts serving the client. | ||
108 | Its behaviour is controlled by the config file <i><a | ||
109 | href="http://www.openbsd.org/cgi-bin/man.cgi?query=sshd_config&sektion=5"> | ||
110 | sshd_config(5)</a></i>. | ||
111 | <li><a href="http://www.openbsd.org/cgi-bin/man.cgi?query=ssh&sektion=1">ssh(1)</a> - This is the client program used to log into another machine or to execute commands on the other machine. <i>slogin</i> is another name for this program. | ||
112 | Its behaviour is controlled by the global config file <i><a | ||
113 | href="http://www.openbsd.org/cgi-bin/man.cgi?query=ssh_config&sektion=5"> | ||
114 | ssh_config(5)</a></i> and individual users' <i>$HOME/.ssh/config</i> files. | ||
115 | <li><a href="http://www.openbsd.org/cgi-bin/man.cgi?query=scp&sektion=1">scp(1)</a> - Securely copies files from one machine to another. | ||
116 | <li><a href="http://www.openbsd.org/cgi-bin/man.cgi?query=ssh-keygen&sektion=1">ssh-keygen(1)</a> - Used to create Pubkey Authentication (RSA or DSA) keys (host keys and user authentication keys). | ||
117 | <li><a href="http://www.openbsd.org/cgi-bin/man.cgi?query=ssh-agent&sektion=1">ssh-agent(1)</a> - Authentication agent. This can be used to hold RSA keys for authentication. | ||
118 | <li><a href="http://www.openbsd.org/cgi-bin/man.cgi?query=ssh-add&sektion=1">ssh-add(1)</a> - Used to register new keys with the agent. | ||
119 | <li><a href="http://www.openbsd.org/cgi-bin/man.cgi?query=sftp-server&sektion=8">sftp-server(8)</a> - SFTP server subsystem. | ||
120 | <li><a href="http://www.openbsd.org/cgi-bin/man.cgi?query=sftp&sektion=1">sftp(1)</a> - Secure file transfer program. | ||
121 | <li><a href="http://www.openbsd.org/cgi-bin/man.cgi?query=ssh-keyscan&sektion=1">ssh-keyscan(1)</a> - gather ssh public keys. | ||
122 | <li><a href="http://www.openbsd.org/cgi-bin/man.cgi?query=ssh-keysign&sektion=8">ssh-keysign(8)</a> - ssh helper program for hostbased authentication. | ||
123 | </ul> | ||
124 | |||
125 | <h3>Downloading</h3> | ||
126 | |||
127 | <p> | ||
128 | OpenSSH comes in two downloadable distributions: the native <a | ||
129 | href="http://www.openssh.org/openbsd.html">OpenBSD</a> distribution and the multi-platform | ||
130 | <a href="http://www.openssh.org/portable.html">Portable</a> distribution. If you want | ||
131 | OpenSSH for a recent OpenBSD or integration into a product, you | ||
132 | probably want the <a href="http://www.openssh.org/openbsd.html">OpenBSD</a> distribution. | ||
133 | If you want OpenSSH for another platform, or an older OpenBSD, you | ||
134 | probably want the <a href="http://www.openssh.org/portable.html">Portable</a> distribution. | ||
135 | |||
136 | <p> | ||
137 | When downloading, please use a <a href="http://www.openssh.org/portable.html#mirrors">mirror</a> | ||
138 | near you. | ||
139 | |||
140 | <h2><a name= "1.2">1.2 - Why should it be used?</a></h2> | ||
141 | |||
142 | <p> | ||
143 | OpenSSH is a suite of tools to help secure your network | ||
144 | connections. Here is a list of features: | ||
145 | |||
146 | |||
147 | <ul> | ||
148 | <li>Strong authentication. Closes several security holes (e.g., IP, routing, and DNS spoofing). | ||
149 | <li>Improved privacy. All communications are automatically and transparently encrypted. | ||
150 | <li>Secure X11 sessions. The program automatically sets DISPLAY on the server machine, and forwards any X11 connections over the secure channel. | ||
151 | <li>Arbitrary TCP/IP ports can be redirected through the encrypted channel in both directions (e.g., for e-cash transactions). | ||
152 | <li>No retraining needed for normal users. | ||
153 | <li>Never trusts the network. Minimal trust on the remote side of the connection. Minimal trust on domain name servers. Pure RSA authentication never trusts anything but the private key. | ||
154 | <li>Client RSA-authenticates the server machine in the beginning of every connection to prevent trojan horses (by routing or DNS spoofing) and man-in-the-middle attacks, and the server RSA-authenticates the client machine before accepting <i>.rhosts</i> or <i>/etc/hosts.equiv</i> authentication (to prevent DNS, routing, or IP-spoofing). | ||
155 | <li>Host authentication key distribution can be centrally by the administration, automatically when the first connection is made to a machine. | ||
156 | <li>Any user can create any number of user authentication RSA keys for his/her own use. | ||
157 | <li>The server program has its own server RSA key which is automatically regenerated every hour. | ||
158 | <li>An authentication agent, running in the user's laptop or local workstation, can be used to hold the user's RSA authentication keys. | ||
159 | <li>The software can be installed and used (with restricted functionality) even without root privileges. | ||
160 | <li>The client is customizable in system-wide and per-user configuration files. | ||
161 | <li>Optional compression of all data with gzip (including forwarded X11 and TCP/IP port data), which may result in significant speedups on slow connections. | ||
162 | <li>Complete replacement for rlogin, rsh, and rcp. | ||
163 | </ul> | ||
164 | |||
165 | <p> | ||
166 | Currently, almost all communications in computer networks are done | ||
167 | without encryption. As a consequence, anyone who has access to any | ||
168 | machine connected to the network can listen in on any communication. | ||
169 | This is being done by hackers, curious administrators, employers, | ||
170 | criminals, industrial spies, and governments. Some networks leak off | ||
171 | enough electromagnetic radiation that data may be captured even from a | ||
172 | distance. | ||
173 | |||
174 | |||
175 | <p> | ||
176 | When you log in, your password goes in the network in plain | ||
177 | text. Thus, any listener can then use your account to do any evil he | ||
178 | likes. Many incidents have been encountered worldwide where crackers | ||
179 | have started programs on workstations without the owner's knowledge | ||
180 | just to listen to the network and collect passwords. Programs for | ||
181 | doing this are available on the Internet, or can be built by a | ||
182 | competent programmer in a few hours. | ||
183 | |||
184 | |||
185 | <p> | ||
186 | Businesses have trade secrets, patent applications in preparation, | ||
187 | pricing information, subcontractor information, client data, personnel | ||
188 | data, financial information, etc. Currently, anyone with access to | ||
189 | the network (any machine on the network) can listen to anything that | ||
190 | goes in the network, without any regard to normal access restrictions. | ||
191 | |||
192 | |||
193 | <p> | ||
194 | Many companies are not aware that information can so easily be | ||
195 | recovered from the network. They trust that their data is safe | ||
196 | since nobody is supposed to know that there is sensitive information | ||
197 | in the network, or because so much other data is transferred in the | ||
198 | network. This is not a safe policy. | ||
199 | |||
200 | |||
201 | <h2><a name= "1.3">1.3 - What operating systems are supported?</a></h2> | ||
202 | |||
203 | <p> | ||
204 | Even though OpenSSH is developed on | ||
205 | <a href="http://www.openbsd.org/">OpenBSD</a> a wide variety of | ||
206 | ports to other operating systems exist. The portable version of OpenSSH | ||
207 | is headed by <a href="mailto:djm@openbsd.org">Damien Miller</a>. | ||
208 | For a quick overview of the portable version of OpenSSH see | ||
209 | <a href="http://www.openssh.org/portable.html">OpenSSH Portable Release</a>. | ||
210 | Currently, the supported operating systems are: | ||
211 | |||
212 | |||
213 | <ul> | ||
214 | <li>OpenBSD | ||
215 | <li>NetBSD | ||
216 | <li>FreeBSD | ||
217 | <li>AIX | ||
218 | <li>HP-UX | ||
219 | <li>IRIX | ||
220 | <li>Linux | ||
221 | <li>NeXT | ||
222 | <li>SCO | ||
223 | <li>SNI/Reliant Unix | ||
224 | <li>Solaris | ||
225 | <li>Digital Unix/Tru64/OSF | ||
226 | <li>Mac OS X | ||
227 | <li>Cygwin | ||
228 | </ul> | ||
229 | |||
230 | <p> | ||
231 | A list of vendors that include OpenSSH in their distributions | ||
232 | is located in the <a href="http://www.openssh.org/users.html">OpenSSH Users page</a>. | ||
233 | |||
234 | <h2><a name= "1.4">1.4 - What about copyrights, usage and patents?</a></h2> | ||
235 | <p> | ||
236 | The OpenSSH developers have tried very hard to keep OpenSSH free of any | ||
237 | patent or copyright problems. To do this, some options had to be | ||
238 | stripped from OpenSSH. Namely support for patented algorithms. | ||
239 | |||
240 | <p> | ||
241 | OpenSSH does not support any patented transport algorithms. In SSH1 mode, | ||
242 | only 3DES and Blowfish are available options. In SSH2 mode, only 3DES, | ||
243 | Blowfish, CAST128, Arcfour and AES can be selected. | ||
244 | The patented IDEA algorithm is not supported. | ||
245 | |||
246 | <p> | ||
247 | OpenSSH provides support for both SSH1 and SSH2 protocols. | ||
248 | |||
249 | <p> | ||
250 | Since the RSA patent has expired, there are no restrictions on the use | ||
251 | of RSA algorithm using software, including OpenBSD. | ||
252 | |||
253 | <h2><a name= "1.5">1.5 - Where should I ask for help?</a></h2> | ||
254 | <p> | ||
255 | There are many places to turn to for help. In addition to the main | ||
256 | <a href="http://www.openssh.org/index.html">OpenSSH website</a>, | ||
257 | there are many mailing lists to try. Before trying any mailing lists, | ||
258 | please search through all mailing list archives to see if your question | ||
259 | has already been answered. The OpenSSH Mailing List has been archived and | ||
260 | put in searchable form and can be found at | ||
261 | <a href="http://marc.info/?l=openssh-unix-dev&r=1&w=2">marc.info</a>. | ||
262 | |||
263 | <p> | ||
264 | For more information on subscribing to OpenSSH related mailing lists, | ||
265 | please see <a href="http://www.openssh.org/list.html">OpenSSH Mailing lists</a>. | ||
266 | |||
267 | <p> | ||
268 | Information about submitting bug reports can be found at the OpenSSH | ||
269 | <a href="http://www.openssh.org/report.html">Reporting bugs</a> page. | ||
270 | |||
271 | <h2><u><a name= "2.0">2.0 - General Questions</a></u></h2> | ||
272 | |||
273 | <h2><a name= "2.1">2.1 - Why does ssh/scp make connections from low-numbered ports.</a></h2> | ||
274 | <p> | ||
275 | The OpenSSH client uses low numbered ports for rhosts and rhosts-rsa | ||
276 | authentication because the server needs to trust the username provided by | ||
277 | the client. To get around this, you can add the below example to your | ||
278 | <i>ssh_config</i> or <i>~/.ssh/config</i> file. | ||
279 | |||
280 | |||
281 | <blockquote> | ||
282 | <table border=0 width="800"> | ||
283 | <tr> | ||
284 | <td nowrap bgcolor="#EEEEEE"> | ||
285 | <b>UsePrivilegedPort no</b> | ||
286 | </td> | ||
287 | </tr> | ||
288 | </table> | ||
289 | </blockquote> | ||
290 | |||
291 | <p> | ||
292 | Or you can specify this option on the command line, using the <b>-o</b> | ||
293 | option to | ||
294 | <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=ssh&sektion=1">ssh(1)</a> command. | ||
295 | |||
296 | <blockquote> | ||
297 | <table border=0 width="800"> | ||
298 | <tr> | ||
299 | <td nowrap bgcolor="#EEEEEE"> | ||
300 | $ <b>ssh -o "UsePrivilegedPort no" host.com</b> | ||
301 | </td> | ||
302 | </tr> | ||
303 | </table> | ||
304 | </blockquote> | ||
305 | |||
306 | <h2><a name= "2.2">2.2 - Why is the ssh client setuid root?</a></h2> | ||
307 | |||
308 | <p> | ||
309 | In conjunction with the previous question, (<a href="#2.1">2.1</a>) | ||
310 | OpenSSH needs root authority to be able to bind to low-numbered ports to | ||
311 | facilitate <i>rhosts authentication</i>. | ||
312 | A privileged port is also required for rhosts-rsa authentication to older | ||
313 | SSH releases. | ||
314 | |||
315 | <p> | ||
316 | Additionally, for both <i>rhosts-rsa authentication</i> (in protocol | ||
317 | version 1) and <i>hostbased authentication</i> (in protocol version 2) | ||
318 | the ssh client needs to access the <i>private host key</i> in order to | ||
319 | authenticate the client machine to the server. | ||
320 | OpenSSH versions prior to 3.3 required the <code>ssh</code> binary to be | ||
321 | setuid root to enable this, and you may safely remove it if you don't | ||
322 | want to use these authentication methods. | ||
323 | |||
324 | <p> | ||
325 | Starting in OpenSSH 3.3, <code>ssh</code> is not setuid by default. <a | ||
326 | href="http://www.openbsd.org/cgi-bin/man.cgi?query=ssh-keysign">ssh-keysign</a>, | ||
327 | is used for access to the private hosts keys, and ssh does not use privileged | ||
328 | source ports by default. If you wish to use a privileged source port, you must | ||
329 | manually set the setuid bit on <code>ssh</code>. | ||
330 | |||
331 | <h2><a name= "2.3">2.3 - Why does SSH 2.3 have problems interoperating with OpenSSH 2.1.1?</a></h2> | ||
332 | |||
333 | <p> | ||
334 | SSH 2.3 and earlier versions contain a flaw in their HMAC implementation. | ||
335 | Their code was not supplying the full data block output from the digest, | ||
336 | and instead always provided 128 bits. For longer digests, this caused | ||
337 | SSH 2.3 to not interoperate with OpenSSH. | ||
338 | |||
339 | <p> | ||
340 | OpenSSH 2.2.0 detects that SSH 2.3 has this flaw. Recent versions of SSH | ||
341 | will have this bug fixed. Or you can add the following to | ||
342 | SSH 2.3 <i>sshd2_config</i>. | ||
343 | |||
344 | |||
345 | <blockquote> | ||
346 | <table border=0 width="800"> | ||
347 | <tr> | ||
348 | <td nowrap bgcolor="#EEEEEE"> | ||
349 | <b>Mac hmac-md5</b> | ||
350 | </td> | ||
351 | </tr> | ||
352 | </table> | ||
353 | </blockquote> | ||
354 | |||
355 | <h2><a name= "2.4">2.4 - Why does OpenSSH print: Dispatch protocol error: type 20</a></h2> | ||
356 | |||
357 | <p> | ||
358 | Problems in interoperation have been seen because older versions of | ||
359 | OpenSSH did not support session rekeying. However the commercial SSH 2.3 | ||
360 | tries to negotiate this feature, and you might experience connection | ||
361 | freezes or see the error message "<b>Dispatch protocol error: | ||
362 | type 20 </b>". | ||
363 | To solve this problem, either upgrade to a recent OpenSSH release or | ||
364 | disable rekeying by adding the following to your commercial SSH 2.3's | ||
365 | <i>ssh2_config</i> or <i>sshd2_config</i>. | ||
366 | |||
367 | |||
368 | <blockquote> | ||
369 | <table border=0 width="800"> | ||
370 | <tr> | ||
371 | <td nowrap bgcolor="#EEEEEE"> | ||
372 | <b>RekeyIntervalSeconds 0</b> | ||
373 | </td> | ||
374 | </tr> | ||
375 | </table> | ||
376 | </blockquote> | ||
377 | |||
378 | <h2><a name= "2.5">2.5 - Old versions of commercial SSH encrypt host keys with IDEA.</a></h2> | ||
379 | |||
380 | <p> | ||
381 | The old versions of SSH used a patented algorithm to encrypt their | ||
382 | <i>/etc/ssh/ssh_host_key</i>. This problem will manifest as | ||
383 | <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=sshd&sektion=8">sshd(8)</a> | ||
384 | not being able to read its host key. To solve this, use the command below | ||
385 | to convert your ssh_host_key to use 3DES. | ||
386 | <b>NOTE:</b> Use the | ||
387 | <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=ssh-keygen&sektion=1">ssh-keygen(1)</a> | ||
388 | program from the Commercial SSH product, *NOT* OpenSSH for the example | ||
389 | below. | ||
390 | |||
391 | |||
392 | <blockquote> | ||
393 | <table border=0 width="800"> | ||
394 | <tr> | ||
395 | <td nowrap bgcolor="#EEEEEE"> | ||
396 | # <b>ssh-keygen -u -f /etc/ssh/ssh_host_key</b> | ||
397 | </td> | ||
398 | </tr> | ||
399 | </table> | ||
400 | </blockquote> | ||
401 | |||
402 | <h2><a name= "2.6">2.6 - What are these warning messages about key lengths</a></h2> | ||
403 | |||
404 | <p> | ||
405 | Commercial SSH's | ||
406 | <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=ssh-keygen&sektion=1">ssh-keygen(1)</a> | ||
407 | program contained a bug which caused it to occasionally generate Pubkey | ||
408 | Authentication (RSA or DSA) keys which had their Most Significant Bit | ||
409 | (MSB) unset. Such keys were advertised as being full-length, but are | ||
410 | actually, half the time, smaller than advertised. | ||
411 | |||
412 | <p> | ||
413 | OpenSSH will print warning messages when it encounters such keys. To rid | ||
414 | yourself of these message, edit your <i>known_hosts</i> files and replace the | ||
415 | incorrect key length (usually "1024") with the correct key length | ||
416 | (usually "1023"). | ||
417 | |||
418 | <h2><a name= "2.7">2.7 - X11 and/or agent forwarding does not work.</a></h2> | ||
419 | |||
420 | <p> | ||
421 | Check your <i>ssh_config</i> and <i>sshd_config</i>. The default | ||
422 | configuration files disable authentication agent and X11 forwarding. To | ||
423 | enable it, put the line below in <i>sshd_config</i>: | ||
424 | |||
425 | <blockquote> | ||
426 | <table border=0 width="800"> | ||
427 | <tr> | ||
428 | <td nowrap bgcolor="#EEEEEE"> | ||
429 | <b>X11Forwarding yes</b> | ||
430 | </td> | ||
431 | </tr> | ||
432 | </table> | ||
433 | </blockquote> | ||
434 | |||
435 | <p> | ||
436 | and put the following lines in <i>ssh_config</i>: | ||
437 | |||
438 | <blockquote> | ||
439 | <table border=0 width="800"> | ||
440 | <tr> | ||
441 | <td nowrap bgcolor="#EEEEEE"> | ||
442 | <b>ForwardAgent yes</b><br> | ||
443 | <b>ForwardX11 yes</b> | ||
444 | </td> | ||
445 | </tr> | ||
446 | </table> | ||
447 | </blockquote> | ||
448 | |||
449 | <p> | ||
450 | X11 forwarding requires a working <a | ||
451 | href="http://www.openbsd.org/cgi-bin/man.cgi?query=xauth&sektion=1" | ||
452 | >xauth(1)</a> binary. On OpenBSD this is in the <i>xbase</i> file | ||
453 | set but will probably be different on other platforms. For OpenSSH | ||
454 | Portable, xauth must be either found at configure time or specified | ||
455 | via <b>XAuthLocation</b> in sshd_config(5) and ssh_config(5). | ||
456 | |||
457 | <p> | ||
458 | Note on agent interoperability: There are two different and | ||
459 | incompatible agent forwarding mechanisms within the SSH2 protocol. | ||
460 | OpenSSH has always used an extension of the original SSH1 agent | ||
461 | requests, however some commercial products use a different, non-free | ||
462 | agent forwarding protocol. This means that agent forwarding cannot | ||
463 | be used between OpenSSH and those products. | ||
464 | |||
465 | <p> | ||
466 | <b>NOTE:</b> For users of Linux Mandrake 7.2, Mandrake modifies the | ||
467 | <i>XAUTHORITY</i> environment variable in <i>/etc/skel/.bashrc</i>, | ||
468 | and thus any bash user's home directory. This variable is set by OpenSSH | ||
469 | and for either of the above options to work, you need to comment out | ||
470 | the line: | ||
471 | |||
472 | |||
473 | <blockquote> | ||
474 | <table border=0 width="800"> | ||
475 | <tr> | ||
476 | <td nowrap bgcolor="#EEEEEE"> | ||
477 | <b># export XAUTHORITY=$HOME/.Xauthority</b> | ||
478 | </td> | ||
479 | </tr> | ||
480 | </table> | ||
481 | </blockquote> | ||
482 | |||
483 | <h2><a name= "2.8">2.8 - After upgrading OpenSSH I lost SSH2 support.</a></h2> | ||
484 | |||
485 | <p> | ||
486 | Between versions changes can be made to <i>sshd_config</i> or | ||
487 | <i>ssh_config</i>. You should always check on these changes when upgrading | ||
488 | versions of OpenSSH. After OpenSSH Version 2.3.0 you need to add the | ||
489 | following to your <i>sshd_config</i>: | ||
490 | |||
491 | |||
492 | <blockquote> | ||
493 | <table border=0 width="800"> | ||
494 | <tr> | ||
495 | <td nowrap bgcolor="#EEEEEE"> | ||
496 | <b>HostKey /etc/ssh_host_dsa_key</b><br> | ||
497 | <b>HostKey /etc/ssh_host_rsa_key</b> | ||
498 | </td> | ||
499 | </tr> | ||
500 | </table> | ||
501 | </blockquote> | ||
502 | |||
503 | <h2><a name= "2.9">2.9 - sftp/scp fails at connection, but ssh is OK.</a></h2> | ||
504 | |||
505 | <p> | ||
506 | sftp and/or scp may fail at connection time if you have shell | ||
507 | initialization (.profile, .bashrc, .cshrc, etc) which produces output | ||
508 | for non-interactive sessions. This output confuses the sftp/scp client. | ||
509 | You can verify if your shell is doing this by executing: | ||
510 | |||
511 | <blockquote> | ||
512 | <table border=0 width="800"> | ||
513 | <tr> | ||
514 | <td nowrap bgcolor="#EEEEEE"> | ||
515 | <b>ssh yourhost /usr/bin/true</b> | ||
516 | </td> | ||
517 | </tr> | ||
518 | </table> | ||
519 | </blockquote> | ||
520 | |||
521 | <p> | ||
522 | If the above command produces any output, then you need to modify your | ||
523 | shell initialization. | ||
524 | |||
525 | <h2><a name= "2.10">2.10 - Will you add [foo] to scp?</a></h2> | ||
526 | |||
527 | <p> | ||
528 | Short Answer: no. | ||
529 | |||
530 | <p> | ||
531 | Long Answer: scp is not standardized. The closest thing it has to a | ||
532 | specification is "what rcp does". Since the same command is used on both ends | ||
533 | of the connection, adding features or options risks breaking interoperability with other | ||
534 | implementations. | ||
535 | |||
536 | <p> | ||
537 | New features are more likely in sftp, since the protocol is standardized | ||
538 | (well, a <a href="http://www.ietf.org/html.charters/secsh-charter.html"> | ||
539 | draft standard</a>), extensible, and the client and server are decoupled. | ||
540 | |||
541 | <h2><a name= "2.11">2.11 - How do I use port forwarding?</a></h2> | ||
542 | |||
543 | <p> | ||
544 | If the remote server is running sshd(8), it may be possible to | ||
545 | ``tunnel'' certain services via ssh. This may be desirable, for | ||
546 | example, to encrypt POP or SMTP connections, even though the software | ||
547 | does not directly support encrypted communications. Tunnelling uses | ||
548 | port forwarding to create a connection between the client and server. | ||
549 | The client software must be able to specify a non-standard port to | ||
550 | connect to for this to work. | ||
551 | |||
552 | <p> | ||
553 | The idea is that the user connects to the remote host using ssh, | ||
554 | and specifies which port on the client's machine should be used to | ||
555 | forward connections to the remote server. After that it is possible | ||
556 | to start the service which is to be encrypted (e.g. fetchmail, irc) | ||
557 | on the client machine, specifying the same local port passed to | ||
558 | ssh, and the connection will be tunnelled through ssh. By default, | ||
559 | the system running the forward will only accept connections from | ||
560 | itself. | ||
561 | |||
562 | <p> | ||
563 | The options most relevant to tunnelling are the -L and -R options, | ||
564 | which allow the user to forward connections, the -D option, which | ||
565 | permits dynamic port forwarding, the -g option, which permits other | ||
566 | hosts to use port forwards, and the -f option, which instructs ssh | ||
567 | to put itself in the background after authentication. See the <a | ||
568 | href="http://www.openbsd.org/cgi-bin/man.cgi?query=ssh&sektion=1" | ||
569 | >ssh(1)</a> man page for further details. | ||
570 | |||
571 | <p> | ||
572 | This is an example of tunnelling an IRC session from client machine | ||
573 | ``127.0.0.1'' (localhost) to remote server ``server.example.com'': | ||
574 | |||
575 | <blockquote> | ||
576 | <table border=0 width="800"> | ||
577 | <tr> | ||
578 | <td nowrap bgcolor="#EEEEEE"> | ||
579 | <b>ssh -f -L 1234:server.example.com:6667 server.example.com sleep 10<br> | ||
580 | irc -c '#users' -p 1234 pinky 127.0.0.1</b> | ||
581 | </td> | ||
582 | </tr> | ||
583 | </table> | ||
584 | </blockquote> | ||
585 | |||
586 | <p> | ||
587 | This tunnels a connection to IRC server server.example.com, joining | ||
588 | channel ``#users'', using the nickname ``pinky''. The local port used | ||
589 | in this example is 1234. It does not matter which port is used, as | ||
590 | long as it's greater than 1023 (remember, only root can open sockets on | ||
591 | privileged ports) and doesn't conflict with any ports already in use. | ||
592 | The connection is forwarded to port 6667 on the remote server, since | ||
593 | that's the standard port for IRC services. | ||
594 | |||
595 | <p> | ||
596 | The remote command ``sleep 10'' was specified to allow an amount | ||
597 | of time (10 seconds, in the example) to start the service which is to | ||
598 | be tunnelled. If no connections are made within the time specified, | ||
599 | ssh will exit. If more time is required, the sleep(1) value can be | ||
600 | increased appropriately or, alternatively, the example above could | ||
601 | be added as a function to the user's shell. See ksh(1) and csh(1) | ||
602 | for more details about user-defined functions. | ||
603 | |||
604 | <p> | ||
605 | ssh also has an -N option, convenient for use with port forwarding: | ||
606 | if -N is specified, it is not necessary to specify a remote command | ||
607 | (``sleep 10'' in the example above). However, use of this option | ||
608 | causes ssh to wait around for ever (as opposed to exiting after a | ||
609 | remote command has completed), and the user must take care to manually | ||
610 | kill(1) the process afterwards. | ||
611 | |||
612 | <h2><a name= "2.12">2.12 - My ssh connection freezes or drops out after N minutes of inactivity.</a></h2> | ||
613 | |||
614 | <p> | ||
615 | This is usually the result of a packet filter or NAT device | ||
616 | timing out your TCP connection due to inactivity. You can enable | ||
617 | <b>ClientAliveInterval</b> in the server's <i><a | ||
618 | href="http://www.openbsd.org/cgi-bin/man.cgi?query=sshd_config&sektion=5"> | ||
619 | sshd_config</a></i>, or enable <b>ServerAliveInterval</b> in the | ||
620 | client's <i><a | ||
621 | href="http://www.openbsd.org/cgi-bin/man.cgi?query=ssh_config&sektion=5"> | ||
622 | ssh_config</a></i> (the latter is available in OpenSSH 3.8 and newer). | ||
623 | |||
624 | <p> | ||
625 | Enabling either option and setting the interval for less than the time | ||
626 | it takes to time out your session will ensure that the connection is | ||
627 | kept "fresh" in the device's connection table. | ||
628 | |||
629 | <h2><a name= "2.13">2.13 - How do I use scp to copy a file with a colon in it?</a></h2> | ||
630 | |||
631 | <b><a | ||
632 | href="http://www.openbsd.org/cgi-bin/man.cgi?query=scp&sektion=1"> | ||
633 | scp</a></b> will interpret the component before the colon to be a remote | ||
634 | server name and attempt to connect to it. To prevent this, refer to | ||
635 | the file by a relative or absolute path, eg: | ||
636 | |||
637 | <blockquote> | ||
638 | <table border=0 width="800"> | ||
639 | <tr> | ||
640 | <td nowrap bgcolor="#EEEEEE"> | ||
641 | $ scp ./source:file sshserver: | ||
642 | </td> | ||
643 | </tr> | ||
644 | </table> | ||
645 | </blockquote> | ||
646 | |||
647 | <h2><a name= "2.14">2.14 - Why does OpenSSH report its version to clients?</a></h2> | ||
648 | |||
649 | <p> | ||
650 | OpenSSH, like most SSH implementations, reports its name and version to clients | ||
651 | when they connect, e.g. | ||
652 | </p> | ||
653 | |||
654 | <blockquote> | ||
655 | SSH-2.0-OpenSSH_3.9 | ||
656 | </blockquote> | ||
657 | |||
658 | <p> | ||
659 | This information is used by clients and servers to enable protocol | ||
660 | compatibility tweaks to work around changed, buggy or missing features in | ||
661 | the implementation they are talking to. This protocol feature checking is | ||
662 | still required at present because the SSH protocol has not been yet published | ||
663 | as a RFC and more incompatible changes may be made before this happens. | ||
664 | </p> | ||
665 | |||
666 | <h2><u><a name= "3.0">3.0 - Portable OpenSSH Questions</a></u></h2> | ||
667 | |||
668 | <h2><a name= "3.1">3.1 - Spurious PAM authentication messages in logfiles.</a></h2> | ||
669 | |||
670 | <p> | ||
671 | The portable version of OpenSSH will generate spurious authentication | ||
672 | failures at every login, similar to: | ||
673 | |||
674 | |||
675 | <blockquote> | ||
676 | <table border=0 width="800"> | ||
677 | <tr> | ||
678 | <td nowrap bgcolor="#EEEEEE"> | ||
679 | "<b>authentication failure; (uid=0) -> root for sshd service</b>" | ||
680 | </td> | ||
681 | </tr> | ||
682 | </table> | ||
683 | </blockquote> | ||
684 | |||
685 | <p> | ||
686 | These are generated because OpenSSH first tries to determine whether a | ||
687 | user needs authentication to login (e.g. empty password). Unfortunately | ||
688 | PAM likes to log all authentication events, this one included. | ||
689 | |||
690 | <p> | ||
691 | If it annoys you too much, set "<b>PermitEmptyPasswords no</b>" | ||
692 | in <i>sshd_config</i>. This will quiet the error message at the expense | ||
693 | of disabling logins to accounts with no password set. | ||
694 | This is the default if you use the supplied <i>sshd_config</i> file. | ||
695 | |||
696 | <h2><a name= "3.2">3.2 - Empty passwords not allowed with PAM authentication.</a></h2> | ||
697 | |||
698 | <p> | ||
699 | To enable empty passwords with a version of OpenSSH built with PAM you | ||
700 | must add the flag nullok to the end of the password checking module | ||
701 | in the <i>/etc/pam.d/sshd</i> file. For example: | ||
702 | |||
703 | <blockquote> | ||
704 | <table border=0 width="800"> | ||
705 | <tr> | ||
706 | <td nowrap bgcolor="#EEEEEE"> | ||
707 | auth required/lib/security/pam_unix.so shadow nodelay nullok | ||
708 | </td> | ||
709 | </tr> | ||
710 | </table> | ||
711 | </blockquote> | ||
712 | |||
713 | <p> | ||
714 | This must be done in addition to setting "<b>PermitEmptyPasswords | ||
715 | yes</b>" in the <i>sshd_config</i> file. | ||
716 | |||
717 | <p> | ||
718 | There is one caveat when using empty passwords with PAM authentication: | ||
719 | PAM will allow any password when authenticating an account with an empty | ||
720 | password. This breaks the check that | ||
721 | <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=sshd&sektion=8">sshd(8)</a> | ||
722 | uses to determine whether an account has no password set and grant | ||
723 | users access to the account regardless of the policy specified by | ||
724 | <b>PermitEmptyPasswords</b>. For this reason, it is recommended that you | ||
725 | do not add the <b>nullok</b> directive to your PAM configuration file | ||
726 | unless you specifically wish to allow empty passwords. | ||
727 | |||
728 | |||
729 | <h2><a name= "3.3">3.3 - ssh(1) takes a long time to connect or log | ||
730 | in</a></h2> | ||
731 | |||
732 | <p> | ||
733 | Large delays (more that 10 seconds) are typically caused a problem with | ||
734 | name resolution: | ||
735 | <ul> | ||
736 | <li>Some versions of glibc (notably glibc 2.1 shipped with Red Hat 6.1) | ||
737 | can take a long time to resolve "IPv6 or IPv4" addresses from domain | ||
738 | names. This can be worked around with by specifying <b>AddressFamily | ||
739 | inet</b> option in <i>ssh_config</i>.</li> | ||
740 | |||
741 | <li>There may be a DNS lookup problem, either at the client or server. | ||
742 | You can use the <code>nslookup</code> command to check this on both client | ||
743 | and server by looking up the other end's name and IP address. In | ||
744 | addition, on the server look up the name returned by the client's | ||
745 | IP-name lookup. You can disable most of the server-side lookups by | ||
746 | setting <b>UseDNS no</b> in <i>sshd_config</i>.</li> | ||
747 | </ul> | ||
748 | |||
749 | <p> | ||
750 | Delays less than 10 seconds can have other causes. | ||
751 | |||
752 | <ul> | ||
753 | |||
754 | <li>OpenSSH releases prior to 3.8 had an <i>moduli</i> file with | ||
755 | moduli that were just smaller than what sshd would look for, and | ||
756 | as a result, sshd would end up using moduli significantly larger | ||
757 | than requested, which resulted in a speed penalty. Replacing the | ||
758 | <i>moduli</i> file will resolve this (note that in most cases this | ||
759 | file will not be replaced during an upgrade and must be replaced | ||
760 | manually).</li> | ||
761 | |||
762 | <li>OpenSSH releases prior to 3.8 had a flaw in <code>ssh</code> that | ||
763 | would cause it to request moduli larger than intended (which when | ||
764 | combined with the above resulted in significant slowdowns). | ||
765 | Upgrading the client to 3.8 or higher will resolve this issue.</li> | ||
766 | |||
767 | <li>If either the client or server lack a kernel-based random number | ||
768 | device (eg Solaris < 9, AIX < 5.2, HP-UX < 11.11) and no | ||
769 | substitute is available (eg <a href= | ||
770 | "ftp://ftp.ayamura.org/pub/prngd/">prngd</a>) it's possible that | ||
771 | one of the programs called by <code>ssh-rand-helper</code> to | ||
772 | generate entropy is hanging. This can be investigated by running | ||
773 | it in debug mode: | ||
774 | |||
775 | <blockquote> | ||
776 | <table border=0 width="800"> | ||
777 | <tr> | ||
778 | <td nowrap bgcolor="#EEEEEE"> | ||
779 | /usr/local/libexec/ssh-rand-helper -vvv | ||
780 | </td> | ||
781 | </tr> | ||
782 | </table> | ||
783 | </blockquote> | ||
784 | |||
785 | Any significant delays should be investigated and rectified, or the | ||
786 | corresponding commands should be removed from <i>ssh_prng_cmds</i>. | ||
787 | </li> | ||
788 | |||
789 | </ul> | ||
790 | |||
791 | <h3>How slow is "slow"?</h3> | ||
792 | Under normal conditions, the speed of SSH logins is dependant on | ||
793 | CPU speed of client and server. For comparison the following are | ||
794 | typical connect times for <code>time ssh localhost true</code> | ||
795 | with a 1024-bit RSA key on otherwise unloaded hosts. OpenSSH and | ||
796 | OpenSSL were compiled with gcc 3.3.x. | ||
797 | |||
798 | <p> | ||
799 | <table> | ||
800 | <tr><th>CPU</th><th>Time (SSHv1)<a href="#3.3fn1">[1]</a></th> | ||
801 | <th>Time (SSHv2)</th></tr> | ||
802 | <tr><td>170MHz SPARC/sun4m</td><td>0.74 sec</td><td>1.25 sec</td></tr> | ||
803 | <tr><td>236MHz HPPA/8200<a href="#3.3fn2">[2]</a></td><td>0.44 sec</td> | ||
804 | <td>0.79 sec</td></tr> | ||
805 | <tr><td>375MHz PowerPC/604e</td><td>0.38 sec</td><td>0.51 sec</td></tr> | ||
806 | <tr><td>933MHz VIA Ezra</td><td>0.34 sec</td><td>0.44 sec</td></tr> | ||
807 | <tr><td>2.1GHz Athlon XP 2600+</td><td>0.14 sec</td><td>0.22 sec</td></tr> | ||
808 | </table> | ||
809 | |||
810 | <br> | ||
811 | |||
812 | <a name="3.3fn1">[1]</a> The SSHv1 protocol is faster but is | ||
813 | cryptographically weaker than SSHv2.<br> | ||
814 | |||
815 | <a name="3.3fn2">[2]</a> At the time of writing, gcc generates | ||
816 | relatively slow code on HPPA for RSA and Diffie-Hellman operations | ||
817 | (see <a href= "http://gcc.gnu.org/bugzilla/show_bug.cgi?id=7625">gcc | ||
818 | bug #7625</a> and <a | ||
819 | href="http://marc.info/?l=openssh-unix-dev&m=102646106016694"> | ||
820 | discussion on openssh-unix-dev</a>). | ||
821 | |||
822 | <h2><a name= "3.4">3.4 - "Can't locate module net-pf-10" messages in log under Linux.</a></h2> | ||
823 | |||
824 | <p> | ||
825 | The Linux kernel is looking (via modprobe) for protocol family 10 (IPv6). | ||
826 | Either load the appropriate kernel module, enter the correct alias in | ||
827 | <i>/etc/modules.conf</i> or disable IPv6 in <i>/etc/modules.conf</i>. | ||
828 | |||
829 | |||
830 | <p> | ||
831 | For some silly reason <i>/etc/modules.conf</i> may also be named | ||
832 | <i>/etc/conf.modules</i>. | ||
833 | |||
834 | |||
835 | <h2><a name= "3.5">3.5 - Password authentication doesn't work (eg on Slackware 7.0 or Red Hat 6.x)</a></h2> | ||
836 | |||
837 | <p> | ||
838 | If the password is correct password the login is still denied, the | ||
839 | usual cause is that the system is configured to use MD5-type passwords | ||
840 | but the | ||
841 | <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=crypt&sektion=3" | ||
842 | >crypt(3)</a> function used by sshd doesn't understand them. | ||
843 | |||
844 | <p> | ||
845 | Affected accounts will have password strings in <i>/etc/passwd</i> | ||
846 | or <i>/etc/shadow</i> that start with <b>$1$</b>. | ||
847 | If password authentication fails for new accounts or accounts with | ||
848 | recently changed passwords, but works for old accounts, this is the | ||
849 | likely culprit. | ||
850 | |||
851 | <p> | ||
852 | The underlying cause is that some versions of OpenSSL have a crypt(3) | ||
853 | function that does not understand MD5 passwords, and the link order of | ||
854 | sshd means that OpenSSL's crypt(3) is used instead of the system's. | ||
855 | OpensSSH's configure attempts to correct for this but is not always | ||
856 | successful. | ||
857 | |||
858 | <p> | ||
859 | There are several possible solutions: | ||
860 | |||
861 | <ul> | ||
862 | <li> | ||
863 | <p> | ||
864 | Enable sshd's built-in support for MD5 passwords at build time. | ||
865 | |||
866 | <blockquote> | ||
867 | <table border=0 width="800"> | ||
868 | <tr> | ||
869 | <td nowrap bgcolor="#EEEEEE"> | ||
870 | ./configure --with-md5-passwords [options] | ||
871 | </td> | ||
872 | </tr> | ||
873 | </table> | ||
874 | </blockquote> | ||
875 | |||
876 | This is safe even if you have both types of encryption as sshd will | ||
877 | select the correct algorithm for each account automatically. | ||
878 | |||
879 | <li> | ||
880 | <p> | ||
881 | If your system has a separate libcrypt library (eg Slackware 7) then you | ||
882 | can manually add -lcrypt to the LIBS list so it's used instead of | ||
883 | OpenSSL's: | ||
884 | |||
885 | <blockquote> | ||
886 | <table border=0 width="800"> | ||
887 | <tr> | ||
888 | <td nowrap bgcolor="#EEEEEE"> | ||
889 | LIBS=-lcrypt ./configure [options] | ||
890 | </td> | ||
891 | </tr> | ||
892 | </table> | ||
893 | </blockquote> | ||
894 | |||
895 | <li> | ||
896 | <p> | ||
897 | If your platforms supports PAM, you may configure sshd to use it | ||
898 | (see <a href= "#3.15" >section 3.15</a>). This will mean that sshd will | ||
899 | not verify passwords itself but will defer to the configured PAM modules. | ||
900 | </ul> | ||
901 | |||
902 | <h2><a name= "3.6">3.6 - Configure or sshd(8) complain about lack of RSA or DSA support</a></h2> | ||
903 | |||
904 | <p> | ||
905 | Ensure that your OpenSSL libraries have been built to include RSA or DSA | ||
906 | support either internally or through RSAref. | ||
907 | |||
908 | |||
909 | <h2><a name= "3.7">3.7 - "scp: command not found" errors</a></h2> | ||
910 | |||
911 | <p> | ||
912 | <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=scp&sektion=1">scp(1)</a> | ||
913 | must be in the default PATH on both the client and the server. You may | ||
914 | need to use the <b>--with-default-path</b> option to specify a custom | ||
915 | path to search on the server. This option replaces the default path, | ||
916 | so you need to specify all the current directories on your path as well | ||
917 | as where you have installed scp. For example: | ||
918 | |||
919 | <blockquote> | ||
920 | <table border=0 width="800"> | ||
921 | <tr> | ||
922 | <td nowrap bgcolor="#EEEEEE"> | ||
923 | $ <b>./configure --with-default-path=/bin:/usr/bin:/usr/local/bin:/path/to/scp</b> | ||
924 | </td> | ||
925 | </tr> | ||
926 | </table> | ||
927 | </blockquote> | ||
928 | |||
929 | <p> | ||
930 | Note that configuration by the server's admin will take precedence over the | ||
931 | setting of <b>--with-default-path</b>. This includes resetting PATH in | ||
932 | <i>/etc/profile</i>, PATH in <i>/etc/environment</i> on AIX, or (for 3.7p1 and | ||
933 | above) setting PATH or SUPATH in <i>/etc/default/login</i> on Solaris or | ||
934 | Reliant Unix. | ||
935 | |||
936 | <h2><a name= "3.8">3.8 - Unable to read passphrase</a></h2> | ||
937 | |||
938 | <p> | ||
939 | Some operating systems set <i>/dev/tty</i> with incorrect modes, causing | ||
940 | the reading of passwords to fail with the following error: | ||
941 | |||
942 | <blockquote> | ||
943 | <table border=0 width="800"> | ||
944 | <tr> | ||
945 | <td nowrap bgcolor="#EEEEEE"> | ||
946 | You have no controlling tty. Cannot read passphrase. | ||
947 | </td> | ||
948 | </tr> | ||
949 | </table> | ||
950 | </blockquote> | ||
951 | |||
952 | <p> | ||
953 | The solution to this is to reset the permissions on <i>/dev/tty</i> | ||
954 | to mode 0666 and report the error as a bug to your OS vendor. | ||
955 | |||
956 | |||
957 | <h2><a name= "3.9">3.9 - 'configure' missing or make fails</a></h2> | ||
958 | |||
959 | <p> | ||
960 | If there is no 'configure' file in the tar.gz file that you downloaded | ||
961 | or make fails with "missing separator" errors, you have probably | ||
962 | downloaded the OpenBSD distribution of OpenSSH and are attempting to | ||
963 | compile it on another platform. Please refer to the information on the | ||
964 | <a href="http://www.openssh.org/portable.html">portable version</a>. | ||
965 | |||
966 | |||
967 | <h2><a name= "3.10">3.10 - Hangs when exiting ssh</a></h2> | ||
968 | |||
969 | <p> | ||
970 | OpenSSH may hang when exiting. This can occur when there is an active | ||
971 | background process. This is known to occur on Linux and HP-UX. | ||
972 | The problem can be verified by doing the following: | ||
973 | |||
974 | <blockquote> | ||
975 | <table border=0 width="800"> | ||
976 | <tr> | ||
977 | <td nowrap bgcolor="#EEEEEE"> | ||
978 | $ <b>sleep 20 & exit</b> | ||
979 | </td> | ||
980 | </tr> | ||
981 | </table> | ||
982 | </blockquote> | ||
983 | |||
984 | Try to use this instead: | ||
985 | <blockquote> | ||
986 | <table border=0 width="800"> | ||
987 | <tr> | ||
988 | <td nowrap bgcolor="#EEEEEE"> | ||
989 | $ <b>sleep 20 < /dev/null > /dev/null 2>&1 &</b> | ||
990 | </td> | ||
991 | </tr> | ||
992 | </table> | ||
993 | </blockquote> | ||
994 | |||
995 | <p> | ||
996 | A work around for bash users is to place <b>"shopt -s huponexit"</b> | ||
997 | in either /etc/bashrc or ~/.bashrc. Otherwise, consult your shell's | ||
998 | man page for an option to enable it to send a HUP signal to active | ||
999 | jobs when exiting. See <a | ||
1000 | href="http://bugzilla.mindrot.org/show_bug.cgi?id=52">bug #52</a> | ||
1001 | for other workarounds. | ||
1002 | |||
1003 | <h2><a name= "3.11">3.11 - Why does ssh hang on exit?</a></h2> | ||
1004 | |||
1005 | <p> | ||
1006 | When executing | ||
1007 | <blockquote> | ||
1008 | <table border=0 width="800"> | ||
1009 | <tr> | ||
1010 | <td nowrap bgcolor="#EEEEEE"> | ||
1011 | $ <b>ssh host command</b> | ||
1012 | </td> | ||
1013 | </tr> | ||
1014 | </table> | ||
1015 | </blockquote> | ||
1016 | ssh <b>needs</b> to hang, because it needs to wait: | ||
1017 | <ul> | ||
1018 | <li> | ||
1019 | until it can be sure that <code>command</code> does not need | ||
1020 | more input. | ||
1021 | <li> | ||
1022 | until it can be sure that <code>command</code> does not produce | ||
1023 | more output. | ||
1024 | <li> | ||
1025 | until <code>command</code> exits because sshd needs to tell | ||
1026 | the exit status from <code>command</code> to ssh. | ||
1027 | </ul> | ||
1028 | <p> | ||
1029 | |||
1030 | <h2><a name= "3.12">3.12 - I upgraded to OpenSSH 3.1 and X11 | ||
1031 | forwarding stopped working.</a></h2> | ||
1032 | |||
1033 | Starting with OpenSSH 3.1, the sshd x11 forwarding server listens on | ||
1034 | localhost by default; see the sshd <b>X11UseLocalhost</b> option to | ||
1035 | revert to prior behaviour if your older X11 clients do not function | ||
1036 | with this configuration.<p> | ||
1037 | |||
1038 | In general, X11 clients using X11 R6 should work with the default | ||
1039 | setting. Some vendors, including HP, ship X11 clients with R6 | ||
1040 | and R5 libs, so some clients will work, and others will not work. | ||
1041 | This is true for HP-UX 11.X.<p> | ||
1042 | |||
1043 | <h2><a name= "3.13">3.13 - I upgraded to OpenSSH 3.8 and some | ||
1044 | X11 programs stopped working.</a></h2> | ||
1045 | |||
1046 | <p> | ||
1047 | As documented in the <a href="http://www.openssh.org/txt/release-3.8">3.8 release notes</a>, | ||
1048 | <code>ssh</code> will now use untrusted X11 cookies by | ||
1049 | default. The previous behaviour can be restored by setting | ||
1050 | <b>ForwardX11Trusted yes</b> in <i>ssh_config</i>. | ||
1051 | |||
1052 | <p> | ||
1053 | Possible symptoms include:<br> | ||
1054 | <code>BadWindow (invalid Window parameter)<br> | ||
1055 | BadAccess (attempt to access private resource denied)<br> | ||
1056 | X Error of failed request: BadAtom (invalid Atom parameter)<br> | ||
1057 | Major opcode of failed request: 20 (X_GetProperty)<br></code> | ||
1058 | |||
1059 | <h2><a name= "3.14">3.14 - I copied my public key to authorized_keys | ||
1060 | but public-key authentication still doesn't work.</a></h2> | ||
1061 | |||
1062 | <p> | ||
1063 | Typically this is caused by the file permissions on $HOME, $HOME/.ssh or | ||
1064 | $HOME/.ssh/authorized_keys being more permissive than sshd allows by default. | ||
1065 | |||
1066 | <p> | ||
1067 | In this case, it can be solved by executing the following on the server. | ||
1068 | <blockquote> | ||
1069 | <table border=0 width="800"> | ||
1070 | <tr> | ||
1071 | <td nowrap bgcolor="#EEEEEE"> | ||
1072 | $ <b>chmod go-w $HOME $HOME/.ssh</b><br> | ||
1073 | $ <b>chmod 600 $HOME/.ssh/authorized_keys</b> | ||
1074 | </td> | ||
1075 | </tr> | ||
1076 | </table> | ||
1077 | </blockquote> | ||
1078 | |||
1079 | <p> | ||
1080 | If this is not possible for some reason, an alternative is to set | ||
1081 | <b>StrictModes no</b> in <i>sshd_config</i>, however this is not | ||
1082 | recommended. | ||
1083 | |||
1084 | <h2><a name= "3.15">3.15 - OpenSSH versions and PAM behaviour.</a></h2> | ||
1085 | |||
1086 | Portable OpenSSH has a configure-time option to enable sshd's use of the | ||
1087 | <a href="http://www.opengroup.org/onlinepubs/008329799/">PAM</a> | ||
1088 | (Pluggable Authentication Modules) interface. | ||
1089 | |||
1090 | <blockquote> | ||
1091 | <table border=0 width="800"> | ||
1092 | <tr> | ||
1093 | <td nowrap bgcolor="#EEEEEE"> | ||
1094 | ./configure --with-pam [options] | ||
1095 | </td> | ||
1096 | </tr> | ||
1097 | </table> | ||
1098 | </blockquote> | ||
1099 | |||
1100 | To use PAM at all, this option must be provided at build time. | ||
1101 | The run-time behaviour when PAM is built in varies with the version of | ||
1102 | Portable OpenSSH, and on later versions it must also be enabled by setting | ||
1103 | <b>UsePAM</b> to <b>yes</b> in <i>sshd_config</i>. | ||
1104 | |||
1105 | <p> | ||
1106 | The behaviour of the relevant authentications options when PAM support is built | ||
1107 | in is summarised by the following table. | ||
1108 | |||
1109 | <p> | ||
1110 | <table border="1"> | ||
1111 | <tr> <th>Version</th> <th>UsePAM</th> <th>PasswordAuthentication</th> <th>ChallengeResponseAuthentication</th> </tr> | ||
1112 | <tr> | ||
1113 | <td><=3.6.1p2</td> | ||
1114 | <td>Not applicable</td> | ||
1115 | <td>Uses PAM</td> | ||
1116 | <td>Uses PAM if <b>PAMAuthenticationViaKbdInt</b> is enabled</td> | ||
1117 | </tr> | ||
1118 | <tr> | ||
1119 | <td>3.7p1 - 3.7.1p1</td> | ||
1120 | <td>Defaults to <b>yes</b></td> | ||
1121 | <td>Does not use PAM</td> | ||
1122 | <td>Uses PAM if <b>UsePAM</b> is enabled</td> | ||
1123 | </tr> | ||
1124 | <tr> | ||
1125 | <td>3.7.1p2 - 3.8.1p1</td> | ||
1126 | <td>Defaults to <b>no</b></td> | ||
1127 | <td>Does not use PAM <a href="#3.15fn1">[1]</a></td> | ||
1128 | <td>Uses PAM if <b>UsePAM</b> is enabled</td> | ||
1129 | </tr> | ||
1130 | <tr> | ||
1131 | <td>3.9p1</td> | ||
1132 | <td>Defaults to <b>no</b></td> | ||
1133 | <td>Uses PAM if <b>UsePAM</b> is enabled</td> | ||
1134 | <td>Uses PAM if <b>UsePAM</b> is enabled</td> | ||
1135 | </tr> | ||
1136 | </table> | ||
1137 | <p> | ||
1138 | |||
1139 | <a name= "3.15fn1">[1]</a> Some vendors, notably Redhat/Fedora, have | ||
1140 | backported the PasswordAuthentication from 3.9p1 to their 3.8x based | ||
1141 | packages. If you're using a vendor-supplied package then consult their | ||
1142 | documentation. | ||
1143 | |||
1144 | <p> | ||
1145 | OpenSSH Portable's PAM interface still has problems with a few modules, | ||
1146 | however we hope that this number will reduce in the future. As at the | ||
1147 | 3.9p1 release, the known problems are: | ||
1148 | |||
1149 | <ul> | ||
1150 | <li>Modules relying on module-private data (eg pam_dhkeys, pam_krb5, AFS) | ||
1151 | may fail to correctly establish credentials (bug <a | ||
1152 | href="http://bugzilla.mindrot.org/show_bug.cgi?id=688">#688</a>) when | ||
1153 | authenticating via <b>ChallengeResponseAuthentication</b>. | ||
1154 | <b>PasswordAuthentication</b> with 3.9p1 and above should work. | ||
1155 | </ul> | ||
1156 | |||
1157 | You can also check <a | ||
1158 | href="http://bugzilla.mindrot.org/buglist.cgi?product=Portable+OpenSSH&bug_status=RESOLVED&bug_status=NEW&bug_status=ACCEPTED&component=PAM+support" | ||
1159 | >bugzilla for current PAM issues</a>. | ||
1160 | |||
1161 | <h2><a name= "3.16">3.16 - Why doesn't "w" or "who" on AIX 5.x show users | ||
1162 | logged in via ssh?</a></h2> | ||
1163 | |||
1164 | Between AIX 4.3.3 and AIX 5.x, the format of the wtmp struct changed. This | ||
1165 | means that sshd binaries built on AIX 4.x will not correctly write wtmp | ||
1166 | entries when run on AIX 5.x. This can be fixed by simply recompiling | ||
1167 | sshd on an AIX 5.x system and using that. | ||
1168 | |||
1169 | <hr> | ||
1170 | <a href="http://www.openssh.org/index.html"><img height=24 width=24 src="back.gif" border=0 alt=OpenSSH></a> | ||
1171 | <a href="mailto:www@openbsd.org">www@openbsd.org</a> | ||
1172 | <br> | ||
1173 | <small>$OpenBSD: faq.html,v 1.107 2007/06/20 18:14:15 miod Exp $</small> | ||
1174 | |||
1175 | </body> | ||
1176 | </html> | ||
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..3871e88ba --- /dev/null +++ b/debian/moduli.5 | |||
@@ -0,0 +1,157 @@ | |||
1 | .\" $OpenBSD: moduli.5,v 1.11 2007/05/31 19:19:58 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 December 24 2007 | ||
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-Germain (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 the most significant bit (0 to M). | ||
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 | .Pp | ||
148 | New moduli may be generated using the | ||
149 | .Xr ssh-keygen 1 | ||
150 | tool. | ||
151 | .Sh FILES | ||
152 | .Bl -tag -width /etc/ssh/moduli -compact | ||
153 | .It Pa /etc/ssh/moduli | ||
154 | .El | ||
155 | .Sh SEE ALSO | ||
156 | .Xr ssh-keygen 1 , | ||
157 | .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.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..d977cb918 --- /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 | printf '\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..9680d3427 --- /dev/null +++ b/debian/openssh-server.default | |||
@@ -0,0 +1,11 @@ | |||
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= | ||
6 | |||
7 | # OOM-killer adjustment for sshd (see | ||
8 | # linux/Documentation/filesystems/proc.txt; lower values reduce likelihood | ||
9 | # of being killed, while -17 means the OOM-killer will ignore sshd; set to | ||
10 | # the empty string to skip adjustment) | ||
11 | SSHD_OOM_ADJUST=-17 | ||
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..01f00dc0a --- /dev/null +++ b/debian/openssh-server.init | |||
@@ -0,0 +1,159 @@ | |||
1 | #! /bin/sh | ||
2 | |||
3 | ### BEGIN INIT INFO | ||
4 | # Provides: sshd | ||
5 | # Required-Start: $remote_fs $syslog | ||
6 | # Required-Stop: $remote_fs $syslog | ||
7 | # Default-Start: 2 3 4 5 | ||
8 | # Default-Stop: 1 | ||
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 | export SSHD_OOM_ADJUST=-17 | ||
20 | if test -f /etc/default/ssh; then | ||
21 | . /etc/default/ssh | ||
22 | fi | ||
23 | |||
24 | . /lib/lsb/init-functions | ||
25 | |||
26 | if [ -n "$2" ]; then | ||
27 | SSHD_OPTS="$SSHD_OPTS $2" | ||
28 | fi | ||
29 | |||
30 | # Are we running from init? | ||
31 | run_by_init() { | ||
32 | ([ "$previous" ] && [ "$runlevel" ]) || [ "$runlevel" = S ] | ||
33 | } | ||
34 | |||
35 | check_for_no_start() { | ||
36 | # forget it if we're trying to start, and /etc/ssh/sshd_not_to_be_run exists | ||
37 | if [ -e /etc/ssh/sshd_not_to_be_run ]; then | ||
38 | if [ "$1" = log_end_msg ]; then | ||
39 | log_end_msg 0 | ||
40 | fi | ||
41 | if ! run_by_init; then | ||
42 | log_action_msg "OpenBSD Secure Shell server not in use (/etc/ssh/sshd_not_to_be_run)" | ||
43 | fi | ||
44 | exit 0 | ||
45 | fi | ||
46 | } | ||
47 | |||
48 | check_dev_null() { | ||
49 | if [ ! -c /dev/null ]; then | ||
50 | if [ "$1" = log_end_msg ]; then | ||
51 | log_end_msg 1 || true | ||
52 | fi | ||
53 | if ! run_by_init; then | ||
54 | log_action_msg "/dev/null is not a character device!" | ||
55 | fi | ||
56 | exit 1 | ||
57 | fi | ||
58 | } | ||
59 | |||
60 | check_privsep_dir() { | ||
61 | # Create the PrivSep empty dir if necessary | ||
62 | if [ ! -d /var/run/sshd ]; then | ||
63 | mkdir /var/run/sshd | ||
64 | chmod 0755 /var/run/sshd | ||
65 | fi | ||
66 | } | ||
67 | |||
68 | check_config() { | ||
69 | if [ ! -e /etc/ssh/sshd_not_to_be_run ]; then | ||
70 | /usr/sbin/sshd -t || exit 1 | ||
71 | fi | ||
72 | } | ||
73 | |||
74 | export PATH="${PATH:+$PATH:}/usr/sbin:/sbin" | ||
75 | |||
76 | case "$1" in | ||
77 | start) | ||
78 | check_privsep_dir | ||
79 | check_for_no_start | ||
80 | check_dev_null | ||
81 | log_daemon_msg "Starting OpenBSD Secure Shell server" "sshd" | ||
82 | if start-stop-daemon --start --quiet --oknodo --pidfile /var/run/sshd.pid --exec /usr/sbin/sshd -- $SSHD_OPTS; then | ||
83 | log_end_msg 0 | ||
84 | else | ||
85 | log_end_msg 1 | ||
86 | fi | ||
87 | ;; | ||
88 | stop) | ||
89 | log_daemon_msg "Stopping OpenBSD Secure Shell server" "sshd" | ||
90 | if start-stop-daemon --stop --quiet --oknodo --pidfile /var/run/sshd.pid; then | ||
91 | log_end_msg 0 | ||
92 | else | ||
93 | log_end_msg 1 | ||
94 | fi | ||
95 | ;; | ||
96 | |||
97 | reload|force-reload) | ||
98 | check_for_no_start | ||
99 | check_config | ||
100 | log_daemon_msg "Reloading OpenBSD Secure Shell server's configuration" "sshd" | ||
101 | if start-stop-daemon --stop --signal 1 --quiet --oknodo --pidfile /var/run/sshd.pid --exec /usr/sbin/sshd; then | ||
102 | log_end_msg 0 | ||
103 | else | ||
104 | log_end_msg 1 | ||
105 | fi | ||
106 | ;; | ||
107 | |||
108 | restart) | ||
109 | check_privsep_dir | ||
110 | check_config | ||
111 | log_daemon_msg "Restarting OpenBSD Secure Shell server" "sshd" | ||
112 | start-stop-daemon --stop --quiet --oknodo --retry 30 --pidfile /var/run/sshd.pid | ||
113 | check_for_no_start log_end_msg | ||
114 | check_dev_null log_end_msg | ||
115 | if start-stop-daemon --start --quiet --oknodo --pidfile /var/run/sshd.pid --exec /usr/sbin/sshd -- $SSHD_OPTS; then | ||
116 | log_end_msg 0 | ||
117 | else | ||
118 | log_end_msg 1 | ||
119 | fi | ||
120 | ;; | ||
121 | |||
122 | try-restart) | ||
123 | check_privsep_dir | ||
124 | check_config | ||
125 | log_daemon_msg "Restarting OpenBSD Secure Shell server" "sshd" | ||
126 | set +e | ||
127 | start-stop-daemon --stop --quiet --retry 30 --pidfile /var/run/sshd.pid | ||
128 | RET="$?" | ||
129 | set -e | ||
130 | case $RET in | ||
131 | 0) | ||
132 | # old daemon stopped | ||
133 | check_for_no_start log_end_msg | ||
134 | check_dev_null log_end_msg | ||
135 | if start-stop-daemon --start --quiet --oknodo --pidfile /var/run/sshd.pid --exec /usr/sbin/sshd -- $SSHD_OPTS; then | ||
136 | log_end_msg 0 | ||
137 | else | ||
138 | log_end_msg 1 | ||
139 | fi | ||
140 | ;; | ||
141 | 1) | ||
142 | # daemon not running | ||
143 | log_progress_msg "(not running)" | ||
144 | log_end_msg 0 | ||
145 | ;; | ||
146 | *) | ||
147 | # failed to stop | ||
148 | log_progress_msg "(failed to stop)" | ||
149 | log_end_msg 1 | ||
150 | ;; | ||
151 | esac | ||
152 | ;; | ||
153 | |||
154 | *) | ||
155 | log_action_msg "Usage: /etc/init.d/ssh {start|stop|reload|force-reload|restart|try-restart}" | ||
156 | exit 1 | ||
157 | esac | ||
158 | |||
159 | 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..b7ea210c4 --- /dev/null +++ b/debian/openssh-server.postinst | |||
@@ -0,0 +1,479 @@ | |||
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 | rename_config_option() { | ||
101 | oldoption="$1" | ||
102 | newoption="$2" | ||
103 | |||
104 | value="$(get_config_option "$oldoption")" | ||
105 | [ "$value" ] || return 0 | ||
106 | |||
107 | perl -le ' | ||
108 | $oldoption = $ARGV[0]; $newoption = $ARGV[1]; | ||
109 | while (<STDIN>) { | ||
110 | chomp; | ||
111 | (my $match = $_) =~ s/\s+/ /g; | ||
112 | # TODO: actually only one "=" allowed after option | ||
113 | if ($match =~ s/^(\s*)\Q$oldoption\E([[:space:]=]+)/$1$newoption$2/i) { | ||
114 | $_ = $match; | ||
115 | } | ||
116 | print; | ||
117 | }' \ | ||
118 | "$oldoption" "$newoption" \ | ||
119 | < /etc/ssh/sshd_config > /etc/ssh/sshd_config.dpkg-new | ||
120 | chown --reference /etc/ssh/sshd_config /etc/ssh/sshd_config.dpkg-new | ||
121 | chmod --reference /etc/ssh/sshd_config /etc/ssh/sshd_config.dpkg-new | ||
122 | mv /etc/ssh/sshd_config.dpkg-new /etc/ssh/sshd_config | ||
123 | } | ||
124 | |||
125 | |||
126 | remove_obsolete_gssapi() { | ||
127 | disable_config_option GSSAPINoMICAuthentication | ||
128 | disable_config_option GSSUseSessionCCache | ||
129 | disable_config_option GSSAPIUseSessionCredCache | ||
130 | } | ||
131 | |||
132 | |||
133 | host_keys_required() { | ||
134 | hostkeys="$(get_config_option HostKey)" | ||
135 | if [ "$hostkeys" ]; then | ||
136 | echo "$hostkeys" | ||
137 | else | ||
138 | # No HostKey directives at all, so the server picks some | ||
139 | # defaults depending on the setting of Protocol. | ||
140 | protocol="$(get_config_option Protocol)" | ||
141 | [ "$protocol" ] || protocol=1,2 | ||
142 | if echo "$protocol" | grep 1 >/dev/null; then | ||
143 | echo /etc/ssh/ssh_host_key | ||
144 | fi | ||
145 | if echo "$protocol" | grep 2 >/dev/null; then | ||
146 | echo /etc/ssh/ssh_host_rsa_key | ||
147 | echo /etc/ssh/ssh_host_dsa_key | ||
148 | fi | ||
149 | fi | ||
150 | } | ||
151 | |||
152 | |||
153 | create_key() { | ||
154 | msg="$1" | ||
155 | shift | ||
156 | hostkeys="$1" | ||
157 | shift | ||
158 | file="$1" | ||
159 | shift | ||
160 | |||
161 | if echo "$hostkeys" | grep -x "$file" >/dev/null && \ | ||
162 | [ ! -f "$file" ] ; then | ||
163 | echo -n $msg | ||
164 | ssh-keygen -q -f "$file" -N '' "$@" | ||
165 | echo | ||
166 | if type restorecon >/dev/null 2>&1; then | ||
167 | restorecon "$file.pub" | ||
168 | fi | ||
169 | fi | ||
170 | } | ||
171 | |||
172 | |||
173 | create_keys() { | ||
174 | hostkeys="$(host_keys_required)" | ||
175 | |||
176 | create_key "Creating SSH1 key; this may take some time ..." \ | ||
177 | "$hostkeys" /etc/ssh/ssh_host_key -t rsa1 | ||
178 | |||
179 | create_key "Creating SSH2 RSA key; this may take some time ..." \ | ||
180 | "$hostkeys" /etc/ssh/ssh_host_rsa_key -t rsa | ||
181 | create_key "Creating SSH2 DSA key; this may take some time ..." \ | ||
182 | "$hostkeys" /etc/ssh/ssh_host_dsa_key -t dsa | ||
183 | } | ||
184 | |||
185 | |||
186 | vulnerable_host_keys() { | ||
187 | # If the admin has explicitly put the vulnerable keys back, we | ||
188 | # assume they can look after themselves. | ||
189 | db_fget ssh/vulnerable_host_keys seen | ||
190 | if [ "$RET" = true ]; then | ||
191 | return 0 | ||
192 | fi | ||
193 | |||
194 | hostkeys="$(host_keys_required)" | ||
195 | vulnerable= | ||
196 | for hostkey in $hostkeys; do | ||
197 | [ -f "$hostkey" ] || continue | ||
198 | if ssh-vulnkey -q "$hostkey"; then | ||
199 | vulnerable="${vulnerable:+$vulnerable }$hostkey" | ||
200 | fi | ||
201 | done | ||
202 | if [ "$vulnerable" ]; then | ||
203 | db_subst ssh/vulnerable_host_keys HOST_KEYS "$vulnerable" | ||
204 | db_input critical ssh/vulnerable_host_keys || true | ||
205 | db_go | ||
206 | for hostkey in $vulnerable; do | ||
207 | mv "$hostkey" "$hostkey.broken" || true | ||
208 | mv "$hostkey.pub" "$hostkey.pub.broken" || true | ||
209 | done | ||
210 | create_keys | ||
211 | fi | ||
212 | } | ||
213 | |||
214 | |||
215 | check_password_auth() { | ||
216 | passwordauth="$(get_config_option PasswordAuthentication)" | ||
217 | crauth="$(get_config_option ChallengeResponseAuthentication)" | ||
218 | if [ "$passwordauth" = no ] && \ | ||
219 | ([ -z "$crauth" ] || [ "$crauth" = yes ]); then | ||
220 | db_get ssh/disable_cr_auth | ||
221 | if [ "$RET" = true ]; then | ||
222 | set_config_option ChallengeResponseAuthentication no | ||
223 | fi | ||
224 | fi | ||
225 | } | ||
226 | |||
227 | |||
228 | move_subsystem_sftp() { | ||
229 | subsystem_sftp="$(get_config_option 'Subsystem sftp')" | ||
230 | if [ "$subsystem_sftp" = /usr/lib/sftp-server ] || \ | ||
231 | [ "$subsystem_sftp" = /usr/libexec/sftp-server ]; then | ||
232 | set_config_option 'Subsystem sftp' /usr/lib/openssh/sftp-server | ||
233 | fi | ||
234 | } | ||
235 | |||
236 | |||
237 | create_sshdconfig() { | ||
238 | if [ -e /etc/ssh/sshd_config ] ; then | ||
239 | if dpkg --compare-versions "$oldversion" lt-nl 1:1.3 ; then | ||
240 | db_get ssh/new_config | ||
241 | if [ "$RET" = "false" ] ; then return 0; fi | ||
242 | else | ||
243 | # Upgrade sshd configuration from a sane version. | ||
244 | |||
245 | if (dpkg --compare-versions "$oldversion" lt-nl 1:3.8p1-1 && \ | ||
246 | ! grep -iq ^UsePAM /etc/ssh/sshd_config) || \ | ||
247 | grep -Eiq '^(PAMAuthenticationViaKbdInt|RhostsAuthentication)' \ | ||
248 | /etc/ssh/sshd_config ; then | ||
249 | # Upgrade from pre-3.7: UsePAM needed to maintain standard | ||
250 | # Debian configuration. | ||
251 | # Note that --compare-versions is sadly not reliable enough | ||
252 | # here due to the package split of ssh into openssh-client | ||
253 | # and openssh-server. The extra grep for some deprecated | ||
254 | # options should with any luck be a good enough heuristic. | ||
255 | echo -n 'Upgrading sshd_config (old version in .dpkg-old) ...' | ||
256 | cp -a /etc/ssh/sshd_config /etc/ssh/sshd_config.dpkg-old | ||
257 | perl -pe 's/^(PAMAuthenticationViaKbdInt|RhostsAuthentication)\b/#$1/i' \ | ||
258 | /etc/ssh/sshd_config > /etc/ssh/sshd_config.dpkg-new | ||
259 | echo >> /etc/ssh/sshd_config.dpkg-new | ||
260 | echo 'UsePAM yes' >> /etc/ssh/sshd_config.dpkg-new | ||
261 | chown --reference /etc/ssh/sshd_config \ | ||
262 | /etc/ssh/sshd_config.dpkg-new | ||
263 | chmod --reference /etc/ssh/sshd_config \ | ||
264 | /etc/ssh/sshd_config.dpkg-new | ||
265 | mv /etc/ssh/sshd_config.dpkg-new /etc/ssh/sshd_config | ||
266 | echo | ||
267 | fi | ||
268 | |||
269 | # An empty version means we're upgrading from before the | ||
270 | # package split, so check. | ||
271 | if dpkg --compare-versions "$oldversion" lt 1:3.8.1p1-11; then | ||
272 | check_password_auth | ||
273 | fi | ||
274 | |||
275 | # libexecdir changed, so fix up 'Subsystem sftp'. | ||
276 | if dpkg --compare-versions "$oldversion" lt 1:4.1p1-1; then | ||
277 | move_subsystem_sftp | ||
278 | fi | ||
279 | |||
280 | # Remove obsolete GSSAPI options. | ||
281 | if dpkg --compare-versions "$oldversion" lt 1:4.3p2-8; then | ||
282 | remove_obsolete_gssapi | ||
283 | fi | ||
284 | |||
285 | # This option was renamed in 3.8p1, but we never took care | ||
286 | # of adjusting the configuration file until now. | ||
287 | if dpkg --compare-versions "$oldversion" lt 1:4.7p1-8; then | ||
288 | rename_config_option KeepAlive TCPKeepAlive | ||
289 | fi | ||
290 | |||
291 | return 0 | ||
292 | fi | ||
293 | fi | ||
294 | |||
295 | #Preserve old sshd_config before generating a new one | ||
296 | if [ -e /etc/ssh/sshd_config ] ; then | ||
297 | mv /etc/ssh/sshd_config /etc/ssh/sshd_config.dpkg-old | ||
298 | fi | ||
299 | |||
300 | cat <<EOF > /etc/ssh/sshd_config | ||
301 | # Package generated configuration file | ||
302 | # See the sshd(8) manpage for details | ||
303 | |||
304 | # What ports, IPs and protocols we listen for | ||
305 | Port 22 | ||
306 | # Use these options to restrict which interfaces/protocols sshd will bind to | ||
307 | #ListenAddress :: | ||
308 | #ListenAddress 0.0.0.0 | ||
309 | Protocol 2 | ||
310 | # HostKeys for protocol version 2 | ||
311 | HostKey /etc/ssh/ssh_host_rsa_key | ||
312 | HostKey /etc/ssh/ssh_host_dsa_key | ||
313 | #Privilege Separation is turned on for security | ||
314 | UsePrivilegeSeparation yes | ||
315 | |||
316 | # Lifetime and size of ephemeral version 1 server key | ||
317 | KeyRegenerationInterval 3600 | ||
318 | ServerKeyBits 768 | ||
319 | |||
320 | # Logging | ||
321 | SyslogFacility AUTH | ||
322 | LogLevel INFO | ||
323 | |||
324 | # Authentication: | ||
325 | LoginGraceTime 120 | ||
326 | PermitRootLogin yes | ||
327 | StrictModes yes | ||
328 | |||
329 | RSAAuthentication yes | ||
330 | PubkeyAuthentication yes | ||
331 | #AuthorizedKeysFile %h/.ssh/authorized_keys | ||
332 | |||
333 | # Don't read the user's ~/.rhosts and ~/.shosts files | ||
334 | IgnoreRhosts yes | ||
335 | # For this to work you will also need host keys in /etc/ssh_known_hosts | ||
336 | RhostsRSAAuthentication no | ||
337 | # similar for protocol version 2 | ||
338 | HostbasedAuthentication no | ||
339 | # Uncomment if you don't trust ~/.ssh/known_hosts for RhostsRSAAuthentication | ||
340 | #IgnoreUserKnownHosts yes | ||
341 | |||
342 | # To enable empty passwords, change to yes (NOT RECOMMENDED) | ||
343 | PermitEmptyPasswords no | ||
344 | |||
345 | # Change to yes to enable challenge-response passwords (beware issues with | ||
346 | # some PAM modules and threads) | ||
347 | ChallengeResponseAuthentication no | ||
348 | |||
349 | # Change to no to disable tunnelled clear text passwords | ||
350 | #PasswordAuthentication yes | ||
351 | |||
352 | # Kerberos options | ||
353 | #KerberosAuthentication no | ||
354 | #KerberosGetAFSToken no | ||
355 | #KerberosOrLocalPasswd yes | ||
356 | #KerberosTicketCleanup yes | ||
357 | |||
358 | # GSSAPI options | ||
359 | #GSSAPIAuthentication no | ||
360 | #GSSAPICleanupCredentials yes | ||
361 | |||
362 | X11Forwarding yes | ||
363 | X11DisplayOffset 10 | ||
364 | PrintMotd no | ||
365 | PrintLastLog yes | ||
366 | TCPKeepAlive yes | ||
367 | #UseLogin no | ||
368 | |||
369 | #MaxStartups 10:30:60 | ||
370 | #Banner /etc/issue.net | ||
371 | |||
372 | # Allow client to pass locale environment variables | ||
373 | AcceptEnv LANG LC_* | ||
374 | |||
375 | Subsystem sftp /usr/lib/openssh/sftp-server | ||
376 | |||
377 | UsePAM yes | ||
378 | EOF | ||
379 | } | ||
380 | |||
381 | fix_statoverride() { | ||
382 | # Remove an erronous override for sshd (we should have overridden ssh) | ||
383 | if [ -x /usr/sbin/dpkg-statoverride ]; then | ||
384 | if dpkg-statoverride --list /usr/sbin/sshd >/dev/null ; then | ||
385 | dpkg-statoverride --remove /usr/sbin/sshd | ||
386 | fi | ||
387 | fi | ||
388 | } | ||
389 | |||
390 | fix_sshd_shell() { | ||
391 | if getent passwd sshd | grep -q ':/bin/false$'; then | ||
392 | usermod -s /usr/sbin/nologin sshd || true | ||
393 | fi | ||
394 | } | ||
395 | |||
396 | setup_sshd_user() { | ||
397 | if ! getent passwd sshd >/dev/null; then | ||
398 | adduser --quiet --system --no-create-home --home /var/run/sshd --shell /usr/sbin/nologin sshd | ||
399 | fi | ||
400 | } | ||
401 | |||
402 | fix_conffile_permissions() { | ||
403 | # Clean up after executable /etc/default/ssh in 1:3.5p1-5. dpkg | ||
404 | # doesn't do this for us; see bug #192981. | ||
405 | chmod 644 /etc/default/ssh | ||
406 | } | ||
407 | |||
408 | remove_old_init_links() { | ||
409 | # Yes, this only works with the SysV init script layout. I know. | ||
410 | # The important thing is that it doesn't actually *break* with | ||
411 | # file-rc ... | ||
412 | if [ -e /etc/rc2.d/S20ssh ]; then | ||
413 | update-rc.d -f ssh remove >/dev/null 2>&1 | ||
414 | fi | ||
415 | rm -f /etc/rc0.d/K20ssh /etc/rc6.d/K20ssh | ||
416 | } | ||
417 | |||
418 | setup_init() { | ||
419 | if [ -x /etc/init.d/ssh ]; then | ||
420 | update-rc.d ssh start 16 2 3 4 5 . stop 84 1 . >/dev/null | ||
421 | if [ -x /usr/sbin/invoke-rc.d ]; then | ||
422 | invoke-rc.d ssh restart | ||
423 | else | ||
424 | /etc/init.d/ssh restart | ||
425 | fi | ||
426 | fi | ||
427 | } | ||
428 | |||
429 | commit_transfer_conffile () { | ||
430 | CONFFILE="$1" | ||
431 | if [ -e "$CONFFILE.moved-by-preinst" ]; then | ||
432 | rm -f "$CONFFILE.moved-by-preinst" | ||
433 | fi | ||
434 | } | ||
435 | |||
436 | commit_mv_conffile () { | ||
437 | OLDCONFFILE="$1" | ||
438 | NEWCONFFILE="$2" | ||
439 | |||
440 | if [ -e "$OLDCONFFILE.moving" ]; then | ||
441 | echo "Preserving user changes to $NEWCONFFILE ..." | ||
442 | mv -f "$NEWCONFFILE" "$NEWCONFFILE.dpkg-new" | ||
443 | mv -f "$OLDCONFFILE.moving" "$NEWCONFFILE" | ||
444 | elif [ -e "$OLDCONFFILE.dpkg-old" ]; then | ||
445 | rm -f "$OLDCONFFILE.dpkg-old" | ||
446 | fi | ||
447 | } | ||
448 | |||
449 | |||
450 | fix_doc_symlink | ||
451 | create_sshdconfig | ||
452 | check_idea_key | ||
453 | create_keys | ||
454 | vulnerable_host_keys | ||
455 | fix_statoverride | ||
456 | if dpkg --compare-versions "$2" lt 1:4.3p2-3; then | ||
457 | fix_sshd_shell | ||
458 | fi | ||
459 | setup_sshd_user | ||
460 | if dpkg --compare-versions "$2" lt 1:3.6.1p2-2; then | ||
461 | fix_conffile_permissions | ||
462 | fi | ||
463 | if dpkg --compare-versions "$2" lt 1:4.6p1-1; then | ||
464 | remove_old_init_links | ||
465 | fi | ||
466 | setup_init | ||
467 | commit_transfer_conffile /etc/default/ssh | ||
468 | commit_transfer_conffile /etc/init.d/ssh | ||
469 | commit_transfer_conffile /etc/pam.d/ssh | ||
470 | commit_mv_conffile /etc/pam.d/ssh /etc/pam.d/sshd | ||
471 | # Renamed to /etc/ssh/moduli in 2.9.9 (!) | ||
472 | if dpkg --compare-versions "$2" lt 1:4.7p1-1; then | ||
473 | rm -f /etc/ssh/primes | ||
474 | fi | ||
475 | |||
476 | |||
477 | db_stop | ||
478 | |||
479 | exit 0 | ||
diff --git a/debian/openssh-server.postrm b/debian/openssh-server.postrm new file mode 100644 index 000000000..30682d6d0 --- /dev/null +++ b/debian/openssh-server.postrm | |||
@@ -0,0 +1,65 @@ | |||
1 | #!/bin/sh -e | ||
2 | |||
3 | #DEBHELPER# | ||
4 | |||
5 | abort_mv_conffile () { | ||
6 | CONFFILE="$1" | ||
7 | |||
8 | if [ ! -e "$CONFFILE" ]; then | ||
9 | if [ -e "$CONFFILE.dpkg-old" ]; then | ||
10 | mv -f "$CONFFILE.dpkg-old" "$CONFFILE" | ||
11 | elif [ -e "$CONFFILE.moving" ]; then | ||
12 | mv -f "$CONFFILE.moving" "$CONFFILE" | ||
13 | fi | ||
14 | fi | ||
15 | } | ||
16 | |||
17 | finish_mv_conffile () { | ||
18 | CONFFILE="$1" | ||
19 | |||
20 | if [ -e "$CONFFILE.dpkg-old" ]; then | ||
21 | rm -f "$CONFFILE.dpkg-old" | ||
22 | fi | ||
23 | } | ||
24 | |||
25 | abort_transfer_conffile () { | ||
26 | CONFFILE="$1" | ||
27 | if [ -e "$CONFFILE.moved-by-preinst" ]; then | ||
28 | echo >&2 "Aborting ownership transfer of conffile $CONFFILE ..." | ||
29 | mv -f "$CONFFILE.moved-by-preinst" "$CONFFILE" | ||
30 | return 0 | ||
31 | fi | ||
32 | } | ||
33 | |||
34 | case $1 in | ||
35 | abort-install|abort-upgrade) | ||
36 | if dpkg --compare-versions "$2" lt 1:4.7p1-4; then | ||
37 | abort_mv_conffile /etc/pam.d/ssh | ||
38 | fi | ||
39 | abort_transfer_conffile /etc/default/ssh | ||
40 | abort_transfer_conffile /etc/init.d/ssh | ||
41 | abort_transfer_conffile /etc/pam.d/ssh | ||
42 | ;; | ||
43 | purge) | ||
44 | # Remove all non-conffiles that ssh might create, so that we | ||
45 | # can smoothly remove /etc/ssh if and only if the user | ||
46 | # hasn't dropped some other files in there. Conffiles have | ||
47 | # already been removed at this point. | ||
48 | rm -f /etc/ssh/ssh_host_key /etc/ssh/ssh_host_key.pub | ||
49 | rm -f /etc/ssh/ssh_host_rsa_key /etc/ssh/ssh_host_rsa_key.pub | ||
50 | rm -f /etc/ssh/ssh_host_dsa_key /etc/ssh/ssh_host_dsa_key.pub | ||
51 | rm -f /etc/ssh/sshd_config | ||
52 | rm -f /etc/ssh/sshd_not_to_be_run | ||
53 | rmdir --ignore-fail-on-non-empty /etc/ssh | ||
54 | |||
55 | update-rc.d ssh remove >/dev/null | ||
56 | |||
57 | if type deluser >/dev/null 2>&1; then | ||
58 | deluser --quiet sshd > /dev/null || true | ||
59 | fi | ||
60 | |||
61 | finish_mv_conffile /etc/pam.d/ssh | ||
62 | ;; | ||
63 | esac | ||
64 | |||
65 | exit 0 | ||
diff --git a/debian/openssh-server.preinst b/debian/openssh-server.preinst new file mode 100644 index 000000000..e6c150ba5 --- /dev/null +++ b/debian/openssh-server.preinst | |||
@@ -0,0 +1,139 @@ | |||
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 | prepare_mv_conffile () { | ||
40 | CONFFILE="$1" | ||
41 | [ -e "$CONFFILE" ] || return 0 | ||
42 | |||
43 | md5sum="$(md5sum "$CONFFILE" | sed -e 's/ .*//')" | ||
44 | old_md5sum="$(dpkg-query -W -f '${Conffiles}\n' openssh-server 2>/dev/null | sed 's/^ *//' | awk '$1 == "'"$CONFFILE"'" { print $2 }')" | ||
45 | if [ "$md5sum" = "$old_md5sum" ]; then | ||
46 | mv -f "$CONFFILE" "$CONFFILE.dpkg-old" | ||
47 | else | ||
48 | mv -f "$CONFFILE" "$CONFFILE.moving" | ||
49 | fi | ||
50 | } | ||
51 | |||
52 | if [ -d /etc/ssh-nonfree ] && [ ! -d /etc/ssh ]; then | ||
53 | version=1.2.27 | ||
54 | fi | ||
55 | |||
56 | if [ "$action" = upgrade ] || [ "$action" = install ] | ||
57 | then | ||
58 | # check if debconf is missing | ||
59 | if ! test -f /usr/share/debconf/confmodule | ||
60 | then | ||
61 | cat <<EOF | ||
62 | |||
63 | WARNING: ssh's pre-configuration script relies on debconf to tell you | ||
64 | about some problems that might prevent you from logging in if you are | ||
65 | upgrading from the old, Non-free version of ssh. | ||
66 | |||
67 | If this is a new installation, you don't need to worry about this. | ||
68 | Just go ahead and install ssh (make sure to read .../ssh/README.Debian). | ||
69 | |||
70 | If you are upgrading, but you have alternative ways of logging into | ||
71 | the machine (i.e. you're sitting in front of it, or you have telnetd | ||
72 | running), then you also don't need to worry too much, because you can | ||
73 | fix it up afterwards if there's a problem. | ||
74 | |||
75 | If you're upgrading from an older (non-free) version of ssh, and ssh | ||
76 | is the only way you have to access this machine, then you should | ||
77 | probably abort the installation of ssh, install debconf, and then | ||
78 | retry the installation of ssh. | ||
79 | |||
80 | EOF | ||
81 | echo -n "Do you want to install SSH anyway [yN]: " | ||
82 | read input | ||
83 | expr "$input" : '[Yy]' >/dev/null || exit 1 | ||
84 | |||
85 | # work around for missing debconf | ||
86 | db_get() { : ; } | ||
87 | RET=true | ||
88 | if [ -d /etc/ssh-nonfree ] && [ ! -d /etc/ssh ]; then | ||
89 | cp -a /etc/ssh-nonfree /etc/ssh | ||
90 | fi | ||
91 | else | ||
92 | # Source debconf library. | ||
93 | . /usr/share/debconf/confmodule | ||
94 | db_version 2.0 | ||
95 | fi | ||
96 | |||
97 | db_get ssh/use_old_init_script | ||
98 | if [ "$RET" = "false" ]; then | ||
99 | echo "ssh config: Aborting because ssh/use_old_init_script = false" >&2 | ||
100 | exit 1 | ||
101 | fi | ||
102 | |||
103 | # deal with upgrading from pre-OpenSSH versions | ||
104 | key=/etc/ssh/ssh_host_key | ||
105 | export key | ||
106 | if [ -n "$version" ] && [ -x /usr/bin/ssh-keygen ] && [ -f $key ] && | ||
107 | dpkg --compare-versions "$version" lt 1.2.28 | ||
108 | then | ||
109 | # make sure that keys get updated to get rid of IDEA | ||
110 | # | ||
111 | # N.B. this only works because we've still got the old | ||
112 | # nonfree ssh-keygen at this point | ||
113 | # | ||
114 | # First, check if we need to bother | ||
115 | printf '\0\0' | 3<&0 sh -c \ | ||
116 | 'dd if=$key bs=1 skip=32 count=2 2>/dev/null | cmp -s - /dev/fd/3' || { | ||
117 | # this means that bytes 32&33 of the key were not both zero, in which | ||
118 | # case the key is encrypted, which we need to fix | ||
119 | chmod 600 $key | ||
120 | ssh-keygen -u -f $key >/dev/null | ||
121 | if type restorecon >/dev/null 2>&1; then | ||
122 | restorecon "$key.pub" | ||
123 | fi | ||
124 | } | ||
125 | fi | ||
126 | |||
127 | if dpkg --compare-versions "$version" lt 0; then | ||
128 | CONFFILES="$(dpkg-query -W -f '${Conffiles}\n' ssh 2>/dev/null | sed 's/^ *//')" | ||
129 | prepare_transfer_conffile /etc/default/ssh "$ETC_DEFAULT_SSH" 0644 | ||
130 | prepare_transfer_conffile /etc/init.d/ssh "$ETC_INIT_D_SSH" 0755 | ||
131 | prepare_transfer_conffile /etc/pam.d/ssh "$ETC_PAM_D_SSH" 0644 | ||
132 | fi | ||
133 | |||
134 | if dpkg --compare-versions "$version" lt 1:4.7p1-4; then | ||
135 | prepare_mv_conffile /etc/pam.d/ssh | ||
136 | fi | ||
137 | fi | ||
138 | |||
139 | #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.sshd.pam b/debian/openssh-server.sshd.pam new file mode 100644 index 000000000..9b7695184 --- /dev/null +++ b/debian/openssh-server.sshd.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 b/debian/openssh-server.templates new file mode 100644 index 000000000..3a7349a31 --- /dev/null +++ b/debian/openssh-server.templates | |||
@@ -0,0 +1,86 @@ | |||
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. | ||
65 | |||
66 | Template: ssh/vulnerable_host_keys | ||
67 | Type: note | ||
68 | #flag:translate!:5 | ||
69 | _Description: Vulnerable host keys will be regenerated | ||
70 | Some of the OpenSSH server host keys on this system were generated with a | ||
71 | version of OpenSSL that had a broken random number generator. As a result, | ||
72 | these host keys are from a well-known set, are subject to brute-force | ||
73 | attacks, and must be regenerated. | ||
74 | . | ||
75 | Users of this system should be informed of this change, as they will be | ||
76 | prompted about the host key change the next time they log in. Use | ||
77 | 'ssh-keygen -l -f HOST_KEY_FILE' after the upgrade to print the | ||
78 | fingerprints of the new host keys. | ||
79 | . | ||
80 | The affected host keys are: | ||
81 | . | ||
82 | ${HOST_KEYS} | ||
83 | . | ||
84 | User keys may also be affected by this problem. The 'ssh-vulnkey' command | ||
85 | may be used as a partial test for this. See | ||
86 | /usr/share/doc/openssh-server/README.compromised-keys.gz for more details. | ||
diff --git a/debian/po/POTFILES.in b/debian/po/POTFILES.in new file mode 100644 index 000000000..c619f3451 --- /dev/null +++ b/debian/po/POTFILES.in | |||
@@ -0,0 +1 @@ | |||
[type: gettext/rfc822deb] openssh-server.templates | |||
diff --git a/debian/po/bg.po b/debian/po/bg.po new file mode 100644 index 000000000..5dbae0df7 --- /dev/null +++ b/debian/po/bg.po | |||
@@ -0,0 +1,205 @@ | |||
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 <dmn@debian.org>, 2007, 2008. | ||
6 | msgid "" | ||
7 | msgstr "" | ||
8 | "Project-Id-Version: openssh\n" | ||
9 | "Report-Msgid-Bugs-To: openssh@packages.debian.org\n" | ||
10 | "POT-Creation-Date: 2008-05-17 13:58+0200\n" | ||
11 | "PO-Revision-Date: 2008-05-19 09:27+0300\n" | ||
12 | "Last-Translator: Damyan Ivanov <dmn@debian.org>\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:1001 | ||
22 | msgid "Generate a new configuration file for OpenSSH?" | ||
23 | msgstr "Създаване на нов файл Ñ Ð½Ð°Ñтройки за OpenSSH?" | ||
24 | |||
25 | #. Type: boolean | ||
26 | #. Description | ||
27 | #: ../openssh-server.templates: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: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: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: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: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: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:3001 | ||
92 | msgid "New host key mandatory" | ||
93 | msgstr "Ðеобходим е нов ключ за хоÑта" | ||
94 | |||
95 | #. Type: note | ||
96 | #. Description | ||
97 | #: ../openssh-server.templates: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:3001 | ||
111 | msgid "You need to manually generate a new host key." | ||
112 | msgstr "Ðеобходимо е да Ñе генерира ръчно нов ключ за хоÑта." | ||
113 | |||
114 | #. Type: boolean | ||
115 | #. Description | ||
116 | #: ../openssh-server.templates:4001 | ||
117 | msgid "Disable challenge-response authentication?" | ||
118 | msgstr "Забрана на удоÑтоверÑването challenge-response?" | ||
119 | |||
120 | #. Type: boolean | ||
121 | #. Description | ||
122 | #: ../openssh-server.templates: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: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." | ||
151 | |||
152 | #. Type: note | ||
153 | #. Description | ||
154 | #: ../openssh-server.templates:5001 | ||
155 | msgid "Vulnerable host keys will be regenerated" | ||
156 | msgstr "УÑзвимите ключове на хоÑта ще бъдат Ñъздадени наново" | ||
157 | |||
158 | #. Type: note | ||
159 | #. Description | ||
160 | #: ../openssh-server.templates:5001 | ||
161 | msgid "" | ||
162 | "Some of the OpenSSH server host keys on this system were generated with a " | ||
163 | "version of OpenSSL that had a broken random number generator. As a result, " | ||
164 | "these host keys are from a well-known set, are subject to brute-force " | ||
165 | "attacks, and must be regenerated." | ||
166 | msgstr "" | ||
167 | "ÐÑкои от ключовете за уÑлугата OpenSSH на хоÑта Ñа Ñъздадени Ñ Ð²ÐµÑ€ÑÐ¸Ñ Ð½Ð° " | ||
168 | "OpenSSL, коÑто използва повреден генератор на Ñлучайни чиÑла. Тези ключове " | ||
169 | "Ñа широко извеÑтни, уÑзвими Ñа към атаки и Ñ‚Ñ€Ñбва да бъдат Ñменени." | ||
170 | |||
171 | #. Type: note | ||
172 | #. Description | ||
173 | #: ../openssh-server.templates:5001 | ||
174 | msgid "" | ||
175 | "Users of this system should be informed of this change, as they will be " | ||
176 | "prompted about the host key change the next time they log in. Use 'ssh-" | ||
177 | "keygen -l -f HOST_KEY_FILE' after the upgrade to print the fingerprints of " | ||
178 | "the new host keys." | ||
179 | msgstr "" | ||
180 | "Потребителите на ÑиÑтемата Ñ‚Ñ€Ñбва да бъдат извеÑтени за промÑната, понеже " | ||
181 | "при ÑледващиÑÑ‚ им опит за връзка чрез SSH ще получат предупреждение за " | ||
182 | "промÑна в ключовете на хоÑта. За да получите отпечатъците на новите ключове " | ||
183 | "използвайте „ssh-keygen -l -f файл-Ñ-ключ“." | ||
184 | |||
185 | #. Type: note | ||
186 | #. Description | ||
187 | #: ../openssh-server.templates:5001 | ||
188 | msgid "The affected host keys are:" | ||
189 | msgstr "ЗаÑегнатите ключове на хоÑта Ñа:" | ||
190 | |||
191 | #. Type: note | ||
192 | #. Description | ||
193 | #: ../openssh-server.templates:5001 | ||
194 | msgid "" | ||
195 | "User keys may also be affected by this problem. The 'ssh-vulnkey' command " | ||
196 | "may be used as a partial test for this. See /usr/share/doc/openssh-server/" | ||
197 | "README.compromised-keys.gz for more details." | ||
198 | msgstr "" | ||
199 | "Възможно е потребителÑките ключове Ñъщо да Ñа заÑегнати от проблема. Можете " | ||
200 | "да използвате програмата „ssh-vulnkey“ за да ги проверите. За повече " | ||
201 | "Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¿Ð¾Ð³Ð»ÐµÐ´Ð½ÐµÑ‚Ðµ /usr/share/doc/openssh-server/README.compromised-keys." | ||
202 | "gz." | ||
203 | |||
204 | #~ msgid "${HOST_KEYS}" | ||
205 | #~ msgstr "${HOST_KEYS}" | ||
diff --git a/debian/po/ca.po b/debian/po/ca.po new file mode 100644 index 000000000..b35c9ffff --- /dev/null +++ b/debian/po/ca.po | |||
@@ -0,0 +1,364 @@ | |||
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: openssh@packages.debian.org\n" | ||
13 | "POT-Creation-Date: 2008-05-17 08:51+0200\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: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: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: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: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: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: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: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-stop-" | ||
94 | "daemon» de la secció «stop» del mateix fitxer." | ||
95 | |||
96 | #. Type: note | ||
97 | #. Description | ||
98 | #: ../openssh-server.templates:3001 | ||
99 | msgid "New host key mandatory" | ||
100 | msgstr "Nova clau obligatòria" | ||
101 | |||
102 | #. Type: note | ||
103 | #. Description | ||
104 | #: ../openssh-server.templates: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: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: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: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: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 | #. Type: note | ||
161 | #. Description | ||
162 | #: ../openssh-server.templates:5001 | ||
163 | msgid "Vulnerable host keys will be regenerated" | ||
164 | msgstr "" | ||
165 | |||
166 | #. Type: note | ||
167 | #. Description | ||
168 | #: ../openssh-server.templates:5001 | ||
169 | msgid "" | ||
170 | "Some of the OpenSSH server host keys on this system were generated with a " | ||
171 | "version of OpenSSL that had a broken random number generator. As a result, " | ||
172 | "these host keys are from a well-known set, are subject to brute-force " | ||
173 | "attacks, and must be regenerated." | ||
174 | msgstr "" | ||
175 | |||
176 | #. Type: note | ||
177 | #. Description | ||
178 | #: ../openssh-server.templates:5001 | ||
179 | msgid "" | ||
180 | "Users of this system should be informed of this change, as they will be " | ||
181 | "prompted about the host key change the next time they log in. Use 'ssh-" | ||
182 | "keygen -l -f HOST_KEY_FILE' after the upgrade to print the fingerprints of " | ||
183 | "the new host keys." | ||
184 | msgstr "" | ||
185 | |||
186 | #. Type: note | ||
187 | #. Description | ||
188 | #: ../openssh-server.templates:5001 | ||
189 | msgid "The affected host keys are:" | ||
190 | msgstr "" | ||
191 | |||
192 | #. Type: note | ||
193 | #. Description | ||
194 | #: ../openssh-server.templates:5001 | ||
195 | msgid "" | ||
196 | "User keys may also be affected by this problem. The 'ssh-vulnkey' command " | ||
197 | "may be used as a partial test for this. See /usr/share/doc/openssh-server/" | ||
198 | "README.compromised-keys.gz for more details." | ||
199 | msgstr "" | ||
200 | |||
201 | #~ msgid "Warning: you must create a new host key" | ||
202 | #~ msgstr "AvÃs: heu de crear una nova clau del servidor central" | ||
203 | |||
204 | #~ msgid "Warning: telnetd is installed --- probably not a good idea" | ||
205 | #~ msgstr "" | ||
206 | #~ "AvÃs: el telnetd està instal·lat --- probablement no sigui una bona idea" | ||
207 | |||
208 | #~ msgid "" | ||
209 | #~ "I'd advise you to either remove the telnetd package (if you don't " | ||
210 | #~ "actually need to offer telnet access) or install telnetd-ssl so that " | ||
211 | #~ "there is at least some chance that telnet sessions will not be sending " | ||
212 | #~ "unencrypted login/password and session information over the network." | ||
213 | #~ msgstr "" | ||
214 | #~ "Es aconsellable suprimir el paquet telnetd (si no heu d'oferir accés a " | ||
215 | #~ "telnet) o torneu a instal·lar el paquet telnetd-ssl si més no per " | ||
216 | #~ "assegurar que les sessions de telnet no enviaran les informació del nom " | ||
217 | #~ "d'usuari i contrasenya sense xifrar a través de la xarxa." | ||
218 | |||
219 | #~ msgid "Warning: rsh-server is installed --- probably not a good idea" | ||
220 | #~ msgstr "" | ||
221 | #~ "AvÃs: el servidor rsh-server està instal·lat --- probablement no sigui " | ||
222 | #~ "una bona idea" | ||
223 | |||
224 | #~ msgid "" | ||
225 | #~ "having rsh-server installed undermines the security that you were " | ||
226 | #~ "probably wanting to obtain by installing ssh. I'd advise you to remove " | ||
227 | #~ "that package." | ||
228 | #~ msgstr "" | ||
229 | #~ "si teniu instal·lat l'rsh-server perdreu la seguretat que esperà veu " | ||
230 | #~ "obtenir instal·lant l'ssh. És aconsellable suprimir el paquet." | ||
231 | |||
232 | #~ msgid "Do you want ssh-keysign to be installed SUID root?" | ||
233 | #~ msgstr "Voleu que el fitxer ssh-keysign s'instal·li SUID root?" | ||
234 | |||
235 | #~ msgid "" | ||
236 | #~ "You have the option of installing the ssh-keysign helper with the SUID " | ||
237 | #~ "bit set." | ||
238 | #~ msgstr "Podeu instal·lar l'ajudant del ssh-keysign amb el bit SUID definit." | ||
239 | |||
240 | #~ msgid "" | ||
241 | #~ "If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 " | ||
242 | #~ "host-based authentication." | ||
243 | #~ msgstr "" | ||
244 | #~ "Si definiu l'ssh-keysign SUID podreu utilitzat l'autenticació basada en " | ||
245 | #~ "l'ordinador central del Protocol 2 de l'SSH." | ||
246 | |||
247 | #~ msgid "" | ||
248 | #~ "If in doubt, I suggest you install it with SUID. If it causes problems " | ||
249 | #~ "you can change your mind later by running: dpkg-reconfigure ssh" | ||
250 | #~ msgstr "" | ||
251 | #~ "Si dubteu instal·leu-lo amb el SUID. Si us causa algun problema ho podeu " | ||
252 | #~ "modificar posteriorment executant l'ordre: dpkg-reconfigure ssh" | ||
253 | |||
254 | #~ msgid "Allow SSH protocol 2 only" | ||
255 | #~ msgstr "Permet únicament la versió 2 del protocol d'SSH" | ||
256 | |||
257 | #~ msgid "" | ||
258 | #~ "This version of OpenSSH supports version 2 of the ssh protocol, which is " | ||
259 | #~ "much more secure. Disabling ssh 1 is encouraged, however this will slow " | ||
260 | #~ "things down on low end machines and might prevent older clients from " | ||
261 | #~ "connecting (the ssh client shipped with \"potato\" is affected)." | ||
262 | #~ msgstr "" | ||
263 | #~ "Aquesta versió de l'OpenSSH suporta la versió 2 del protocol d'ssh, " | ||
264 | #~ "aquesta versió és molt més segura. És recomanable inhabilitar la versió 1 " | ||
265 | #~ "del protocol, tot i que això alentirà el funcionament dels ordinadors més " | ||
266 | #~ "antics i no permetrà les connexions als clients antics (afectarà al " | ||
267 | #~ "client proporcionat per la \"potato\")." | ||
268 | |||
269 | #~ msgid "" | ||
270 | #~ "Also please note that keys used for protocol 1 are different so you will " | ||
271 | #~ "not be able to use them if you only allow protocol 2 connections." | ||
272 | #~ msgstr "" | ||
273 | #~ "Recordeu que les claus que utilitza la versió 1 del protocol són " | ||
274 | #~ "diferents i no les podreu utilitzar si habiliteu únicament les connexions " | ||
275 | #~ "de la versió 2 del protocol." | ||
276 | |||
277 | #~ msgid "" | ||
278 | #~ "If you later change your mind about this setting, README.Debian has " | ||
279 | #~ "instructions on what to do to your sshd_config file." | ||
280 | #~ msgstr "" | ||
281 | #~ "Si posteriorment canvieu d'opinió respecte a la configuració, podeu " | ||
282 | #~ "trobar les instruccions per modificar el fitxer sshd_config a README." | ||
283 | #~ "Debian." | ||
284 | |||
285 | #~ msgid "NOTE: Forwarding of X11 and Authorization disabled by default." | ||
286 | #~ msgstr "" | ||
287 | #~ "Nota: les opcions de reenviament de les X11 i autorització estan " | ||
288 | #~ "inhabilitades per defecte." | ||
289 | |||
290 | #~ msgid "" | ||
291 | #~ "For security reasons, the Debian version of ssh has ForwardX11 and " | ||
292 | #~ "ForwardAgent set to ``off'' by default." | ||
293 | #~ msgstr "" | ||
294 | #~ "Per raons de seguretat i de forma predeterminada la versió d'ssh de " | ||
295 | #~ "Debian té les opcions ForwardX11 i ForwardAgent definides a \"off\"." | ||
296 | |||
297 | #~ msgid "" | ||
298 | #~ "You can enable it for servers you trust, either in one of the " | ||
299 | #~ "configuration files, or with the -X command line option." | ||
300 | #~ msgstr "" | ||
301 | #~ "Ho podeu habilitar pels servidors de confiança, ja sigui en un dels " | ||
302 | #~ "fitxers de configuració o a través de l'opció de la lÃnia d'ordre -X." | ||
303 | |||
304 | #~ msgid "More details can be found in /usr/share/doc/ssh/README.Debian" | ||
305 | #~ msgstr "" | ||
306 | #~ "Podeu trobar més informació al fitxer /usr/share/doc/ssh/README.Debian" | ||
307 | |||
308 | #~ msgid "ssh2 keys merged in configuration files" | ||
309 | #~ msgstr "S'han combinat les claus de l'ssh2 als fitxers de configuració" | ||
310 | |||
311 | #~ msgid "" | ||
312 | #~ "As of version 3 OpenSSH no longer uses separate files for ssh1 and ssh2 " | ||
313 | #~ "keys. This means the authorized_keys2 and known_hosts2 files are no " | ||
314 | #~ "longer needed. They will still be read in order to maintain backwards " | ||
315 | #~ "compatibility" | ||
316 | #~ msgstr "" | ||
317 | #~ "Des de la versió 3 de l'OpenSSH ja no s'utilitzaran fitxers separats per " | ||
318 | #~ "les claus de l'ssh1 i ssg2. Ja no caldran els fitxer authorized_keys2 i " | ||
319 | #~ "known_hosts2. Es continuaran llegint per mantenir la compatibilitat amb " | ||
320 | #~ "les versions anteriors." | ||
321 | |||
322 | #~ msgid "Do you want to run the sshd server?" | ||
323 | #~ msgstr "Voleu executar el servidor d'sshd?" | ||
324 | |||
325 | #~ msgid "This package contains both the ssh client, and the sshd server." | ||
326 | #~ msgstr "El paquet conté el client i el servidor d'ssh." | ||
327 | |||
328 | #~ msgid "" | ||
329 | #~ "Normally the sshd Secure Shell Server will be run to allow remote logins " | ||
330 | #~ "via ssh." | ||
331 | #~ msgstr "" | ||
332 | #~ "L'sshd (servidor de l'intèrpret d'ordres segur) s'executarà , normalment, " | ||
333 | #~ "per permetre l'entrada remota a través de l'ssh." | ||
334 | |||
335 | #~ msgid "" | ||
336 | #~ "If you are only interested in using the ssh client for outbound " | ||
337 | #~ "connections on this machine, and don't want to log into it at all using " | ||
338 | #~ "ssh, then you can disable sshd here." | ||
339 | #~ msgstr "" | ||
340 | #~ "Podeu inhabilitar l'sshd si voleu utilitzar el client d'ssh únicament per " | ||
341 | #~ "connexions a l'exterior i no per acceptar connexions remotes." | ||
342 | |||
343 | #~ msgid "Environment options on keys have been deprecated" | ||
344 | #~ msgstr "S'ha prohibit les opcions d'entorn a les claus." | ||
345 | |||
346 | #~ msgid "" | ||
347 | #~ "This version of OpenSSH disables the environment option for public keys " | ||
348 | #~ "by default, in order to avoid certain attacks (for example, LD_PRELOAD). " | ||
349 | #~ "If you are using this option in an authorized_keys file, beware that the " | ||
350 | #~ "keys in question will no longer work until the option is removed." | ||
351 | #~ msgstr "" | ||
352 | #~ "L'OpenSSH inhabilita, per defecte i per evitar diversos atacs (per " | ||
353 | #~ "exemple LD_PRELOAD), les opcions d'entorn per les claus públiques. Si " | ||
354 | #~ "utilitzeu aquesta opció al fitxer authorized_keys recordeu que les claus " | ||
355 | #~ "de la qüestió no funcionaran fins que no se suprimeixi l'opció." | ||
356 | |||
357 | #~ msgid "" | ||
358 | #~ "To re-enable this option, set \"PermitUserEnvironment yes\" in /etc/ssh/" | ||
359 | #~ "sshd_config after the upgrade is complete, taking note of the warning in " | ||
360 | #~ "the sshd_config(5) manual page." | ||
361 | #~ msgstr "" | ||
362 | #~ "Per tornar a habilitar l'opció definiu \"PermitUserEnvironment yes\" al " | ||
363 | #~ "fitxer /etc/ssh/sshd_config al finalitzar l'actualització (recordeu la " | ||
364 | #~ "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..0ea4d4348 --- /dev/null +++ b/debian/po/cs.po | |||
@@ -0,0 +1,368 @@ | |||
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: openssh@packages.debian.org\n" | ||
18 | "POT-Creation-Date: 2008-05-17 13:58+0200\n" | ||
19 | "PO-Revision-Date: 2008-05-17 14:49+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: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: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: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: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: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: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: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:3001 | ||
101 | msgid "New host key mandatory" | ||
102 | msgstr "Nutný nový serverový klÃÄ" | ||
103 | |||
104 | #. Type: note | ||
105 | #. Description | ||
106 | #: ../openssh-server.templates: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: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:4001 | ||
126 | msgid "Disable challenge-response authentication?" | ||
127 | msgstr "Zakázat autentizaci challenge-response?" | ||
128 | |||
129 | #. Type: boolean | ||
130 | #. Description | ||
131 | #: ../openssh-server.templates: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: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 | #. Type: note | ||
161 | #. Description | ||
162 | #: ../openssh-server.templates:5001 | ||
163 | msgid "Vulnerable host keys will be regenerated" | ||
164 | msgstr "Zranitelné serverové klÃÄe budou pÅ™egenerovány" | ||
165 | |||
166 | #. Type: note | ||
167 | #. Description | ||
168 | #: ../openssh-server.templates:5001 | ||
169 | msgid "" | ||
170 | "Some of the OpenSSH server host keys on this system were generated with a " | ||
171 | "version of OpenSSL that had a broken random number generator. As a result, " | ||
172 | "these host keys are from a well-known set, are subject to brute-force " | ||
173 | "attacks, and must be regenerated." | ||
174 | msgstr "" | ||
175 | "NÄ›které serverové klÃÄe OpenSSH na tomto systému byly vytvoÅ™eny verzà " | ||
176 | "OpenSSL, která mÄ›la naruÅ¡ený generátor náhodných ÄÃsel. Ve výsledku jsou " | ||
177 | "tyto dobÅ™e známé klÃÄe pÅ™edmÄ›tem útoků hrubou silou a musà být pÅ™egenerovány." | ||
178 | |||
179 | #. Type: note | ||
180 | #. Description | ||
181 | #: ../openssh-server.templates:5001 | ||
182 | msgid "" | ||
183 | "Users of this system should be informed of this change, as they will be " | ||
184 | "prompted about the host key change the next time they log in. Use 'ssh-" | ||
185 | "keygen -l -f HOST_KEY_FILE' after the upgrade to print the fingerprints of " | ||
186 | "the new host keys." | ||
187 | msgstr "" | ||
188 | "Uživatelé tohoto systému by měli být informováni o změně, protože budou při " | ||
189 | "pÅ™ÃÅ¡tÃm pÅ™ihlášenà varováni o zmÄ›nÄ› serverového klÃÄe. Po aktualizaci můžete " | ||
190 | "zjistit nové otisky serverových klÃÄů pÅ™Ãkazem „ssh-keygen -l -f " | ||
191 | "SOUBOR_SE_SERVEROVÃM_KLÃÄŒEM“." | ||
192 | |||
193 | #. Type: note | ||
194 | #. Description | ||
195 | #: ../openssh-server.templates:5001 | ||
196 | msgid "The affected host keys are:" | ||
197 | msgstr "Postižené serverové klÃÄe:" | ||
198 | |||
199 | #. Type: note | ||
200 | #. Description | ||
201 | #: ../openssh-server.templates:5001 | ||
202 | msgid "" | ||
203 | "User keys may also be affected by this problem. The 'ssh-vulnkey' command " | ||
204 | "may be used as a partial test for this. See /usr/share/doc/openssh-server/" | ||
205 | "README.compromised-keys.gz for more details." | ||
206 | msgstr "" | ||
207 | "TÃmto problémem mohou být postiženy také uživatelské klÃÄe. Pro ÄásteÄnou " | ||
208 | "kontrolu můžete použÃt pÅ™Ãkaz „ssh-vulnkey“. VÃce informacà naleznete v " | ||
209 | "souboru /usr/share/doc/openssh-server/README.compromised-keys.gz." | ||
210 | |||
211 | #~ msgid "Warning: you must create a new host key" | ||
212 | #~ msgstr "VarovánÃ: musÃte vytvoÅ™it nový serverový klÃÄ" | ||
213 | |||
214 | #~ msgid "Warning: telnetd is installed --- probably not a good idea" | ||
215 | #~ msgstr "VarovánÃ: je nainstalován telnetd --- to nenà dobrý nápad" | ||
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 | #~ "DoporuÄujeme buÄ odstranit balÃk telnetd (pokud telnet pÅ™Ãstup " | ||
224 | #~ "nepotřebujete), nebo nainstalovat telnetd-ssl, kde je alespoň nějaká " | ||
225 | #~ "Å¡ance, že spojenà nebudou po sÃti zasÃlat nezaÅ¡ifrovaná jména/hesla/" | ||
226 | #~ "informace." | ||
227 | |||
228 | #~ msgid "Warning: rsh-server is installed --- probably not a good idea" | ||
229 | #~ msgstr "VarovánÃ: je nainstalován rsh-server --- to nenà dobrý nápad" | ||
230 | |||
231 | #~ msgid "" | ||
232 | #~ "having rsh-server installed undermines the security that you were " | ||
233 | #~ "probably wanting to obtain by installing ssh. I'd advise you to remove " | ||
234 | #~ "that package." | ||
235 | #~ msgstr "" | ||
236 | #~ "nainstalovánÃm rsh-server si bouráte bezpeÄnost, kterou jste " | ||
237 | #~ "pravdÄ›podobnÄ› chtÄ›li dosáhnout instalacà ssh. DoporuÄujeme tento balÃk " | ||
238 | #~ "odstranit." | ||
239 | |||
240 | #~ msgid "Do you want ssh-keysign to be installed SUID root?" | ||
241 | #~ msgstr "Chcete ssh-keysign nainstalovat jako SUID root?" | ||
242 | |||
243 | #~ msgid "" | ||
244 | #~ "You have the option of installing the ssh-keysign helper with the SUID " | ||
245 | #~ "bit set." | ||
246 | #~ msgstr "" | ||
247 | #~ "Můžete si vybrat, zda chcete nainstalovat ssh-keysign s nastaveným SUID " | ||
248 | #~ "bitem." | ||
249 | |||
250 | #~ msgid "" | ||
251 | #~ "If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 " | ||
252 | #~ "host-based authentication." | ||
253 | #~ msgstr "" | ||
254 | #~ "Pokud nastavÃte ssh-keysign SUID, můžete použÃvat „host-based“ " | ||
255 | #~ "autentizaci protokolu verze 2." | ||
256 | |||
257 | #~ msgid "" | ||
258 | #~ "If in doubt, I suggest you install it with SUID. If it causes problems " | ||
259 | #~ "you can change your mind later by running: dpkg-reconfigure ssh" | ||
260 | #~ msgstr "" | ||
261 | #~ "Pokud jste na pochybách, doporuÄujeme SUID bit povolit. Pokud zaznamenáte " | ||
262 | #~ "problémy, můžete nastavenà zmÄ›nit spuÅ¡tÄ›nÃm: dpkg-reconfigure ssh" | ||
263 | |||
264 | #~ msgid "Allow SSH protocol 2 only" | ||
265 | #~ msgstr "Povolit pouze SSH protokol verze 2" | ||
266 | |||
267 | #~ msgid "" | ||
268 | #~ "This version of OpenSSH supports version 2 of the ssh protocol, which is " | ||
269 | #~ "much more secure. Disabling ssh 1 is encouraged, however this will slow " | ||
270 | #~ "things down on low end machines and might prevent older clients from " | ||
271 | #~ "connecting (the ssh client shipped with \"potato\" is affected)." | ||
272 | #~ msgstr "" | ||
273 | #~ "Tato verze OpenSSH podporuje ssh protokol ve verzi 2, který je mnohem " | ||
274 | #~ "bezpeÄnÄ›jÅ¡Ã. Je dobré ssh verze 1 zakázat, nicménÄ› na slabÅ¡Ãch poÄÃtaÄÃch " | ||
275 | #~ "se projevà zpomalenà a také tÃm znemožnÃte pÅ™ihlášenà starÅ¡Ãch klientů " | ||
276 | #~ "(napÅ™Ãklad tÄ›ch z Debianu 2.2)." | ||
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 | #~ "Také si vÅ¡imnÄ›te, že klÃÄe protokolu verze 1 jsou odliÅ¡né a pokud " | ||
283 | #~ "povolÃte pouze protokol verze 2, nebudete je moci použÃt. " | ||
284 | |||
285 | #~ msgid "" | ||
286 | #~ "If you later change your mind about this setting, README.Debian has " | ||
287 | #~ "instructions on what to do to your sshd_config file." | ||
288 | #~ msgstr "" | ||
289 | #~ "Pokud se později rozhodnete jinak, v README.Debian se nacházà přesný " | ||
290 | #~ "návod, jak upravit soubor sshd_config." | ||
291 | |||
292 | #~ msgid "ssh2 keys merged in configuration files" | ||
293 | #~ msgstr "KlÃÄe ssh2 v konfiguraÄnÃch souborech byly spojeny" | ||
294 | |||
295 | #~ msgid "" | ||
296 | #~ "As of version 3 OpenSSH no longer uses separate files for ssh1 and ssh2 " | ||
297 | #~ "keys. This means the authorized_keys2 and known_hosts2 files are no " | ||
298 | #~ "longer needed. They will still be read in order to maintain backwards " | ||
299 | #~ "compatibility" | ||
300 | #~ msgstr "" | ||
301 | #~ "OpenSSH verze 3 již nepoužÃvá oddÄ›lené soubory pro klÃÄe verze ssh1 a " | ||
302 | #~ "ssh2. To znamená, že soubory authorized_keys2 a known_hosts2 již nejsou " | ||
303 | #~ "potřeba, ovšem z důvodů zachovánà zpětné kompatibility jsou stále " | ||
304 | #~ "naÄÃtány." | ||
305 | |||
306 | #~ msgid "NOTE: Forwarding of X11 and Authorization disabled by default." | ||
307 | #~ msgstr "POZNÃMKA: Autorizace a pÅ™esmÄ›rovánà X11 je standardnÄ› vypnuto." | ||
308 | |||
309 | #~ msgid "" | ||
310 | #~ "For security reasons, the Debian version of ssh has ForwardX11 and " | ||
311 | #~ "ForwardAgent set to ``off'' by default." | ||
312 | #~ msgstr "" | ||
313 | #~ "Z bezpeÄnostnÃch důvodů má verze ssh v Debianu standardnÄ› nastavené " | ||
314 | #~ "ForwardX11 a ForwardAgent na hodnotu „off“." | ||
315 | |||
316 | #~ msgid "" | ||
317 | #~ "You can enable it for servers you trust, either in one of the " | ||
318 | #~ "configuration files, or with the -X command line option." | ||
319 | #~ msgstr "" | ||
320 | #~ "Pro servery, kterým důvěřujete, můžete tyto parametry povolit v jednom z " | ||
321 | #~ "konfiguraÄnÃch souborů, nebo z pÅ™Ãkazové řádky parametrem -X." | ||
322 | |||
323 | #~ msgid "More details can be found in /usr/share/doc/ssh/README.Debian" | ||
324 | #~ msgstr "VÃce naleznete v /usr/share/doc/ssh/README.Debian" | ||
325 | |||
326 | #~ msgid "Do you want to run the sshd server?" | ||
327 | #~ msgstr "Chcete spustit sshd server?" | ||
328 | |||
329 | #~ msgid "This package contains both the ssh client, and the sshd server." | ||
330 | #~ msgstr "Tento balÃk obsahuje jak klienta ssh, tak server sshd." | ||
331 | |||
332 | #~ msgid "" | ||
333 | #~ "Normally the sshd Secure Shell Server will be run to allow remote logins " | ||
334 | #~ "via ssh." | ||
335 | #~ msgstr "" | ||
336 | #~ "Obvykle se sshd (Secure Shell Server) spouÅ¡tÃ, aby se vzdálenà uživatelé " | ||
337 | #~ "mohli přihlašovat přes ssh." | ||
338 | |||
339 | #~ msgid "" | ||
340 | #~ "If you are only interested in using the ssh client for outbound " | ||
341 | #~ "connections on this machine, and don't want to log into it at all using " | ||
342 | #~ "ssh, then you can disable sshd here." | ||
343 | #~ msgstr "" | ||
344 | #~ "Pokud na tomto poÄÃtaÄi chcete využÃvat pouze ssh klienta pro odchozà " | ||
345 | #~ "spojenÃ, můžete zde sshd zakázat." | ||
346 | |||
347 | #~ msgid "Environment options on keys have been deprecated" | ||
348 | #~ msgstr "Volby prostÅ™edà spojené s klÃÄi jsou zakázány" | ||
349 | |||
350 | #~ msgid "" | ||
351 | #~ "This version of OpenSSH disables the environment option for public keys " | ||
352 | #~ "by default, in order to avoid certain attacks (for example, LD_PRELOAD). " | ||
353 | #~ "If you are using this option in an authorized_keys file, beware that the " | ||
354 | #~ "keys in question will no longer work until the option is removed." | ||
355 | #~ msgstr "" | ||
356 | #~ "Pro zamezenà urÄitých typů útoků (napÅ™. LD_PRELOAD), tato verze OpenSSH " | ||
357 | #~ "standardnÄ› zabraňuje použÃvat volbu prostÅ™edà u veÅ™ejných klÃÄů. Pokud " | ||
358 | #~ "tuto volbu použÃváte v souboru authorized_keys, tak postižené klÃÄe " | ||
359 | #~ "nebudou fungovat, dokud jim tuto volbu nesmažete." | ||
360 | |||
361 | #~ msgid "" | ||
362 | #~ "To re-enable this option, set \"PermitUserEnvironment yes\" in /etc/ssh/" | ||
363 | #~ "sshd_config after the upgrade is complete, taking note of the warning in " | ||
364 | #~ "the sshd_config(5) manual page." | ||
365 | #~ msgstr "" | ||
366 | #~ "Pro znovupovolenà této volby si po aktualizaci pÅ™eÄtÄ›te varovánà v " | ||
367 | #~ "manuálové stránce sshd_config(5) a v souboru /etc/ssh/sshd_config zadejte " | ||
368 | #~ "„PermitUserEnvironment yes“." | ||
diff --git a/debian/po/da.po b/debian/po/da.po new file mode 100644 index 000000000..29cd41996 --- /dev/null +++ b/debian/po/da.po | |||
@@ -0,0 +1,355 @@ | |||
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: openssh@packages.debian.org\n" | ||
19 | "POT-Creation-Date: 2008-05-17 08:51+0200\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: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: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: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: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: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: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: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:3001 | ||
136 | msgid "New host key mandatory" | ||
137 | msgstr "" | ||
138 | |||
139 | #. Type: note | ||
140 | #. Description | ||
141 | #: ../openssh-server.templates: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: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:4001 | ||
168 | msgid "Disable challenge-response authentication?" | ||
169 | msgstr "Slå udfordrings-svar godkendelse fra?" | ||
170 | |||
171 | #. Type: boolean | ||
172 | #. Description | ||
173 | #: ../openssh-server.templates: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: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 | #. Type: note | ||
212 | #. Description | ||
213 | #: ../openssh-server.templates:5001 | ||
214 | msgid "Vulnerable host keys will be regenerated" | ||
215 | msgstr "" | ||
216 | |||
217 | #. Type: note | ||
218 | #. Description | ||
219 | #: ../openssh-server.templates:5001 | ||
220 | msgid "" | ||
221 | "Some of the OpenSSH server host keys on this system were generated with a " | ||
222 | "version of OpenSSL that had a broken random number generator. As a result, " | ||
223 | "these host keys are from a well-known set, are subject to brute-force " | ||
224 | "attacks, and must be regenerated." | ||
225 | msgstr "" | ||
226 | |||
227 | #. Type: note | ||
228 | #. Description | ||
229 | #: ../openssh-server.templates:5001 | ||
230 | msgid "" | ||
231 | "Users of this system should be informed of this change, as they will be " | ||
232 | "prompted about the host key change the next time they log in. Use 'ssh-" | ||
233 | "keygen -l -f HOST_KEY_FILE' after the upgrade to print the fingerprints of " | ||
234 | "the new host keys." | ||
235 | msgstr "" | ||
236 | |||
237 | #. Type: note | ||
238 | #. Description | ||
239 | #: ../openssh-server.templates:5001 | ||
240 | msgid "The affected host keys are:" | ||
241 | msgstr "" | ||
242 | |||
243 | #. Type: note | ||
244 | #. Description | ||
245 | #: ../openssh-server.templates:5001 | ||
246 | msgid "" | ||
247 | "User keys may also be affected by this problem. The 'ssh-vulnkey' command " | ||
248 | "may be used as a partial test for this. See /usr/share/doc/openssh-server/" | ||
249 | "README.compromised-keys.gz for more details." | ||
250 | msgstr "" | ||
251 | |||
252 | #~ msgid "Warning: you must create a new host key" | ||
253 | #~ msgstr "Advarsel: du skal oprette en ny værtsnøgle" | ||
254 | |||
255 | #~ msgid "Warning: telnetd is installed --- probably not a good idea" | ||
256 | #~ msgstr "Advarsel: telnetd er installeret --- sikkert ikke en god idé" | ||
257 | |||
258 | #~ msgid "" | ||
259 | #~ "I'd advise you to either remove the telnetd package (if you don't " | ||
260 | #~ "actually need to offer telnet access) or install telnetd-ssl so that " | ||
261 | #~ "there is at least some chance that telnet sessions will not be sending " | ||
262 | #~ "unencrypted login/password and session information over the network." | ||
263 | #~ msgstr "" | ||
264 | #~ "Jeg vil råde dig til enten at fjerne pakken telnetd (hvis du i " | ||
265 | #~ "virkeligheden ikke har brug for at tilbyde telnet-adgang) eller " | ||
266 | #~ "installere telnetd-ssl, så der i det mindste er en mulighed for, at " | ||
267 | #~ "telnet-sessioner ikke sender adgangskoder og sessions-oplysninger " | ||
268 | #~ "ukrypteret over netværket." | ||
269 | |||
270 | #~ msgid "Warning: rsh-server is installed --- probably not a good idea" | ||
271 | #~ msgstr "Advarsel: rsh-serveren er installeret --- sikkert ikke en god idé" | ||
272 | |||
273 | #~ msgid "" | ||
274 | #~ "having rsh-server installed undermines the security that you were " | ||
275 | #~ "probably wanting to obtain by installing ssh. I'd advise you to remove " | ||
276 | #~ "that package." | ||
277 | #~ msgstr "" | ||
278 | #~ "Den sikkerhed, du nok ønskede at opnå ved at installere ssh undermineres " | ||
279 | #~ "ved, at du har rsh-server installeret. Jeg vil råde dig til at fjerne " | ||
280 | #~ "pakken rsh-server." | ||
281 | |||
282 | #~ msgid "Do you want ssh-keysign to be installed SUID root?" | ||
283 | #~ msgstr "Vil du have, at ssh-keysign bliver installeret 'SUID root'?" | ||
284 | |||
285 | #~ msgid "" | ||
286 | #~ "You have the option of installing the ssh-keysign helper with the SUID " | ||
287 | #~ "bit set." | ||
288 | #~ msgstr "" | ||
289 | #~ "Du har mulighed for at installere ssh-keysign hjælperen med SUID-flaget " | ||
290 | #~ "sat." | ||
291 | |||
292 | #~ msgid "" | ||
293 | #~ "If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 " | ||
294 | #~ "host-based authentication." | ||
295 | #~ msgstr "" | ||
296 | #~ "Hvis du gør ssh-keysign SUID, vil du blive i stand til at benytte SSH " | ||
297 | #~ "protokol 2's værtsnavn-baserede autentifikation." | ||
298 | |||
299 | #~ msgid "" | ||
300 | #~ "If in doubt, I suggest you install it with SUID. If it causes problems " | ||
301 | #~ "you can change your mind later by running: dpkg-reconfigure ssh" | ||
302 | #~ msgstr "" | ||
303 | #~ "Hvis du er i tvivl, vil jeg råde dig til at installere den med SUID. Hvis " | ||
304 | #~ "det skaber problemer, kan du ændre det tilbage igen ved at køre: dpkg-" | ||
305 | #~ "reconfigure ssh" | ||
306 | |||
307 | #~ msgid "Allow SSH protocol 2 only" | ||
308 | #~ msgstr "Tillad kun SSH protokol 2" | ||
309 | |||
310 | #~ msgid "" | ||
311 | #~ "This version of OpenSSH supports version 2 of the ssh protocol, which is " | ||
312 | #~ "much more secure. Disabling ssh 1 is encouraged, however this will slow " | ||
313 | #~ "things down on low end machines and might prevent older clients from " | ||
314 | #~ "connecting (the ssh client shipped with \"potato\" is affected)." | ||
315 | #~ msgstr "" | ||
316 | #~ "Denne udgave af OpenSSH understøtter version 2 af ssh-protokollen, som er " | ||
317 | #~ "betydeligt mere sikker. Det anbefales at deaktivere version 1. Dog kan " | ||
318 | #~ "det sløve langsomme maskiner ned, og forhindre ældre klienter i at opnå " | ||
319 | #~ "forbindelse (ssh klienten der kommer med \"potato\" er en af dem)." | ||
320 | |||
321 | #~ msgid "" | ||
322 | #~ "Also please note that keys used for protocol 1 are different so you will " | ||
323 | #~ "not be able to use them if you only allow protocol 2 connections." | ||
324 | #~ msgstr "" | ||
325 | #~ "Du skal også bemærke at de nøgler som bliver anvendt til protokol 1 er " | ||
326 | #~ "forskellige, så du vil ikke være i stand til at bruge dem, hvis du kun " | ||
327 | #~ "tillader protokol 2 forbindelser." | ||
328 | |||
329 | #~ msgid "" | ||
330 | #~ "If you later change your mind about this setting, README.Debian has " | ||
331 | #~ "instructions on what to do to your sshd_config file." | ||
332 | #~ msgstr "" | ||
333 | #~ "Hvis du senere ændrer din mening om denne indstilling, har README.Debian " | ||
334 | #~ "instruktioner på hvad du skal gøre ved din sshd_config fil." | ||
335 | |||
336 | #~ msgid "NOTE: Forwarding of X11 and Authorization disabled by default." | ||
337 | #~ msgstr "" | ||
338 | #~ "BEMÆRK: Videregivelse af X11 og adgangkontrol er som standard deaktiveret." | ||
339 | |||
340 | #~ msgid "" | ||
341 | #~ "For security reasons, the Debian version of ssh has ForwardX11 and " | ||
342 | #~ "ForwardAgent set to ``off'' by default." | ||
343 | #~ msgstr "" | ||
344 | #~ "Af sikkerhedsgrunde har Debianudgaven af ssh sat ForwardX11 og " | ||
345 | #~ "ForwardAgent til 'off' som standard." | ||
346 | |||
347 | #~ msgid "" | ||
348 | #~ "You can enable it for servers you trust, either in one of the " | ||
349 | #~ "configuration files, or with the -X command line option." | ||
350 | #~ msgstr "" | ||
351 | #~ "Du kan aktivere dem for servere du stoler på, enten i en af " | ||
352 | #~ "opsætningsfilerne eller med kommandolinjetilvalget '-X'." | ||
353 | |||
354 | #~ msgid "More details can be found in /usr/share/doc/ssh/README.Debian" | ||
355 | #~ 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..cabc93d91 --- /dev/null +++ b/debian/po/de.po | |||
@@ -0,0 +1,379 @@ | |||
1 | # Translation of openssh debconf templates to German | ||
2 | # Copyright (C) Helge Kreutzmann <debian@helgefjell.de>, 2006-2008. | ||
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.7p1-9\n" | ||
8 | "Report-Msgid-Bugs-To: openssh@packages.debian.org\n" | ||
9 | "POT-Creation-Date: 2008-05-17 13:58+0200\n" | ||
10 | "PO-Revision-Date: 2008-05-17 23:09+0200\n" | ||
11 | "Last-Translator: Helge Kreutzmann <debian@helgefjell.de>\n" | ||
12 | "Language-Team: de <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: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: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 ein " | ||
35 | "Upgrade durchführen. Dieses Paket kann jetzt eine neue Konfigurationsdatei (/" | ||
36 | "etc/ssh/sshd.config) erzeugen, die mit der neuen Server-Version " | ||
37 | "zusammenarbeitet, aber keine Anpassungen aus der alten Version enthält." | ||
38 | |||
39 | #. Type: boolean | ||
40 | #. Description | ||
41 | #: ../openssh-server.templates: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 | "Bitte beachten Sie, dass die neue Konfigurationsdatei »PermitRootLogin« auf " | ||
49 | "»yes« setzt (was bedeutet, dass jeder, der das Root-Passwort kennt, sich " | ||
50 | "direkt via ssh als root anmelden kann). Bitte lesen Sie die Datei README." | ||
51 | "Debian für weitergehende Informationen über diese Design-Entscheidung." | ||
52 | |||
53 | #. Type: boolean | ||
54 | #. Description | ||
55 | #: ../openssh-server.templates:1001 | ||
56 | msgid "" | ||
57 | "It is strongly recommended that you choose to generate a new configuration " | ||
58 | "file now." | ||
59 | msgstr "" | ||
60 | "Es wird nachdrücklich empfohlen, dass Sie jetzt eine neue " | ||
61 | "Konfigurationsdatei erzeugen." | ||
62 | |||
63 | #. Type: boolean | ||
64 | #. Description | ||
65 | #: ../openssh-server.templates:2001 | ||
66 | msgid "Do you want to risk killing active SSH sessions?" | ||
67 | msgstr "Wollen Sie das Beenden aktiver SSH-Sitzungen riskieren?" | ||
68 | |||
69 | #. Type: boolean | ||
70 | #. Description | ||
71 | #: ../openssh-server.templates: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 | "Die derzeit installierte Version von /etc/init.d/ssh wird vermutlich Ihre " | ||
78 | "aktiven ssh-Instanzen beenden. Falls Sie dieses Upgrade über eine SSH-" | ||
79 | "Sitzung durchführen, dann wird die Verbindung wahrscheinlich getrennt und " | ||
80 | "der Upgrade-Vorgang nicht beendet." | ||
81 | |||
82 | #. Type: boolean | ||
83 | #. Description | ||
84 | #: ../openssh-server.templates: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 | "Dieses Problem kann behoben werden, indem »--pidfile /var/run/sshd.pid« an " | ||
90 | "die start-stop-daemon-Zeile in dem Abschnitt »stop« der Datei /etc/init.d/ssh " | ||
91 | "manuell hinzugefügt wird." | ||
92 | |||
93 | #. Type: note | ||
94 | #. Description | ||
95 | #: ../openssh-server.templates:3001 | ||
96 | msgid "New host key mandatory" | ||
97 | msgstr "Neuer Host-Schlüssel verpflichtend" | ||
98 | |||
99 | #. Type: note | ||
100 | #. Description | ||
101 | #: ../openssh-server.templates:3001 | ||
102 | msgid "" | ||
103 | "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " | ||
104 | "algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " | ||
105 | "utility from the old (non-free) SSH installation does not appear to be " | ||
106 | "available." | ||
107 | msgstr "" | ||
108 | "Der aktuelle Host-Schlüssel in /etc/ssh/ssh_host_key ist mit dem IDEA-" | ||
109 | "Algorithmus verschlüsselt. OpenSSH kann diese Host-Schlüssel-Datei nicht " | ||
110 | "verarbeiten und das ssh-keygen-Hilfswerkzeug von der alten (nicht-freien) " | ||
111 | "SSH-Installation scheint nicht verfügbar zu sein." | ||
112 | |||
113 | #. Type: note | ||
114 | #. Description | ||
115 | #: ../openssh-server.templates:3001 | ||
116 | msgid "You need to manually generate a new host key." | ||
117 | msgstr "Sie müssen manuell einen neuen Host-Schlüssel erzeugen." | ||
118 | |||
119 | #. Type: boolean | ||
120 | #. Description | ||
121 | #: ../openssh-server.templates:4001 | ||
122 | msgid "Disable challenge-response authentication?" | ||
123 | msgstr "Challenge-response-Authentifizierung deaktivieren?" | ||
124 | |||
125 | #. Type: boolean | ||
126 | #. Description | ||
127 | #: ../openssh-server.templates:4001 | ||
128 | msgid "" | ||
129 | "Password authentication appears to be disabled in the current OpenSSH server " | ||
130 | "configuration. In order to prevent users from logging in using passwords " | ||
131 | "(perhaps using only public key authentication instead) with recent versions " | ||
132 | "of OpenSSH, you must disable challenge-response authentication, or else " | ||
133 | "ensure that your PAM configuration does not allow Unix password file " | ||
134 | "authentication." | ||
135 | msgstr "" | ||
136 | "Passwort-Authentifizierung scheint in der aktuellen OpenSSH-Server-" | ||
137 | "Konfiguration deaktiviert zu sein. Um in neueren Versionen von OpenSSH zu " | ||
138 | "verhindern, dass Benutzer sich unter Verwendung von Passwörtern anmelden " | ||
139 | "(möglicherweise stattdessen nur unter Verwendung von Public-Key-" | ||
140 | "Authentifizierung), müssen Sie Challenge-response-Authentifizierung " | ||
141 | "deaktivieren oder ansonsten sicherstellen, dass Ihre PAM-Konfiguration keine " | ||
142 | "Authentifizierung über Unix-Password-Dateien erlaubt." | ||
143 | |||
144 | #. Type: boolean | ||
145 | #. Description | ||
146 | #: ../openssh-server.templates: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 | "Falls Sie Challenge-response-Authentifizierung deaktivieren, werden Benutzer " | ||
154 | "nicht in der Lage sein, sich mit Passwörtern anzumelden. Falls Sie es " | ||
155 | "aktiviert lassen (die Standard-Antwort) wird die »PasswordAuthentication no«-" | ||
156 | "Einstellung keinen nützlichen Effekt haben, es sei denn, sie passen auch " | ||
157 | "Ihre PAM-Konfiguration in /etc/pam.d/ssh an." | ||
158 | |||
159 | #. Type: note | ||
160 | #. Description | ||
161 | #: ../openssh-server.templates:5001 | ||
162 | msgid "Vulnerable host keys will be regenerated" | ||
163 | msgstr "Verwundbare Host-Schlüssel werden neu erzeugt" | ||
164 | |||
165 | #. Type: note | ||
166 | #. Description | ||
167 | #: ../openssh-server.templates:5001 | ||
168 | msgid "" | ||
169 | "Some of the OpenSSH server host keys on this system were generated with a " | ||
170 | "version of OpenSSL that had a broken random number generator. As a result, " | ||
171 | "these host keys are from a well-known set, are subject to brute-force " | ||
172 | "attacks, and must be regenerated." | ||
173 | msgstr "" | ||
174 | "Einige der OpenSSH-Server-Host-Schlüssel auf diesem System wurden mit einer " | ||
175 | "Version von OpenSSL erzeugt, die einen defekten Zufallszahlengenerator " | ||
176 | "hatte. Als Ergebnis stammen diese Host-Schlüssel aus einer wohlbekannten " | ||
177 | "Menge, unterliegen Rechen- (»brute-force«)-angriffen und müssen neu erstellt " | ||
178 | "werden." | ||
179 | |||
180 | #. Type: note | ||
181 | #. Description | ||
182 | #: ../openssh-server.templates:5001 | ||
183 | msgid "" | ||
184 | "Users of this system should be informed of this change, as they will be " | ||
185 | "prompted about the host key change the next time they log in. Use 'ssh-" | ||
186 | "keygen -l -f HOST_KEY_FILE' after the upgrade to print the fingerprints of " | ||
187 | "the new host keys." | ||
188 | msgstr "" | ||
189 | "Die Benutzer dieses Systems sollten über diese Änderung informiert werden, " | ||
190 | "da sie über die Änderung des Host-Schlüssels bei der nächsten Anmeldung " | ||
191 | "befragt werden. Führen Sie nach dem Upgrade »ssh-keygen -l -f " | ||
192 | "HOST_SCHLÜSSEL_DATEI« aus, um die Fingerabdrücke es neuen Host-Schlüssels " | ||
193 | "anzuzeigen." | ||
194 | |||
195 | #. Type: note | ||
196 | #. Description | ||
197 | #: ../openssh-server.templates:5001 | ||
198 | msgid "The affected host keys are:" | ||
199 | msgstr "Die betroffenen Host-Schlüssel sind:" | ||
200 | |||
201 | #. Type: note | ||
202 | #. Description | ||
203 | #: ../openssh-server.templates:5001 | ||
204 | msgid "" | ||
205 | "User keys may also be affected by this problem. The 'ssh-vulnkey' command " | ||
206 | "may be used as a partial test for this. See /usr/share/doc/openssh-server/" | ||
207 | "README.compromised-keys.gz for more details." | ||
208 | msgstr "" | ||
209 | "Die Schüssel der Benutzer könnten auch von diesem Problem betroffen sein. " | ||
210 | "Der Befehl »ssh-vulnkey« kann dazu verwandt werden, dieses Problem teilweise " | ||
211 | "zu ermitteln. Lesen Sie /usr/share/doc/openssh-server/README.compromised-" | ||
212 | "keys.gz für weitere Details." | ||
213 | |||
214 | #~ msgid "Warning: you must create a new host key" | ||
215 | #~ msgstr "Warnung: Sie müssen einen neuen Host-Schlüssel erzeugen" | ||
216 | |||
217 | #~ msgid "Warning: telnetd is installed --- probably not a good idea" | ||
218 | #~ msgstr "Warnung: telnetd ist installiert --- wahrscheinlich keine gute Idee" | ||
219 | |||
220 | #~ msgid "" | ||
221 | #~ "I'd advise you to either remove the telnetd package (if you don't " | ||
222 | #~ "actually need to offer telnet access) or install telnetd-ssl so that " | ||
223 | #~ "there is at least some chance that telnet sessions will not be sending " | ||
224 | #~ "unencrypted login/password and session information over the network." | ||
225 | #~ msgstr "" | ||
226 | #~ "Wir empfehlen das telnetd Paket zu entfernen (falls Sie keinen telnet " | ||
227 | #~ "Zugang anbieten) oder telnetd-ssl zu installieren, so daß Sie verhindern " | ||
228 | #~ "können, daß Login und Passwort unverschlüsselt durch das Netz gesendet " | ||
229 | #~ "werden." | ||
230 | |||
231 | #~ msgid "Warning: rsh-server is installed --- probably not a good idea" | ||
232 | #~ msgstr "" | ||
233 | #~ "Warnung: rsh-server ist installiert --- wahrscheinlich keine gute Idee" | ||
234 | |||
235 | #~ msgid "" | ||
236 | #~ "having rsh-server installed undermines the security that you were " | ||
237 | #~ "probably wanting to obtain by installing ssh. I'd advise you to remove " | ||
238 | #~ "that package." | ||
239 | #~ msgstr "" | ||
240 | #~ "ist es eine schlechte Idee, den rsh-server installiert zu haben, da er " | ||
241 | #~ "die Sicherheit untergräbt. Wir empfehlen, das Paket zu entfernen." | ||
242 | |||
243 | #~ msgid "Do you want ssh-keysign to be installed SUID root?" | ||
244 | #~ msgstr "Möchten Sie ssh-keysign SUID-Root installieren?" | ||
245 | |||
246 | #~ msgid "" | ||
247 | #~ "You have the option of installing the ssh-keysign helper with the SUID " | ||
248 | #~ "bit set." | ||
249 | #~ msgstr "" | ||
250 | #~ "Sie haben die Möglichkeit, den ssh-keysign-Helfer mit gesetzten SUID-Bit " | ||
251 | #~ "zu installieren." | ||
252 | |||
253 | #~ msgid "" | ||
254 | #~ "If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 " | ||
255 | #~ "host-based authentication." | ||
256 | #~ msgstr "" | ||
257 | #~ "Falls Sie ssh-keysign SUID installieren, können Sie die Host-basierende " | ||
258 | #~ "Authentisierung von SSH-Protokoll Version 2 verwenden." | ||
259 | |||
260 | #~ msgid "" | ||
261 | #~ "If in doubt, I suggest you install it with SUID. If it causes problems " | ||
262 | #~ "you can change your mind later by running: dpkg-reconfigure ssh" | ||
263 | #~ msgstr "" | ||
264 | #~ "Falls Sie unsicher sind, empfehle ich, mit SUID zu installieren. Falls es " | ||
265 | #~ "Probleme gibt, können Sie später Ihre Meinung ändern, indem Sie dpkg-" | ||
266 | #~ "reconfigure ssh aufrufen." | ||
267 | |||
268 | #~ msgid "Allow SSH protocol 2 only" | ||
269 | #~ msgstr "Nur SSH-Protokoll Version 2 erlauben" | ||
270 | |||
271 | #~ msgid "" | ||
272 | #~ "This version of OpenSSH supports version 2 of the ssh protocol, which is " | ||
273 | #~ "much more secure. Disabling ssh 1 is encouraged, however this will slow " | ||
274 | #~ "things down on low end machines and might prevent older clients from " | ||
275 | #~ "connecting (the ssh client shipped with \"potato\" is affected)." | ||
276 | #~ msgstr "" | ||
277 | #~ "Diese Version von OpenSSH unterstützt Version 2 des SSH-Protokolls, die " | ||
278 | #~ "sicherer ist. Es wird empfohlen, Version 1 zu deaktivieren, allerdings " | ||
279 | #~ "kann dies Vorgänge auf langsamen Maschinen verzögern und alte Clients an " | ||
280 | #~ "der Verbindungsaufnahme hindern (der ssh-Client von »potato« ist davon " | ||
281 | #~ "betroffen)." | ||
282 | |||
283 | #~ msgid "" | ||
284 | #~ "Also please note that keys used for protocol 1 are different so you will " | ||
285 | #~ "not be able to use them if you only allow protocol 2 connections." | ||
286 | #~ msgstr "" | ||
287 | #~ "Bitte beachten Sie auch, daß sich die für Protokoll 1 verwendeten " | ||
288 | #~ "Schlüssel unterscheiden und Sie diese daher nicht verwenden können, wenn " | ||
289 | #~ "Sie nur Protokoll Version 2-Verbindungen erlauben." | ||
290 | |||
291 | #~ msgid "" | ||
292 | #~ "If you later change your mind about this setting, README.Debian has " | ||
293 | #~ "instructions on what to do to your sshd_config file." | ||
294 | #~ msgstr "" | ||
295 | #~ "Falls Sie später Ihre Meinung über diese Einstellung ändern, finden Sie " | ||
296 | #~ "in README.Debian eine Anleitung was Sie mit der sshd_config-Datei machen " | ||
297 | #~ "müssen." | ||
298 | |||
299 | #~ msgid "NOTE: Forwarding of X11 and Authorization disabled by default." | ||
300 | #~ msgstr "HINWEIS: Weiterleiten von X11 und Berechtigungen ist abgeschaltet." | ||
301 | |||
302 | #~ msgid "" | ||
303 | #~ "For security reasons, the Debian version of ssh has ForwardX11 and " | ||
304 | #~ "ForwardAgent set to ``off'' by default." | ||
305 | #~ msgstr "" | ||
306 | #~ "Aus Sicherheitsgründen ist bei der Debian-Version von ssh ForwardX11 und " | ||
307 | #~ "ForwardAgent auf »off« gesetzt." | ||
308 | |||
309 | #~ msgid "" | ||
310 | #~ "You can enable it for servers you trust, either in one of the " | ||
311 | #~ "configuration files, or with the -X command line option." | ||
312 | #~ msgstr "" | ||
313 | #~ "Sie können dies für Server, denen Sie trauen, entweder per Eintrag in die " | ||
314 | #~ "Konfigurations-Dateien oder per Kommando-Zeilen Option -X ändern." | ||
315 | |||
316 | #~ msgid "More details can be found in /usr/share/doc/ssh/README.Debian" | ||
317 | #~ msgstr "" | ||
318 | #~ "Weitere Details können Sie in /usr/share/doc/ssh/README.Debian finden." | ||
319 | |||
320 | #~ msgid "ssh2 keys merged in configuration files" | ||
321 | #~ msgstr "ssh2-Schlüssel in die Konfigurationsdateien eingefügt" | ||
322 | |||
323 | #~ msgid "" | ||
324 | #~ "As of version 3 OpenSSH no longer uses separate files for ssh1 and ssh2 " | ||
325 | #~ "keys. This means the authorized_keys2 and known_hosts2 files are no " | ||
326 | #~ "longer needed. They will still be read in order to maintain backwards " | ||
327 | #~ "compatibility" | ||
328 | #~ msgstr "" | ||
329 | #~ "Mit Version 3 verwendet OpenSSH nicht mehr separate Dateien für ssh1 und " | ||
330 | #~ "ssh2 Schlüssel. Dies bedeutet, daß authorized_keys2 und known_hosts2 " | ||
331 | #~ "nicht mehr benötigt werden. Sie werden noch eingelesen, um " | ||
332 | #~ "Abwärtskompatibilität zu gewähren." | ||
333 | |||
334 | #~ msgid "Do you want to run the sshd server?" | ||
335 | #~ msgstr "Möchten Sie den sshd Server starten?" | ||
336 | |||
337 | #~ msgid "This package contains both the ssh client, and the sshd server." | ||
338 | #~ msgstr "Das Paket enthält sowohl den Client als auch den sshd Server." | ||
339 | |||
340 | #~ msgid "" | ||
341 | #~ "Normally the sshd Secure Shell Server will be run to allow remote logins " | ||
342 | #~ "via ssh." | ||
343 | #~ msgstr "" | ||
344 | #~ "Normalerweise wird der sshd Secure Shell Server für Remote Logins per " | ||
345 | #~ "sshgestartet." | ||
346 | |||
347 | #~ msgid "" | ||
348 | #~ "If you are only interested in using the ssh client for outbound " | ||
349 | #~ "connections on this machine, and don't want to log into it at all using " | ||
350 | #~ "ssh, then you can disable sshd here." | ||
351 | #~ msgstr "" | ||
352 | #~ "Wenn Sie nur den ssh client nutzen wollen, um sich mit anderen Rechnern " | ||
353 | #~ "zu verbinden, und sich nicht per ssh in diesen Computer einloggen wollen, " | ||
354 | #~ "dann können Sie hier den sshd abschalten." | ||
355 | |||
356 | #~ msgid "Environment options on keys have been deprecated" | ||
357 | #~ msgstr "Umgebungs-Optionen für Schlüssel wurden missbilligt" | ||
358 | |||
359 | #~ msgid "" | ||
360 | #~ "This version of OpenSSH disables the environment option for public keys " | ||
361 | #~ "by default, in order to avoid certain attacks (for example, LD_PRELOAD). " | ||
362 | #~ "If you are using this option in an authorized_keys file, beware that the " | ||
363 | #~ "keys in question will no longer work until the option is removed." | ||
364 | #~ msgstr "" | ||
365 | #~ "Diese Version von OpenSSH deaktiviert standardmäßig die Umgebungsoption " | ||
366 | #~ "füröffentliche Schlüssel um bestimmte Angriffe (zum Beispiel über " | ||
367 | #~ "LD_PRELOAD) zu vermeiden. Falls Sie diese Option in einer authorized_keys-" | ||
368 | #~ "Datei verwenden, beachten Sie, daß die in Frage kommenden Schlüssel nicht " | ||
369 | #~ "funktionieren werden bis diese Option entfernt wurde." | ||
370 | |||
371 | #~ msgid "" | ||
372 | #~ "To re-enable this option, set \"PermitUserEnvironment yes\" in /etc/ssh/" | ||
373 | #~ "sshd_config after the upgrade is complete, taking note of the warning in " | ||
374 | #~ "the sshd_config(5) manual page." | ||
375 | #~ msgstr "" | ||
376 | #~ "Um diese Option wieder zu reaktivieren, setzen Sie, unter " | ||
377 | #~ "Berücksichtigung der Warnung in der sshd_config(5)-Handbuchseite, " | ||
378 | #~ "»PermitUserEnvironment yes« in /etc/ssh/sshd_config nachdem das Upgrade " | ||
379 | #~ "erfolgt ist." | ||
diff --git a/debian/po/el.po b/debian/po/el.po new file mode 100644 index 000000000..77f5cd2c4 --- /dev/null +++ b/debian/po/el.po | |||
@@ -0,0 +1,463 @@ | |||
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: openssh@packages.debian.org\n" | ||
19 | "POT-Creation-Date: 2008-05-17 08:51+0200\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:1001 | ||
31 | #, fuzzy | ||
32 | msgid "Generate a new configuration file for OpenSSH?" | ||
33 | msgstr "ΔημιουÏγία νÎου αÏχείου Ïυθμίσεων" | ||
34 | |||
35 | #. Type: boolean | ||
36 | #. Description | ||
37 | #: ../openssh-server.templates: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: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: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: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: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: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:3001 | ||
129 | msgid "New host key mandatory" | ||
130 | msgstr "" | ||
131 | |||
132 | #. Type: note | ||
133 | #. Description | ||
134 | #: ../openssh-server.templates: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: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:4001 | ||
158 | msgid "Disable challenge-response authentication?" | ||
159 | msgstr "Îα απενεÏγοποιηθεί η πιστοποίηση challenge-response;" | ||
160 | |||
161 | #. Type: boolean | ||
162 | #. Description | ||
163 | #: ../openssh-server.templates: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: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 | #. Type: note | ||
202 | #. Description | ||
203 | #: ../openssh-server.templates:5001 | ||
204 | msgid "Vulnerable host keys will be regenerated" | ||
205 | msgstr "" | ||
206 | |||
207 | #. Type: note | ||
208 | #. Description | ||
209 | #: ../openssh-server.templates:5001 | ||
210 | msgid "" | ||
211 | "Some of the OpenSSH server host keys on this system were generated with a " | ||
212 | "version of OpenSSL that had a broken random number generator. As a result, " | ||
213 | "these host keys are from a well-known set, are subject to brute-force " | ||
214 | "attacks, and must be regenerated." | ||
215 | msgstr "" | ||
216 | |||
217 | #. Type: note | ||
218 | #. Description | ||
219 | #: ../openssh-server.templates:5001 | ||
220 | msgid "" | ||
221 | "Users of this system should be informed of this change, as they will be " | ||
222 | "prompted about the host key change the next time they log in. Use 'ssh-" | ||
223 | "keygen -l -f HOST_KEY_FILE' after the upgrade to print the fingerprints of " | ||
224 | "the new host keys." | ||
225 | msgstr "" | ||
226 | |||
227 | #. Type: note | ||
228 | #. Description | ||
229 | #: ../openssh-server.templates:5001 | ||
230 | msgid "The affected host keys are:" | ||
231 | msgstr "" | ||
232 | |||
233 | #. Type: note | ||
234 | #. Description | ||
235 | #: ../openssh-server.templates:5001 | ||
236 | msgid "" | ||
237 | "User keys may also be affected by this problem. The 'ssh-vulnkey' command " | ||
238 | "may be used as a partial test for this. See /usr/share/doc/openssh-server/" | ||
239 | "README.compromised-keys.gz for more details." | ||
240 | msgstr "" | ||
241 | |||
242 | #~ msgid "Warning: you must create a new host key" | ||
243 | #~ msgstr "" | ||
244 | #~ "Î Ïοσοχή: Ï€ÏÎπει να δημιουÏγήσετε Îνα νÎο κλειδί για τον υπολογιστή (host " | ||
245 | #~ "key)" | ||
246 | |||
247 | #~ msgid "Warning: telnetd is installed --- probably not a good idea" | ||
248 | #~ msgstr "" | ||
249 | #~ "Î Ïοσοχή: είναι ήδη εγκατεστημÎνος ο telnetd --- όχι και τοσο καλή ιδÎα" | ||
250 | |||
251 | #~ msgid "" | ||
252 | #~ "I'd advise you to either remove the telnetd package (if you don't " | ||
253 | #~ "actually need to offer telnet access) or install telnetd-ssl so that " | ||
254 | #~ "there is at least some chance that telnet sessions will not be sending " | ||
255 | #~ "unencrypted login/password and session information over the network." | ||
256 | #~ msgstr "" | ||
257 | #~ "Συνιστάται είτε να αφαιÏÎσετε το πακÎτο telnetd (αν δεν είναι Ï€Ïαγματικά " | ||
258 | #~ "απαÏαίτητη η Ï€Ïόσβαση μÎσω telnet) ή να εγκαταστήσετε το πακÎτο telnetd-" | ||
259 | #~ "ssl, ώστε να υπάÏχει τουλάχιστον μια πιθανότητα οι συνδÎσεις telnet να " | ||
260 | #~ "μην αποστÎλλουν μη κÏυπτογÏαφημÎνες πληÏοφοÏίες κωδικών Ï€Ïόσβασης και " | ||
261 | #~ "συνεδÏιών μÎσω δικτÏου." | ||
262 | |||
263 | #~ msgid "Warning: rsh-server is installed --- probably not a good idea" | ||
264 | #~ msgstr "" | ||
265 | #~ "Î Ïοσοχή: είναι ήδη εγκατεστημÎνος ο rsh-server --- όχι και τοσο καλή ιδÎα" | ||
266 | |||
267 | #~ msgid "" | ||
268 | #~ "having rsh-server installed undermines the security that you were " | ||
269 | #~ "probably wanting to obtain by installing ssh. I'd advise you to remove " | ||
270 | #~ "that package." | ||
271 | #~ msgstr "" | ||
272 | #~ "Η παÏουσία του rsh-server υπονομεÏει την ασφάλεια του συστήματος, την " | ||
273 | #~ "οποία θÎλετε να εξασφαλίσετε με την εγκατάσταση του ssh. Συνιστάται η " | ||
274 | #~ "αφαίÏεση Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… πακÎτου." | ||
275 | |||
276 | #~ msgid "Do you want ssh-keysign to be installed SUID root?" | ||
277 | #~ msgstr "ΘÎλετε να εγκαταστήσετε το ssh-keysign ως SUID;" | ||
278 | |||
279 | #~ msgid "" | ||
280 | #~ "You have the option of installing the ssh-keysign helper with the SUID " | ||
281 | #~ "bit set." | ||
282 | #~ msgstr "" | ||
283 | #~ "Έχετε την επιλογή της εγκατάστασης του εÏγαλείου ssh-keysign με το bit " | ||
284 | #~ "SUID ενεÏγοποιημÎνο." | ||
285 | |||
286 | #~ msgid "" | ||
287 | #~ "If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 " | ||
288 | #~ "host-based authentication." | ||
289 | #~ msgstr "" | ||
290 | #~ "Αν εγκαταστήσετε το ssh-keysign SUID, θα μποÏείτε να χÏησιμοποιήσετε την " | ||
291 | #~ "πιστοποίηση υπολογιστή (host-based authentication) του Ï€Ïωτοκόλου SSH 2." | ||
292 | |||
293 | #~ msgid "" | ||
294 | #~ "If in doubt, I suggest you install it with SUID. If it causes problems " | ||
295 | #~ "you can change your mind later by running: dpkg-reconfigure ssh" | ||
296 | #~ msgstr "" | ||
297 | #~ "Αν Îχετε αμφιβολίες, συνιστάται να το εγκαταστήσετε SUID. Αν " | ||
298 | #~ "διαπιστώσετε Ï€Ïοβλήματα μποÏείτε να αλλάξετε τη ÏÏθμιση αυτή εκτελώντας: " | ||
299 | #~ "dpkg-reconfigure ssh" | ||
300 | |||
301 | #~ msgid "Allow SSH protocol 2 only" | ||
302 | #~ msgstr "Îα επιτÏÎπεται μόνο η χÏήση του Ï€Ïωτοκόλλου SSH 2" | ||
303 | |||
304 | #~ msgid "" | ||
305 | #~ "This version of OpenSSH supports version 2 of the ssh protocol, which is " | ||
306 | #~ "much more secure. Disabling ssh 1 is encouraged, however this will slow " | ||
307 | #~ "things down on low end machines and might prevent older clients from " | ||
308 | #~ "connecting (the ssh client shipped with \"potato\" is affected)." | ||
309 | #~ msgstr "" | ||
310 | #~ "Αυτή η Îκδοση του OpenSSH υποστηÏίζει την Îκδοση 2 του Ï€Ïωτοκόλλου ssh, " | ||
311 | #~ "που είναι Ï€Î¿Î»Ï Ï€Î¹Î¿ ασφαλής. Συνιστάται η απενεÏγοποίηση της Îκδοσης 1, " | ||
312 | #~ "ωστόσο αυτό θα γίνει εις βάÏος της ταχÏτητας σε χαμηλότεÏων επιδόσεων " | ||
313 | #~ "συστήματα και θα απαγοÏÎψει τη σÏνδεση σε παλαιότεÏα Ï€ÏογÏάμματα-πελάτες " | ||
314 | #~ "(Ï€.χ. ο πελάτης ssh που διανÎμεται με την Îκδοση \"potato\")." | ||
315 | |||
316 | #~ msgid "" | ||
317 | #~ "Also please note that keys used for protocol 1 are different so you will " | ||
318 | #~ "not be able to use them if you only allow protocol 2 connections." | ||
319 | #~ msgstr "" | ||
320 | #~ "Επίσης, σημειώστε ότι τα κλειδιά που χÏησιμοποιοÏνταν στο Ï€Ïωτόκολλο 1 " | ||
321 | #~ "είναι διαφοÏετικά και δε θα είναι δυνατή η χÏήση τους αν επιτÏÎψετε μόνο " | ||
322 | #~ "τις συνδÎσεις με το Ï€Ïωτόκολλο 2." | ||
323 | |||
324 | #~ msgid "" | ||
325 | #~ "If you later change your mind about this setting, README.Debian has " | ||
326 | #~ "instructions on what to do to your sshd_config file." | ||
327 | #~ msgstr "" | ||
328 | #~ "Αν αποφασίσετε διαφοÏετικά αÏγότεÏα για αυτή τη ÏÏθμιση, το αÏχείο README." | ||
329 | #~ "Debian Îχει οδηγίες για την κατάλληλη Ï„Ïοποποίηση του αÏχείου sshd_config." | ||
330 | |||
331 | #~ msgid "NOTE: Forwarding of X11 and Authorization disabled by default." | ||
332 | #~ msgstr "" | ||
333 | #~ "ΣΗΜΕΙΩΣΗ: Η Ï€Ïοώθηση των πακÎτων X11 και πιστοποίησης είναι " | ||
334 | #~ "απενεÏγοποιημÎνηεξ οÏισμοÏ." | ||
335 | |||
336 | #~ msgid "" | ||
337 | #~ "For security reasons, the Debian version of ssh has ForwardX11 and " | ||
338 | #~ "ForwardAgent set to ``off'' by default." | ||
339 | #~ msgstr "" | ||
340 | #~ "Για λόγους ασφαλείας, η Îκδοση του ssh στο Debian Îχει τις επιλογÎÏ‚ " | ||
341 | #~ "ForwardX11 και ForwardAgent οÏισμÎνες σε ``off'' εξ οÏισμοÏ." | ||
342 | |||
343 | #~ msgid "" | ||
344 | #~ "You can enable it for servers you trust, either in one of the " | ||
345 | #~ "configuration files, or with the -X command line option." | ||
346 | #~ msgstr "" | ||
347 | #~ "ΜποÏείτε να τα ενεÏγοποιήσετε για διακομιστÎÏ‚ που εμπιστεÏεστε, είτε σε " | ||
348 | #~ "Îνα από τα αÏχεία Ïυθμίσεων, είτε μÎσω της επιλογής -X στη γÏαμμή εντολών." | ||
349 | |||
350 | #~ msgid "More details can be found in /usr/share/doc/ssh/README.Debian" | ||
351 | #~ msgstr "" | ||
352 | #~ "ΠεÏισσότεÏες λεπτομÎÏειες μποÏείτε να βÏείτε στο αÏχείο /usr/share/doc/" | ||
353 | #~ "ssh/README.Debian" | ||
354 | |||
355 | #~ msgid "ssh2 keys merged in configuration files" | ||
356 | #~ msgstr "Τα κλειδιά ssh2 συγχωνεÏτηκαν στα αÏχεία Ïυθμίσεων" | ||
357 | |||
358 | #~ msgid "" | ||
359 | #~ "As of version 3 OpenSSH no longer uses separate files for ssh1 and ssh2 " | ||
360 | #~ "keys. This means the authorized_keys2 and known_hosts2 files are no " | ||
361 | #~ "longer needed. They will still be read in order to maintain backwards " | ||
362 | #~ "compatibility" | ||
363 | #~ msgstr "" | ||
364 | #~ "Από την Îκδοση 3 και Îπειτα, το OpenSSH δεν χÏησιμοποιεί πλÎον ξεχωÏιστά " | ||
365 | #~ "αÏχεία για τα κλειδιά των ssh1 και ssh2. Αυτό σημαίνει ότι τα αÏχεία " | ||
366 | #~ "authorized_keys2 και known_hosts2 δεν είναι πλÎον απαÏαίτητα. Θα " | ||
367 | #~ "χÏησιμοποιοÏνται μόνο για λόγους συμβατότητας." | ||
368 | |||
369 | #~ msgid "Do you want to run the sshd server?" | ||
370 | #~ msgstr "ΘÎλετε να εκτελÎσετε τον δαίμονα sshd;" | ||
371 | |||
372 | #~ msgid "This package contains both the ssh client, and the sshd server." | ||
373 | #~ msgstr "Το πακÎτο αυτό πεÏιÎχει το πελάτη ssh και το δαίμονα sshd." | ||
374 | |||
375 | #~ msgid "" | ||
376 | #~ "Normally the sshd Secure Shell Server will be run to allow remote logins " | ||
377 | #~ "via ssh." | ||
378 | #~ msgstr "" | ||
379 | #~ "Κανονικά ο δαίμονας sshd (Δαίμονας ΑσφαλοÏÏ‚ ΚελÏφους) θα εκτελείται για " | ||
380 | #~ "απομακÏυσμÎνες συνδÎσεις μÎσω ssh." | ||
381 | |||
382 | #~ msgid "" | ||
383 | #~ "If you are only interested in using the ssh client for outbound " | ||
384 | #~ "connections on this machine, and don't want to log into it at all using " | ||
385 | #~ "ssh, then you can disable sshd here." | ||
386 | #~ msgstr "" | ||
387 | #~ "Αν ενδιαφÎÏεστε μόνο για τη χÏήση του πελάτη ssh για εξεÏχόμενες " | ||
388 | #~ "συνδÎσεις από αυτόν τον υπολογιστή και δεν επιθυμείτε να συνδÎεστε σε " | ||
389 | #~ "αυτόν μÎσω ssh, τότε μποÏείτε να απενεÏγοποιήσετε τον sshd στο σημείο " | ||
390 | #~ "αυτό." | ||
391 | |||
392 | #~ msgid "Environment options on keys have been deprecated" | ||
393 | #~ msgstr "" | ||
394 | #~ "Οι επιλογÎÏ‚ πεÏιβάλλοντος κελÏφους για τα κλειδιά είναι πλÎον παÏωχημÎνες." | ||
395 | |||
396 | #~ msgid "" | ||
397 | #~ "This version of OpenSSH disables the environment option for public keys " | ||
398 | #~ "by default, in order to avoid certain attacks (for example, LD_PRELOAD). " | ||
399 | #~ "If you are using this option in an authorized_keys file, beware that the " | ||
400 | #~ "keys in question will no longer work until the option is removed." | ||
401 | #~ msgstr "" | ||
402 | #~ "Αυτή η Îκδοση του OpenSSH απενεÏγοποιεί τις επιλογÎÏ‚ πεÏιβάλλοντος " | ||
403 | #~ "κελÏφους για δημόσια κλειδιά εξ οÏισμοÏ, ώστε να αποφευχθοÏν οÏισμÎνου " | ||
404 | #~ "Ï„Ïπου επιθÎσεις (για παÏάδειγμα, LD_PRELOAD). Αν χÏησιμοποιείτε αυτήν την " | ||
405 | #~ "επιλογή σε Îνα αÏχείο authorized_keys, Îχετε υπόψιν σας ότι τα " | ||
406 | #~ "συγκεκÏιμÎνα κλειδιά δεν θα χÏησιμοποιοÏνται Îως ότου αφαιÏεθεί η επιλογή " | ||
407 | #~ "αυτή." | ||
408 | |||
409 | #~ msgid "" | ||
410 | #~ "To re-enable this option, set \"PermitUserEnvironment yes\" in /etc/ssh/" | ||
411 | #~ "sshd_config after the upgrade is complete, taking note of the warning in " | ||
412 | #~ "the sshd_config(5) manual page." | ||
413 | #~ msgstr "" | ||
414 | #~ "Για να επανενεÏγοποιήσετε αυτήν την επιλογή, οÏίστε " | ||
415 | #~ "\"PermitUserEnvironment yes\" στο αÏχείο /etc/ssh/sshd_config μετά το " | ||
416 | #~ "Ï„Îλος της αναβάθμισης, Îχοντας υπόψιν την Ï€Ïοειδοποίηση στη σελίδα " | ||
417 | #~ "οδηγιών του sshd_config(5)." | ||
418 | |||
419 | #~ msgid "Privilege separation" | ||
420 | #~ msgstr "ΔιαχωÏισμός Î Ïονομίων" | ||
421 | |||
422 | #~ msgid "" | ||
423 | #~ "Privilege separation is turned on by default, so if you decide you want " | ||
424 | #~ "it turned off, you need to add \"UsePrivilegeSeparation no\" to /etc/ssh/" | ||
425 | #~ "sshd_config." | ||
426 | #~ msgstr "" | ||
427 | #~ "Ο διαχωÏισμός Ï€Ïονομίων είναι ενεÏγοποιημÎνος εξ οÏισμοÏ, οπότε αν " | ||
428 | #~ "αποφασίσετε ότι θÎλετε να τον απενεÏγοποιήσετε, Ï€ÏÎπει να Ï€ÏοσθÎσετε την " | ||
429 | #~ "ÏÏθμιση \"UsePrivilegeSeparation no\" στο αÏχείο sshd_config." | ||
430 | |||
431 | #~ msgid "Enable Privilege separation" | ||
432 | #~ msgstr "ΕνεÏγοποίηση ΔιαχωÏÎ¹ÏƒÎ¼Î¿Ï Î Ïονομίων" | ||
433 | |||
434 | #~ msgid "" | ||
435 | #~ "This version of OpenSSH contains the new privilege separation option. " | ||
436 | #~ "This significantly reduces the quantity of code that runs as root, and " | ||
437 | #~ "therefore reduces the impact of security holes in sshd." | ||
438 | #~ msgstr "" | ||
439 | #~ "Αυτή η Îκδοση του OpenSSH πεÏιλαμβάνει τη νÎα επιλογή διαχωÏÎ¹ÏƒÎ¼Î¿Ï " | ||
440 | #~ "Ï€Ïονομίων. Αυτό μειώνει δÏαστικά το ποσοστό των Ï€ÏογÏαμμάτων που " | ||
441 | #~ "εκτελοÏνται ως root, και κατά συνÎπεια και τις Ï„ÏÏπες ασφαλείας του sshd." | ||
442 | |||
443 | #~ msgid "" | ||
444 | #~ "Unfortunately, privilege separation interacts badly with PAM. Any PAM " | ||
445 | #~ "session modules that need to run as root (pam_mkhomedir, for example) " | ||
446 | #~ "will fail, and PAM keyboard-interactive authentication won't work." | ||
447 | #~ msgstr "" | ||
448 | #~ "Δυστυχώς, ο διαχωÏισμός Ï€Ïονομίων δεν συνεÏγάζεται σωστά με το PAM. " | ||
449 | #~ "Οποιεσδήποτε μονάδες συνεδÏίας (session modules) του PAM που Ï€ÏÎπει να " | ||
450 | #~ "εκτελεστοÏν ως root (pam_mkhomedir, για παÏάδειγμα) θα αποτÏχουν, και η " | ||
451 | #~ "πιστοποίηση μÎσω πληκτÏολογίου στο PAM δεν θα λειτουÏγεί." | ||
452 | |||
453 | #~ msgid "" | ||
454 | #~ "Since you've opted to have me generate an sshd_config file for you, you " | ||
455 | #~ "can choose whether or not to have privilege separation turned on or not. " | ||
456 | #~ "Unless you know you need to use PAM features that won't work with this " | ||
457 | #~ "option, you should enable it." | ||
458 | #~ msgstr "" | ||
459 | #~ "Εφόσον Îχετε επιλÎξει να δημιουÏγήθεί αυτόματα το αÏχείο sshd_config, " | ||
460 | #~ "μποÏείτε να επιλÎξετε επίσης αν θÎλετε να ενεÏγοποιήσετε το διαχωÏισμό " | ||
461 | #~ "Ï€Ïονομίων ή όχι. Εκτός αν γνωÏίζετε ότι χÏειάζεστε να χÏησιμοποιήσετε " | ||
462 | #~ "χαÏακτηÏιστικά του PAM που δε συνεÏγάζονται με αυτή την επιλογή, " | ||
463 | #~ "συνιστάται να την ενεÏγοποιήσετε." | ||
diff --git a/debian/po/es.po b/debian/po/es.po new file mode 100644 index 000000000..f1faf50d0 --- /dev/null +++ b/debian/po/es.po | |||
@@ -0,0 +1,459 @@ | |||
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-2008 | ||
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: openssh@packages.debian.org\n" | ||
36 | "POT-Creation-Date: 2008-05-17 13:58+0200\n" | ||
37 | "PO-Revision-Date: 2008-05-22 00:56+0200\n" | ||
38 | "Last-Translator: Javier Fernandez-Sanguino Peña <jfs@debian.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 | "X-POFile-SpellExtra: usr pid PasswordAuthentication PermitRootLogin server\n" | ||
44 | "X-POFile-SpellExtra: PAM start OpenSSH OpenSSL init sshhostkey daemon var\n" | ||
45 | "X-POFile-SpellExtra: config pam pidfile vulnkey run Potato keys share stop\n" | ||
46 | "X-POFile-SpellExtra: gz README ssh sshd doc keygen ARCHIVOCLAVESISTEMA SSH\n" | ||
47 | "X-POFile-SpellExtra: openssh root compromised\n" | ||
48 | |||
49 | #. Type: boolean | ||
50 | #. Description | ||
51 | #: ../openssh-server.templates:1001 | ||
52 | msgid "Generate a new configuration file for OpenSSH?" | ||
53 | msgstr "¿Desea generar un nuevo fichero de configuración para OpenSSH?" | ||
54 | |||
55 | #. Type: boolean | ||
56 | #. Description | ||
57 | #: ../openssh-server.templates:1001 | ||
58 | msgid "" | ||
59 | "This version of OpenSSH has a considerably changed configuration file from " | ||
60 | "the version shipped in Debian 'Potato', which you appear to be upgrading " | ||
61 | "from. This package can now generate a new configuration file (/etc/ssh/sshd." | ||
62 | "config), which will work with the new server version, but will not contain " | ||
63 | "any customizations you made with the old version." | ||
64 | msgstr "" | ||
65 | "Esta versión de OpenSSH ha cambiado considerablemente el fichero de " | ||
66 | "configuración del incluido en Debian 'Potato', que es la versión desde la " | ||
67 | "que parece estar actualizando. Puede crear automáticamente un nuevo fichero " | ||
68 | "de configuración (/etc/ssh/sshd.config), que funcionará con la nueva versión " | ||
69 | "del servidor, pero no incluirá las modificaciones que hiciera en la versión " | ||
70 | "antigua." | ||
71 | |||
72 | #. Type: boolean | ||
73 | #. Description | ||
74 | #: ../openssh-server.templates:1001 | ||
75 | msgid "" | ||
76 | "Please note that this new configuration file will set the value of " | ||
77 | "'PermitRootLogin' to 'yes' (meaning that anyone knowing the root password " | ||
78 | "can ssh directly in as root). Please read the README.Debian file for more " | ||
79 | "details about this design choice." | ||
80 | msgstr "" | ||
81 | "Además, recuerde que este nuevo fichero de configuración dirá sí en la " | ||
82 | "opción «PermitRootLogin», por lo que cualquiera que conozca la contraseña de " | ||
83 | "root podrá entrar mediante ssh directamente como root. Puede leer README." | ||
84 | "Debian si quiere conocer más información sobre esta elección de diseño." | ||
85 | |||
86 | #. Type: boolean | ||
87 | #. Description | ||
88 | #: ../openssh-server.templates:1001 | ||
89 | msgid "" | ||
90 | "It is strongly recommended that you choose to generate a new configuration " | ||
91 | "file now." | ||
92 | msgstr "" | ||
93 | "Es muy recomendable que elija generar un nuevo fichero de configuración " | ||
94 | "ahora." | ||
95 | |||
96 | #. Type: boolean | ||
97 | #. Description | ||
98 | #: ../openssh-server.templates:2001 | ||
99 | msgid "Do you want to risk killing active SSH sessions?" | ||
100 | msgstr "¿Desea correr el riesgo de matar las sesiones SSH activas?" | ||
101 | |||
102 | #. Type: boolean | ||
103 | #. Description | ||
104 | #: ../openssh-server.templates:2001 | ||
105 | msgid "" | ||
106 | "The currently installed version of /etc/init.d/ssh is likely to kill all " | ||
107 | "running sshd instances. If you are doing this upgrade via an SSH session, " | ||
108 | "you're likely to be disconnected and leave the upgrade procedure unfinished." | ||
109 | msgstr "" | ||
110 | "La versión de /etc/init.d/ssh que tiene instalada es muy probable que mate " | ||
111 | "todas las estancias que están ejecutándose de sshd. Es muy probable que se " | ||
112 | "le desconecte y el procedimiento de actualización quede a medidas si " | ||
113 | "continúa y está realizando esta actualizando." | ||
114 | |||
115 | #. Type: boolean | ||
116 | #. Description | ||
117 | #: ../openssh-server.templates:2001 | ||
118 | msgid "" | ||
119 | "This can be fixed by manually adding \"--pidfile /var/run/sshd.pid\" to the " | ||
120 | "start-stop-daemon line in the stop section of the file." | ||
121 | msgstr "" | ||
122 | "Puede arreglarlo añadiendo manualmente «--pidfile /var/run/sshd.pid» a la " | ||
123 | "línea «start-stop-daemon», en la sección «stop» del fichero." | ||
124 | |||
125 | #. Type: note | ||
126 | #. Description | ||
127 | #: ../openssh-server.templates:3001 | ||
128 | msgid "New host key mandatory" | ||
129 | msgstr "Nueva clave de sistema obligatoria" | ||
130 | |||
131 | #. Type: note | ||
132 | #. Description | ||
133 | #: ../openssh-server.templates:3001 | ||
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 | "La clave actual de su sistema, en /etc/ssh/ssh_host_key, está cifrada con el " | ||
141 | "algoritmo IDEA. OpenSSH no puede manejar este fichero de clave y tampoco " | ||
142 | "parece estar disponible la utilidad «ssh-keygen» de la instalación antigua de " | ||
143 | "SSH (no libre)." | ||
144 | |||
145 | #. Type: note | ||
146 | #. Description | ||
147 | #: ../openssh-server.templates:3001 | ||
148 | msgid "You need to manually generate a new host key." | ||
149 | msgstr "Debe generar manualmente una nueva clave de sistema." | ||
150 | |||
151 | #. Type: boolean | ||
152 | #. Description | ||
153 | #: ../openssh-server.templates:4001 | ||
154 | msgid "Disable challenge-response authentication?" | ||
155 | msgstr "¿Desea deshabilitar la autenticación basada en desafío-respuesta?" | ||
156 | |||
157 | #. Type: boolean | ||
158 | #. Description | ||
159 | #: ../openssh-server.templates:4001 | ||
160 | msgid "" | ||
161 | "Password authentication appears to be disabled in the current OpenSSH server " | ||
162 | "configuration. In order to prevent users from logging in using passwords " | ||
163 | "(perhaps using only public key authentication instead) with recent versions " | ||
164 | "of OpenSSH, you must disable challenge-response authentication, or else " | ||
165 | "ensure that your PAM configuration does not allow Unix password file " | ||
166 | "authentication." | ||
167 | msgstr "" | ||
168 | "Parece que la configuración actual de su servidor de OpenSSH tiene " | ||
169 | "deshabilitada la autenticación mediante contraseñas. En las versiones " | ||
170 | "recientes de OpenSSH para impedir que los usuarios se puedan conectar con " | ||
171 | "contraseñas (y obligar la utilización de sistemas de autenticación con clave " | ||
172 | "pública) debe deshabilitar la autenticación basada en desafío-respuesta o " | ||
173 | "asegurarse de que su configuración PAM no permite autenticación basada en el " | ||
174 | "fichero de contraseñas Unix." | ||
175 | |||
176 | #. Type: boolean | ||
177 | #. Description | ||
178 | #: ../openssh-server.templates:4001 | ||
179 | msgid "" | ||
180 | "If you disable challenge-response authentication, then users will not be " | ||
181 | "able to log in using passwords. If you leave it enabled (the default " | ||
182 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
183 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
184 | msgstr "" | ||
185 | "Si deshabilita la autenticación mediante desafío-respuesta los usuarios no " | ||
186 | "podrán acceder con contraseñas. Si la deja habilitada (respuesta por " | ||
187 | "omisión) entonces la opción «PasswordAuthentication no» no tendrá ninguna " | ||
188 | "utilidad a menos que ajuste su configuración de PAM en «/etc/pam.d/ssh»." | ||
189 | |||
190 | #. Type: note | ||
191 | #. Description | ||
192 | #: ../openssh-server.templates:5001 | ||
193 | msgid "Vulnerable host keys will be regenerated" | ||
194 | msgstr "Se regenerarán las claves vulnerables del sistema" | ||
195 | |||
196 | #. Type: note | ||
197 | #. Description | ||
198 | #: ../openssh-server.templates:5001 | ||
199 | msgid "" | ||
200 | "Some of the OpenSSH server host keys on this system were generated with a " | ||
201 | "version of OpenSSL that had a broken random number generator. As a result, " | ||
202 | "these host keys are from a well-known set, are subject to brute-force " | ||
203 | "attacks, and must be regenerated." | ||
204 | msgstr "" | ||
205 | "Algunas de las claves de sistema del servidor OpenSSH en este equipo se " | ||
206 | "generaron con una versión de OpenSSL que tenía un generador de números " | ||
207 | "aleatorios defectuoso. Consecuentemente, estas claves de sistema son de un " | ||
208 | "conjunto de claves conocidas y están sujetas a ataques de fuerza bruta por " | ||
209 | "lo que conviene regenerarlas." | ||
210 | |||
211 | #. Type: note | ||
212 | #. Description | ||
213 | #: ../openssh-server.templates:5001 | ||
214 | msgid "" | ||
215 | "Users of this system should be informed of this change, as they will be " | ||
216 | "prompted about the host key change the next time they log in. Use 'ssh-" | ||
217 | "keygen -l -f HOST_KEY_FILE' after the upgrade to print the fingerprints of " | ||
218 | "the new host keys." | ||
219 | msgstr "" | ||
220 | "Se informará a los usuarios de este sistema ya que se les informará del " | ||
221 | "cambio de clave la siguiente vez que se conecten. Utilice «ssh-keygen -l -f " | ||
222 | "ARCHIVO_CLAVE_SISTEMA» después de la actualización para obtener la huella " | ||
223 | "digital de las nuevas claves del sistema." | ||
224 | |||
225 | #. Type: note | ||
226 | #. Description | ||
227 | #: ../openssh-server.templates:5001 | ||
228 | msgid "The affected host keys are:" | ||
229 | msgstr "Las claves del sistema afectadas son:" | ||
230 | |||
231 | #. Type: note | ||
232 | #. Description | ||
233 | #: ../openssh-server.templates:5001 | ||
234 | msgid "" | ||
235 | "User keys may also be affected by this problem. The 'ssh-vulnkey' command " | ||
236 | "may be used as a partial test for this. See /usr/share/doc/openssh-server/" | ||
237 | "README.compromised-keys.gz for more details." | ||
238 | msgstr "" | ||
239 | "Las claves de los usuarios también pueden estar afectadas por este problema. " | ||
240 | "Se puede utilizar el programa «ssh-vulnkey» como un test parcial para " | ||
241 | "detectar el problema. Consulte la información en «/usr/share/doc/openssh-" | ||
242 | "server/README.compromised-keys.gz» para conocer los detalles." | ||
243 | |||
244 | #~ msgid "Warning: you must create a new host key" | ||
245 | #~ msgstr "Aviso: debe crear una nueva clave para su servidor" | ||
246 | |||
247 | #~ msgid "Warning: telnetd is installed --- probably not a good idea" | ||
248 | #~ msgstr "Aviso: tiene telnetd instalado (posiblemente no es una buena idea)" | ||
249 | |||
250 | #~ msgid "" | ||
251 | #~ "I'd advise you to either remove the telnetd package (if you don't " | ||
252 | #~ "actually need to offer telnet access) or install telnetd-ssl so that " | ||
253 | #~ "there is at least some chance that telnet sessions will not be sending " | ||
254 | #~ "unencrypted login/password and session information over the network." | ||
255 | #~ msgstr "" | ||
256 | #~ "Es muy aconsejable que borre el paquete telnetd si no necesita realmente " | ||
257 | #~ "ofrecer acceso mediante telnet o instalar telnetd-ssl para que las " | ||
258 | #~ "contraseñas, nombres de usuario y demás información de las sesiones " | ||
259 | #~ "telnet no viajen sin cifrar por la red." | ||
260 | |||
261 | #~ msgid "Warning: rsh-server is installed --- probably not a good idea" | ||
262 | #~ msgstr "" | ||
263 | #~ "Aviso: tiene rsh-server instalado (seguramente, esto no es una buena idea)" | ||
264 | |||
265 | #~ msgid "" | ||
266 | #~ "having rsh-server installed undermines the security that you were " | ||
267 | #~ "probably wanting to obtain by installing ssh. I'd advise you to remove " | ||
268 | #~ "that package." | ||
269 | #~ msgstr "" | ||
270 | #~ "Tener rsh-server instalado representa un menoscabo de la seguridad que " | ||
271 | #~ "probablemente desea obtener instalando ssh. Es muy aconsejable que borre " | ||
272 | #~ "ese paquete." | ||
273 | |||
274 | #~ msgid "Do you want ssh-keysign to be installed SUID root?" | ||
275 | #~ msgstr "¿Quiere instalar ssh-keysign SUID root?" | ||
276 | |||
277 | #~ msgid "" | ||
278 | #~ "You have the option of installing the ssh-keysign helper with the SUID " | ||
279 | #~ "bit set." | ||
280 | #~ msgstr "" | ||
281 | #~ "Puede instalar ssh-keysign con el bit SUID (se ejecutará con privilegios " | ||
282 | #~ "de root)." | ||
283 | |||
284 | #~ msgid "" | ||
285 | #~ "If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 " | ||
286 | #~ "host-based authentication." | ||
287 | #~ msgstr "" | ||
288 | #~ "Si hace ssh-keysign SUID, podrá usar la autenticación basada en servidor " | ||
289 | #~ "de la versión 2 del protocolo SSH." | ||
290 | |||
291 | #~ msgid "" | ||
292 | #~ "If in doubt, I suggest you install it with SUID. If it causes problems " | ||
293 | #~ "you can change your mind later by running: dpkg-reconfigure ssh" | ||
294 | #~ msgstr "" | ||
295 | #~ "Si duda, se recomienda que lo instale SUID. Si le causa problemas puede " | ||
296 | #~ "cambiar de opinión posteriormente ejecutando «dpkg-reconfigure ssh»." | ||
297 | |||
298 | #~ msgid "Allow SSH protocol 2 only" | ||
299 | #~ msgstr "Permitir sólo la versión 2 del protocolo SSH" | ||
300 | |||
301 | #~ msgid "" | ||
302 | #~ "This version of OpenSSH supports version 2 of the ssh protocol, which is " | ||
303 | #~ "much more secure. Disabling ssh 1 is encouraged, however this will slow " | ||
304 | #~ "things down on low end machines and might prevent older clients from " | ||
305 | #~ "connecting (the ssh client shipped with \"potato\" is affected)." | ||
306 | #~ msgstr "" | ||
307 | #~ "Esta versión de OpenSSH soporta la versión 2 del protocolo ssh, que es " | ||
308 | #~ "mucho más segura que la anterior. Se recomienda desactivar la versión 1, " | ||
309 | #~ "aunque funcionará más lento en máquinas modestas y puede impedir que se " | ||
310 | #~ "conecten clientes antiguos, como, por ejemplo, el incluido en «potato»." | ||
311 | |||
312 | #~ msgid "" | ||
313 | #~ "Also please note that keys used for protocol 1 are different so you will " | ||
314 | #~ "not be able to use them if you only allow protocol 2 connections." | ||
315 | #~ msgstr "" | ||
316 | #~ "También tenga en cuenta que las claves utilizadas para el protocolo 1 son " | ||
317 | #~ "diferentes, por lo que no podrá usarlas si únicamente permite conexiones " | ||
318 | #~ "mediante la versión 2 del protocolo." | ||
319 | |||
320 | #~ msgid "" | ||
321 | #~ "If you later change your mind about this setting, README.Debian has " | ||
322 | #~ "instructions on what to do to your sshd_config file." | ||
323 | #~ msgstr "" | ||
324 | #~ "Si más tarde cambia de opinión, el fichero README.Debian contiene " | ||
325 | #~ "instrucciones sobre cómo modificar en el fichero sshd_config." | ||
326 | |||
327 | #~ msgid "NOTE: Forwarding of X11 and Authorization disabled by default." | ||
328 | #~ msgstr "NOTA: Reenvío de X11 y Autorización desactivadas por defecto." | ||
329 | |||
330 | #~ msgid "" | ||
331 | #~ "For security reasons, the Debian version of ssh has ForwardX11 and " | ||
332 | #~ "ForwardAgent set to ``off'' by default." | ||
333 | #~ msgstr "" | ||
334 | #~ "Por razones de seguridad, la versión de ssh de Debian tiene por defecto " | ||
335 | #~ "ForwardX11 y ForwardAgent desactivadas." | ||
336 | |||
337 | #~ msgid "" | ||
338 | #~ "You can enable it for servers you trust, either in one of the " | ||
339 | #~ "configuration files, or with the -X command line option." | ||
340 | #~ msgstr "" | ||
341 | #~ "Puede activar estas opciones para los servidores en los que confíe, en " | ||
342 | #~ "los ficheros de configuración o con la opción -X en línea de comandos." | ||
343 | |||
344 | #~ msgid "More details can be found in /usr/share/doc/ssh/README.Debian" | ||
345 | #~ msgstr "Puede encontrar más detalles en /usr/share/doc/ssh/README.Debian." | ||
346 | |||
347 | #~ msgid "ssh2 keys merged in configuration files" | ||
348 | #~ msgstr "Las claves ssh2 ya se incluyen en los ficheros de configuración" | ||
349 | |||
350 | #~ msgid "" | ||
351 | #~ "As of version 3 OpenSSH no longer uses separate files for ssh1 and ssh2 " | ||
352 | #~ "keys. This means the authorized_keys2 and known_hosts2 files are no " | ||
353 | #~ "longer needed. They will still be read in order to maintain backwards " | ||
354 | #~ "compatibility" | ||
355 | #~ msgstr "" | ||
356 | #~ "A partir de la versión 3, OpenSSH ya no utiliza ficheros diferentes para " | ||
357 | #~ "las claves ssh1 y ssh2. Esto quiere decir que ya no son necesarios los " | ||
358 | #~ "ficheros authorized_keys2 y known_hosts2, aunque aún se seguirán leyendo " | ||
359 | #~ "para mantener compatibilidad hacia atrás." | ||
360 | |||
361 | #~ msgid "Do you want to run the sshd server?" | ||
362 | #~ msgstr "¿Quiere ejecutar el servidor sshd?" | ||
363 | |||
364 | #~ msgid "This package contains both the ssh client, and the sshd server." | ||
365 | #~ msgstr "Este paquete contiene el cliente ssh y el servidor sshd." | ||
366 | |||
367 | #~ msgid "" | ||
368 | #~ "Normally the sshd Secure Shell Server will be run to allow remote logins " | ||
369 | #~ "via ssh." | ||
370 | #~ msgstr "" | ||
371 | #~ "Generalmente, el servidor de ssh (Secure Shell Server) se ejecuta para " | ||
372 | #~ "permitir el acceso remoto mediante ssh." | ||
373 | |||
374 | #~ msgid "" | ||
375 | #~ "If you are only interested in using the ssh client for outbound " | ||
376 | #~ "connections on this machine, and don't want to log into it at all using " | ||
377 | #~ "ssh, then you can disable sshd here." | ||
378 | #~ msgstr "" | ||
379 | #~ "Si sólo está interesado en usar el cliente ssh en conexiones salientes " | ||
380 | #~ "del sistema y no quiere acceder a él mediante ssh, entonces puede " | ||
381 | #~ "desactivar sshd." | ||
382 | |||
383 | #~ msgid "Environment options on keys have been deprecated" | ||
384 | #~ msgstr "Las opciones de entorno para las claves, en desuso" | ||
385 | |||
386 | #~ msgid "" | ||
387 | #~ "This version of OpenSSH disables the environment option for public keys " | ||
388 | #~ "by default, in order to avoid certain attacks (for example, LD_PRELOAD). " | ||
389 | #~ "If you are using this option in an authorized_keys file, beware that the " | ||
390 | #~ "keys in question will no longer work until the option is removed." | ||
391 | #~ msgstr "" | ||
392 | #~ "Esta versión de OpenSSH tiene desactivada por defecto la opción de " | ||
393 | #~ "entorno para las claves públicas, para evitar ciertos ataques (por " | ||
394 | #~ "ejemplo, basados en LD_PRELOAD). Si utiliza esta opción en un fichero " | ||
395 | #~ "authorized_keys, las claves implicadas no funcionarán hasta que borre la " | ||
396 | #~ "opción." | ||
397 | |||
398 | #~ msgid "" | ||
399 | #~ "To re-enable this option, set \"PermitUserEnvironment yes\" in /etc/ssh/" | ||
400 | #~ "sshd_config after the upgrade is complete, taking note of the warning in " | ||
401 | #~ "the sshd_config(5) manual page." | ||
402 | #~ msgstr "" | ||
403 | #~ "Para volver a activar esta opción, escriba «PermitUserEnvironment yes» en /" | ||
404 | #~ "etc/ssh/sshd_config al terminar la actualización, teniendo en cuenta el " | ||
405 | #~ "aviso de la página de manual de sshd_config(5)." | ||
406 | |||
407 | #~ msgid "Privilege separation" | ||
408 | #~ msgstr "Separación de privilegios" | ||
409 | |||
410 | #~ msgid "" | ||
411 | #~ "Privilege separation is turned on by default, so if you decide you want " | ||
412 | #~ "it turned off, you need to add \"UsePrivilegeSeparation no\" to /etc/ssh/" | ||
413 | #~ "sshd_config." | ||
414 | #~ msgstr "" | ||
415 | #~ "La separación de privilegios está activa por defecto, por lo que si " | ||
416 | #~ "decide desactivarla, tiene que añadir «UsePrivilegeSeparation no» al " | ||
417 | #~ "fichero /etc/ssh/sshd_config." | ||
418 | |||
419 | #~ msgid "Enable Privilege separation" | ||
420 | #~ msgstr "Activar separación de privilegios" | ||
421 | |||
422 | #~ msgid "" | ||
423 | #~ "This version of OpenSSH contains the new privilege separation option. " | ||
424 | #~ "This significantly reduces the quantity of code that runs as root, and " | ||
425 | #~ "therefore reduces the impact of security holes in sshd." | ||
426 | #~ msgstr "" | ||
427 | #~ "Esta versión de OpenSSH incluye una nueva opción de separación de " | ||
428 | #~ "privilegios que reduce significativamente la cantidad de código que se " | ||
429 | #~ "ejecuta como root, por lo que reduce el impacto de posibles agujeros de " | ||
430 | #~ "seguridad en sshd." | ||
431 | |||
432 | #~ msgid "" | ||
433 | #~ "Unfortunately, privilege separation interacts badly with PAM. Any PAM " | ||
434 | #~ "session modules that need to run as root (pam_mkhomedir, for example) " | ||
435 | #~ "will fail, and PAM keyboard-interactive authentication won't work." | ||
436 | #~ msgstr "" | ||
437 | #~ "Desafortunadamente, la separación de privilegios no funciona " | ||
438 | #~ "correctamente con PAM. Cualquier módulo PAM que necesite ejecutarse como " | ||
439 | #~ "root (como, por ejemplo, pam_mkhomedir) y la autenticación interactiva " | ||
440 | #~ "PAM con teclado no funcionarán." | ||
441 | |||
442 | #~ msgid "" | ||
443 | #~ "Since you've opted to have me generate an sshd_config file for you, you " | ||
444 | #~ "can choose whether or not to have privilege separation turned on or not. " | ||
445 | #~ "Unless you know you need to use PAM features that won't work with this " | ||
446 | #~ "option, you should enable it." | ||
447 | #~ msgstr "" | ||
448 | #~ "Puesto que ha elegido crear automáticamente el fichero sshd_config, puede " | ||
449 | #~ "decidir ahora si quiere activar la opción de separación de privilegios. A " | ||
450 | #~ "menos que necesite usar ciertas características de PAM que no funcionan " | ||
451 | #~ "con esta opción, debería responder sí a esta pregunta." | ||
452 | |||
453 | #~ msgid "" | ||
454 | #~ "NB! If you are running a 2.0 series Linux kernel, then privilege " | ||
455 | #~ "separation will not work at all, and your sshd will fail to start unless " | ||
456 | #~ "you explicitly turn privilege separation off." | ||
457 | #~ msgstr "" | ||
458 | #~ "Nota: Si utiliza un núcleo Linux 2.0, la separación de privilegios " | ||
459 | #~ "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..6ba402865 --- /dev/null +++ b/debian/po/eu.po | |||
@@ -0,0 +1,209 @@ | |||
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, 2008. | ||
6 | msgid "" | ||
7 | msgstr "" | ||
8 | "Project-Id-Version: openssh-templates\n" | ||
9 | "Report-Msgid-Bugs-To: openssh@packages.debian.org\n" | ||
10 | "POT-Creation-Date: 2008-05-17 13:58+0200\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: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: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: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: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:2001 | ||
68 | msgid "Do you want to risk killing active SSH sessions?" | ||
69 | msgstr "Irekirik dauden SSH saioak ixteko arriskua hartu nahi duzu?" | ||
70 | |||
71 | #. Type: boolean | ||
72 | #. Description | ||
73 | #: ../openssh-server.templates: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: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 | "Hau 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:3001 | ||
97 | msgid "New host key mandatory" | ||
98 | msgstr "Ostalari gako berria beharrezkoa" | ||
99 | |||
100 | #. Type: note | ||
101 | #. Description | ||
102 | #: ../openssh-server.templates: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 IDEA 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: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:4001 | ||
123 | msgid "Disable challenge-response authentication?" | ||
124 | msgstr "erronka-erantzun autentifikazioa desgaitu?" | ||
125 | |||
126 | #. Type: boolean | ||
127 | #. Description | ||
128 | #: ../openssh-server.templates: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 desgaiturik 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 desgaitu 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: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 des\tgaituaz gero erabiltzaileak ez dira " | ||
154 | "pasahitza erabiliaz saio hasteko gai izango. Berau gaiturik utziaz gero " | ||
155 | "(lehenetsiriko erantzuna), 'PasswordAuthentication no' aukerak ez du " | ||
156 | "ondoriorik izango /etc/pam.d/ssh-eko PAM konfigurazioa doitzen ez baduzu." | ||
157 | |||
158 | #. Type: note | ||
159 | #. Description | ||
160 | #: ../openssh-server.templates:5001 | ||
161 | msgid "Vulnerable host keys will be regenerated" | ||
162 | msgstr "Ostalari gako ahulak birsortu egingo dira" | ||
163 | |||
164 | #. Type: note | ||
165 | #. Description | ||
166 | #: ../openssh-server.templates:5001 | ||
167 | msgid "" | ||
168 | "Some of the OpenSSH server host keys on this system were generated with a " | ||
169 | "version of OpenSSL that had a broken random number generator. As a result, " | ||
170 | "these host keys are from a well-known set, are subject to brute-force " | ||
171 | "attacks, and must be regenerated." | ||
172 | msgstr "" | ||
173 | "Sistema honetako zenbait OpenSSH ostalari gako hondaturiko ausazko zenbasi " | ||
174 | "sortzaile bat zuen OpenSSL bertsio batez sortuak izan ziren. Hau dela eta, " | ||
175 | "ostalari gako horiek ezagutza handiko pertsona batek indarrezko erasoei " | ||
176 | "ahulak dira eta birsortuak izango dira." | ||
177 | |||
178 | #. Type: note | ||
179 | #. Description | ||
180 | #: ../openssh-server.templates:5001 | ||
181 | msgid "" | ||
182 | "Users of this system should be informed of this change, as they will be " | ||
183 | "prompted about the host key change the next time they log in. Use 'ssh-" | ||
184 | "keygen -l -f HOST_KEY_FILE' after the upgrade to print the fingerprints of " | ||
185 | "the new host keys." | ||
186 | msgstr "" | ||
187 | "Sistema honetako erabiltzaileak aldaketa honetaz ohartu beharko ziren, saio " | ||
188 | "hasten duten hurrengoan ostalari gako aldaketaz galdetuko zaie eta. 'ssh-" | ||
189 | "keygen -l -f OSTALARI_GAKO_FITX' erabili bertsio-berritzearen ondoren " | ||
190 | "ostalari gako berrien hatzmarkak inprimatzeko." | ||
191 | |||
192 | #. Type: note | ||
193 | #. Description | ||
194 | #: ../openssh-server.templates:5001 | ||
195 | msgid "The affected host keys are:" | ||
196 | msgstr "Ostalari gako hauei eragingo die:" | ||
197 | |||
198 | #. Type: note | ||
199 | #. Description | ||
200 | #: ../openssh-server.templates:5001 | ||
201 | msgid "" | ||
202 | "User keys may also be affected by this problem. The 'ssh-vulnkey' command " | ||
203 | "may be used as a partial test for this. See /usr/share/doc/openssh-server/" | ||
204 | "README.compromised-keys.gz for more details." | ||
205 | msgstr "" | ||
206 | "Erabiltzaile gakoak ere arazo honengatik eragindak egon daitezke. 'ssh-" | ||
207 | "vulnkey' komandoak honetarako proba bezala erdi-ziur erabili daiteke. Ikusi /" | ||
208 | "usr/share/doc/openssh-server/README.compromised-keys.gz xehetasun " | ||
209 | "gehiagorako." | ||
diff --git a/debian/po/fi.po b/debian/po/fi.po new file mode 100644 index 000000000..cc4b78480 --- /dev/null +++ b/debian/po/fi.po | |||
@@ -0,0 +1,214 @@ | |||
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: openssh@packages.debian.org\n" | ||
21 | "POT-Creation-Date: 2008-05-17 13:58+0200\n" | ||
22 | "PO-Revision-Date: 2008-05-17 16:38+0200\n" | ||
23 | "Last-Translator: Esko Arajärvi <edu@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:1001 | ||
32 | msgid "Generate a new configuration file for OpenSSH?" | ||
33 | msgstr "Luodaanko OpenSSH:lle uusi asetustiedosto?" | ||
34 | |||
35 | #. Type: boolean | ||
36 | #. Description | ||
37 | #: ../openssh-server.templates: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 | "Tämän OpenSSH:n version käyttämän asetustiedoston muoto poikkeaa " | ||
46 | "huomattavasti Debianin â€Potatoâ€-julkaisun mukana toimitetusta versiosta, " | ||
47 | "jota olet päivittämässä. Uusi asetustiedosto (/etc/ssh/sshd.config) voidaan " | ||
48 | "luoda nyt. Uudet asetukset toimivat uuden palvelinversion kanssa, mutta " | ||
49 | "vanhaan versioon itse tehdyt muokkaukset menetetään." | ||
50 | |||
51 | #. Type: boolean | ||
52 | #. Description | ||
53 | #: ../openssh-server.templates: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 | "Uudessa asetustiedostossa muuttujan â€PermitRootLogin†arvo on " | ||
61 | "â€yes†(tarkoittaen, että kuka tahansa pääkäyttäjän salasanan tietävä voi " | ||
62 | "kirjautua suoraan ssh:n avulla pääkäyttäjänä). Lisätietoja tästä valinnasta " | ||
63 | "löytyy (englanniksi) tiedostosta README.Debian." | ||
64 | |||
65 | #. Type: boolean | ||
66 | #. Description | ||
67 | #: ../openssh-server.templates:1001 | ||
68 | msgid "" | ||
69 | "It is strongly recommended that you choose to generate a new configuration " | ||
70 | "file now." | ||
71 | msgstr "Uuden asetustiedoston luominen nyt on erittäin suositeltavaa." | ||
72 | |||
73 | #. Type: boolean | ||
74 | #. Description | ||
75 | #: ../openssh-server.templates:2001 | ||
76 | msgid "Do you want to risk killing active SSH sessions?" | ||
77 | msgstr "Haluatko ottaa riskin, että aktiiviset SSH-istunnot tapetaan?" | ||
78 | |||
79 | #. Type: boolean | ||
80 | #. Description | ||
81 | #: ../openssh-server.templates:2001 | ||
82 | msgid "" | ||
83 | "The currently installed version of /etc/init.d/ssh is likely to kill all " | ||
84 | "running sshd instances. If you are doing this upgrade via an SSH session, " | ||
85 | "you're likely to be disconnected and leave the upgrade procedure unfinished." | ||
86 | msgstr "" | ||
87 | "Tiedoston /etc/init.d/ssh asennettuna oleva versio tappaa todennäköisesti " | ||
88 | "kaikki käynnissä olevat sshd-prosessit. Jos teet tätä päivitystä ssh-" | ||
89 | "yhteyden yli, yhteytesi luultavasti katkeaa ja päivitysprosessi keskeytyy." | ||
90 | |||
91 | #. Type: boolean | ||
92 | #. Description | ||
93 | #: ../openssh-server.templates: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 | "Tämä voidaan korjata lisäämällä merkkijono â€--pidfile /var/run/sshd.pid†" | ||
99 | "kyseisen tiedoston stop-osion start-stop-daemon-riville." | ||
100 | |||
101 | #. Type: note | ||
102 | #. Description | ||
103 | #: ../openssh-server.templates:3001 | ||
104 | msgid "New host key mandatory" | ||
105 | msgstr "Uusi järjestelmäavain pakollinen" | ||
106 | |||
107 | #. Type: note | ||
108 | #. Description | ||
109 | #: ../openssh-server.templates: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 | "Olemassa oleva järjestelmäavain /etc/ssh/ssh_host_key on salattu IDEA-" | ||
117 | "algoritmilla. OpenSSH ei voi käsitellä tätä järjestelmäavaintiedostoa, eikä " | ||
118 | "vanhan (ei-vapaan) SSH-asennuksen ssh-keygen-ohjelmaa löydy." | ||
119 | |||
120 | #. Type: note | ||
121 | #. Description | ||
122 | #: ../openssh-server.templates:3001 | ||
123 | msgid "You need to manually generate a new host key." | ||
124 | msgstr "Uuden järjestelmäavaimen (host key) luominen on tarpeen." | ||
125 | |||
126 | #. Type: boolean | ||
127 | #. Description | ||
128 | #: ../openssh-server.templates:4001 | ||
129 | msgid "Disable challenge-response authentication?" | ||
130 | msgstr "Poistetaanko haaste-vaste-autentikointi käytöstä?" | ||
131 | |||
132 | #. Type: boolean | ||
133 | #. Description | ||
134 | #: ../openssh-server.templates:4001 | ||
135 | msgid "" | ||
136 | "Password authentication appears to be disabled in the current OpenSSH server " | ||
137 | "configuration. In order to prevent users from logging in using passwords " | ||
138 | "(perhaps using only public key authentication instead) with recent versions " | ||
139 | "of OpenSSH, you must disable challenge-response authentication, or else " | ||
140 | "ensure that your PAM configuration does not allow Unix password file " | ||
141 | "authentication." | ||
142 | msgstr "" | ||
143 | "OpenSSH-palvelimen nykyisissä asetuksissa salasana-autentikointi näyttää " | ||
144 | "olevan poissa käytöstä. Estääksesi kirjautumiset salasanaa käyttäen (esim. " | ||
145 | "salliaksesi kirjautumisen vain julkista avainta käyttäen), OpenSSH:n uusissa " | ||
146 | "versioissa haaste-vaste-autentikointi tulee poistaa käytöstä tai muutoin " | ||
147 | "varmistaa, että PAM-asetukset eivät salli Unixin salasanatiedostoon " | ||
148 | "perustuvaa autentikointia." | ||
149 | |||
150 | #. Type: boolean | ||
151 | #. Description | ||
152 | #: ../openssh-server.templates: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 | "Jos poistat haaste-vaste-autentikoinnin käytöstä, käyttäjät eivät voi " | ||
160 | "kirjautua käyttäen salasanaa. Jos jätät sen päälle (oletus), asetuksella " | ||
161 | "â€PasswordAuthentication no†ei ole vaikutusta, ellet muuta myös PAM-" | ||
162 | "asetuksia tiedostossa /etc/pam.d/ssh." | ||
163 | |||
164 | #. Type: note | ||
165 | #. Description | ||
166 | #: ../openssh-server.templates:5001 | ||
167 | msgid "Vulnerable host keys will be regenerated" | ||
168 | msgstr "Haavoittuvaiset järjestelmäavaimet luodaan uudelleen" | ||
169 | |||
170 | #. Type: note | ||
171 | #. Description | ||
172 | #: ../openssh-server.templates:5001 | ||
173 | msgid "" | ||
174 | "Some of the OpenSSH server host keys on this system were generated with a " | ||
175 | "version of OpenSSL that had a broken random number generator. As a result, " | ||
176 | "these host keys are from a well-known set, are subject to brute-force " | ||
177 | "attacks, and must be regenerated." | ||
178 | msgstr "" | ||
179 | "Jotkin tämän järjestelmän OpenSSH-palvelimen järjestelmäavaimista on luotu " | ||
180 | "OpenSSL:n versiolla, jossa oli rikkinäinen satunnaislukugeneraattori. Tämän " | ||
181 | "tuloksena nämä avaimet voidaan murtaa järjestelmällisellä läpikäynnillä ja " | ||
182 | "ne tulee vaihtaa." | ||
183 | |||
184 | #. Type: note | ||
185 | #. Description | ||
186 | #: ../openssh-server.templates:5001 | ||
187 | msgid "" | ||
188 | "Users of this system should be informed of this change, as they will be " | ||
189 | "prompted about the host key change the next time they log in. Use 'ssh-" | ||
190 | "keygen -l -f HOST_KEY_FILE' after the upgrade to print the fingerprints of " | ||
191 | "the new host keys." | ||
192 | msgstr "" | ||
193 | "Järjestelmän käyttäjille tulisi tiedottaa tästä muutoksesta, koska heitä " | ||
194 | "pyydetään hyväksymään muuttunut järjestelmäavain, kun he seuraavan kerran " | ||
195 | "kirjautuvat järjestelmään. Komennolla â€ssh-keygen -l -f HOST_KEY_FILE†" | ||
196 | "voidaan tulostaa uusien järjestelmäavainten sormenjäljet päivityksen jälkeen." | ||
197 | |||
198 | #. Type: note | ||
199 | #. Description | ||
200 | #: ../openssh-server.templates:5001 | ||
201 | msgid "The affected host keys are:" | ||
202 | msgstr "Järjestelmäavaimet, joihin tämä vaikuttaa:" | ||
203 | |||
204 | #. Type: note | ||
205 | #. Description | ||
206 | #: ../openssh-server.templates:5001 | ||
207 | msgid "" | ||
208 | "User keys may also be affected by this problem. The 'ssh-vulnkey' command " | ||
209 | "may be used as a partial test for this. See /usr/share/doc/openssh-server/" | ||
210 | "README.compromised-keys.gz for more details." | ||
211 | msgstr "" | ||
212 | "Tämä ongelma saattaa vaikuttaa myös käyttäjien avaimiin. Komennolla â€ssh-" | ||
213 | "vulnkey†voidaan osittain testata tätä. Tiedostossa /usr/share/doc/openssh-" | ||
214 | "server/README.compromised-keys.gz on lisätietoja." | ||
diff --git a/debian/po/fr.po b/debian/po/fr.po new file mode 100644 index 000000000..8312deb15 --- /dev/null +++ b/debian/po/fr.po | |||
@@ -0,0 +1,223 @@ | |||
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, 2008. | ||
16 | msgid "" | ||
17 | msgstr "" | ||
18 | "Project-Id-Version: \n" | ||
19 | "Report-Msgid-Bugs-To: openssh@packages.debian.org\n" | ||
20 | "POT-Creation-Date: 2008-05-17 08:51+0200\n" | ||
21 | "PO-Revision-Date: 2008-05-15 10:23+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: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: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: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: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: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: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: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 ligne " | ||
103 | "« start-stop-daemon » dans /etc/init.d/ssh, dans la section « stop » du " | ||
104 | "fichier." | ||
105 | |||
106 | #. Type: note | ||
107 | #. Description | ||
108 | #: ../openssh-server.templates: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: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: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: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: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: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." | ||
170 | |||
171 | #. Type: note | ||
172 | #. Description | ||
173 | #: ../openssh-server.templates:5001 | ||
174 | msgid "Vulnerable host keys will be regenerated" | ||
175 | msgstr "Recréation des clés d'hôte vulnérables" | ||
176 | |||
177 | #. Type: note | ||
178 | #. Description | ||
179 | #: ../openssh-server.templates:5001 | ||
180 | msgid "" | ||
181 | "Some of the OpenSSH server host keys on this system were generated with a " | ||
182 | "version of OpenSSL that had a broken random number generator. As a result, " | ||
183 | "these host keys are from a well-known set, are subject to brute-force " | ||
184 | "attacks, and must be regenerated." | ||
185 | msgstr "" | ||
186 | "Certaines clés d'hôte OpenSSH de ce serveur ont été créées avec une version " | ||
187 | "d'OpenSSL affligée d'un défaut dans le générateur de nombres aléatoires. En " | ||
188 | "conséquence, ces clés ont un contenu prévisible et peuvent être vulnérables " | ||
189 | "à des attaques par force brute. Elles doivent être recréées." | ||
190 | |||
191 | #. Type: note | ||
192 | #. Description | ||
193 | #: ../openssh-server.templates:5001 | ||
194 | msgid "" | ||
195 | "Users of this system should be informed of this change, as they will be " | ||
196 | "prompted about the host key change the next time they log in. Use 'ssh-" | ||
197 | "keygen -l -f HOST_KEY_FILE' after the upgrade to print the fingerprints of " | ||
198 | "the new host keys." | ||
199 | msgstr "" | ||
200 | "Les utilisateurs de ce système devraient être informés de cette modification " | ||
201 | "car le système leur signalera le changement de clé d'hôte à leur prochaine " | ||
202 | "connexion. Vous pouvez utiliser la commande « ssh-keygen -l -f " | ||
203 | "HOST_KEY_FILE » après la mise à jour pour afficher l'empreinte des nouvelles " | ||
204 | "clés d'hôte." | ||
205 | |||
206 | #. Type: note | ||
207 | #. Description | ||
208 | #: ../openssh-server.templates:5001 | ||
209 | msgid "The affected host keys are:" | ||
210 | msgstr "Les clés concernées sont les suivantes :" | ||
211 | |||
212 | #. Type: note | ||
213 | #. Description | ||
214 | #: ../openssh-server.templates:5001 | ||
215 | msgid "" | ||
216 | "User keys may also be affected by this problem. The 'ssh-vulnkey' command " | ||
217 | "may be used as a partial test for this. See /usr/share/doc/openssh-server/" | ||
218 | "README.compromised-keys.gz for more details." | ||
219 | msgstr "" | ||
220 | "Les clés OpenSSH des utilisateurs sont aussi potentiellement affectées par " | ||
221 | "ce problème. La commande « ssh-vulnkey » offre un test partiel pour cette " | ||
222 | "vulnérabilité. Veuillez consulter le fichier /usr/share/doc/openssh-server/" | ||
223 | "README.compromised-keys.gz pour plus d'informations." | ||
diff --git a/debian/po/gl.po b/debian/po/gl.po new file mode 100644 index 000000000..f2a4ebd86 --- /dev/null +++ b/debian/po/gl.po | |||
@@ -0,0 +1,247 @@ | |||
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, 2008 Jacobo Tarrio <jtarrio@debian.org> | ||
5 | # | ||
6 | msgid "" | ||
7 | msgstr "" | ||
8 | "Project-Id-Version: openssh\n" | ||
9 | "Report-Msgid-Bugs-To: openssh@packages.debian.org\n" | ||
10 | "POT-Creation-Date: 2008-05-17 08:51+0200\n" | ||
11 | "PO-Revision-Date: 2008-05-17 10:29+0100\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: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: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: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: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: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: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: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: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: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: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: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: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: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 | #. Type: note | ||
165 | #. Description | ||
166 | #: ../openssh-server.templates:5001 | ||
167 | msgid "Vulnerable host keys will be regenerated" | ||
168 | msgstr "Hanse rexenerar as claves de servidor vulnerables" | ||
169 | |||
170 | #. Type: note | ||
171 | #. Description | ||
172 | #: ../openssh-server.templates:5001 | ||
173 | msgid "" | ||
174 | "Some of the OpenSSH server host keys on this system were generated with a " | ||
175 | "version of OpenSSL that had a broken random number generator. As a result, " | ||
176 | "these host keys are from a well-known set, are subject to brute-force " | ||
177 | "attacks, and must be regenerated." | ||
178 | msgstr "" | ||
179 | "Algunhas das claves de servidor de OpenSSH deste sistema xeráronse cunha " | ||
180 | "versión de OpenSSL que tiña un xerador de números aleatorios que non " | ||
181 | "funcionaba correctamente. Coma resultado, esas claves de servidor pertencen " | ||
182 | "a un conxunto coñecido, son vulnerables a ataques por forza bruta, e teñen " | ||
183 | "que se rexenerar." | ||
184 | |||
185 | #. Type: note | ||
186 | #. Description | ||
187 | #: ../openssh-server.templates:5001 | ||
188 | msgid "" | ||
189 | "Users of this system should be informed of this change, as they will be " | ||
190 | "prompted about the host key change the next time they log in. Use 'ssh-" | ||
191 | "keygen -l -f HOST_KEY_FILE' after the upgrade to print the fingerprints of " | ||
192 | "the new host keys." | ||
193 | msgstr "" | ||
194 | "É preciso informar deste cambio aos usuarios deste sistema, xa que se lles " | ||
195 | "ha avisar do cambio de clave de servidor a próxima vez que se conecten. " | ||
196 | "Empregue a orde \"ssh-keygen -l -f FICHEIRO_DE_CLAVE\" trala actualización " | ||
197 | "para amosar as pegadas dactilares das novas claves de servidor." | ||
198 | |||
199 | #. Type: note | ||
200 | #. Description | ||
201 | #: ../openssh-server.templates:5001 | ||
202 | msgid "The affected host keys are:" | ||
203 | msgstr "As claves de servidor afectadas son:" | ||
204 | |||
205 | #. Type: note | ||
206 | #. Description | ||
207 | #: ../openssh-server.templates:5001 | ||
208 | msgid "" | ||
209 | "User keys may also be affected by this problem. The 'ssh-vulnkey' command " | ||
210 | "may be used as a partial test for this. See /usr/share/doc/openssh-server/" | ||
211 | "README.compromised-keys.gz for more details." | ||
212 | msgstr "" | ||
213 | "As claves dos usuarios tamén poden estar afectadas por este problema. Pódese " | ||
214 | "empregar a orde \"ssh-vulnkey\" para facer unha comprobación parcial disto. " | ||
215 | "Consulte /usr/share/doc/openssh-server/README.compromised-keys.gz para máis " | ||
216 | "detalles." | ||
217 | |||
218 | #~ msgid "Warning: you must create a new host key" | ||
219 | #~ msgstr "Aviso: ten que crear unha nove chave de servidor" | ||
220 | |||
221 | #~ msgid "Warning: telnetd is installed --- probably not a good idea" | ||
222 | #~ msgstr "" | ||
223 | #~ "Aviso: telnetd está instalado --- seguramente non sexa unha boa idea" | ||
224 | |||
225 | #~ msgid "" | ||
226 | #~ "I'd advise you to either remove the telnetd package (if you don't " | ||
227 | #~ "actually need to offer telnet access) or install telnetd-ssl so that " | ||
228 | #~ "there is at least some chance that telnet sessions will not be sending " | ||
229 | #~ "unencrypted login/password and session information over the network." | ||
230 | #~ msgstr "" | ||
231 | #~ "Recoméndase que elimine o paquete telnetd (se non precisa de fornecer " | ||
232 | #~ "acceso por telnet) ou instale telnetd-ssl para que exista alomenos " | ||
233 | #~ "algunha posibilidade de que as sesións telnet non envÃen información de " | ||
234 | #~ "usuario/contrasinal e das sesións sen cifrar pola rede." | ||
235 | |||
236 | #~ msgid "Warning: rsh-server is installed --- probably not a good idea" | ||
237 | #~ msgstr "" | ||
238 | #~ "Aviso: rsh-server está instalado --- seguramente non sexa unha boa idea" | ||
239 | |||
240 | #~ msgid "" | ||
241 | #~ "having rsh-server installed undermines the security that you were " | ||
242 | #~ "probably wanting to obtain by installing ssh. I'd advise you to remove " | ||
243 | #~ "that package." | ||
244 | #~ msgstr "" | ||
245 | #~ "ao ter rsh-server instalado pérdese a seguridade que probablemente " | ||
246 | #~ "pretendÃa obter ao instalar ssh. Recoméndase que se desinstale ese " | ||
247 | #~ "paquete." | ||
diff --git a/debian/po/it.po b/debian/po/it.po new file mode 100644 index 000000000..fe38d4bfa --- /dev/null +++ b/debian/po/it.po | |||
@@ -0,0 +1,214 @@ | |||
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.7p1 italian debconf templates\n" | ||
10 | "Report-Msgid-Bugs-To: openssh@packages.debian.org\n" | ||
11 | "POT-Creation-Date: 2008-05-17 13:58+0200\n" | ||
12 | "PO-Revision-Date: 2008-05-18 12: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: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: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: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ò collegarsi " | ||
53 | "tramite ssh direttamente come root). Per ulteriori dettagli su questa scelta " | ||
54 | "si veda il file README.Debian." | ||
55 | |||
56 | #. Type: boolean | ||
57 | #. Description | ||
58 | #: ../openssh-server.templates: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: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: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: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.pid» " | ||
93 | "alla riga start-stop-daemon nella sezione stop del file." | ||
94 | |||
95 | #. Type: note | ||
96 | #. Description | ||
97 | #: ../openssh-server.templates:3001 | ||
98 | msgid "New host key mandatory" | ||
99 | msgstr "Necessaria una nuova chiave host" | ||
100 | |||
101 | #. Type: note | ||
102 | #. Description | ||
103 | #: ../openssh-server.templates: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: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:4001 | ||
124 | msgid "Disable challenge-response authentication?" | ||
125 | msgstr "Disabilitare l'autenticazione interattiva?" | ||
126 | |||
127 | #. Type: boolean | ||
128 | #. Description | ||
129 | #: ../openssh-server.templates: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: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." | ||
160 | |||
161 | #. Type: note | ||
162 | #. Description | ||
163 | #: ../openssh-server.templates:5001 | ||
164 | msgid "Vulnerable host keys will be regenerated" | ||
165 | msgstr "Le chiavi host vulnerabili devono essere rigenerate" | ||
166 | |||
167 | #. Type: note | ||
168 | #. Description | ||
169 | #: ../openssh-server.templates:5001 | ||
170 | msgid "" | ||
171 | "Some of the OpenSSH server host keys on this system were generated with a " | ||
172 | "version of OpenSSL that had a broken random number generator. As a result, " | ||
173 | "these host keys are from a well-known set, are subject to brute-force " | ||
174 | "attacks, and must be regenerated." | ||
175 | msgstr "" | ||
176 | "Alcune delle chiavi host OpenSSH per server presenti su questo sistema sono " | ||
177 | "state create con una versione di OpenSSL afflitta da un problema al " | ||
178 | "generatore di numeri casuali. Di conseguenza queste chiavi host appartengono " | ||
179 | "a un insieme noto, quindi sono vulnerabili ad attacchi di tipo forza bruta e " | ||
180 | "devono essere rigenerate." | ||
181 | |||
182 | #. Type: note | ||
183 | #. Description | ||
184 | #: ../openssh-server.templates:5001 | ||
185 | msgid "" | ||
186 | "Users of this system should be informed of this change, as they will be " | ||
187 | "prompted about the host key change the next time they log in. Use 'ssh-" | ||
188 | "keygen -l -f HOST_KEY_FILE' after the upgrade to print the fingerprints of " | ||
189 | "the new host keys." | ||
190 | msgstr "" | ||
191 | "Gli utenti del sistema dovrebbero essere informati di questo cambiamento " | ||
192 | "poiché al prossimo accesso al sistema verrà loro mostrato un avvertimento " | ||
193 | "relativo al cambiamento della chiave host. Dopo l'aggiornamento usare \"ssh-" | ||
194 | "keygen -l -f FILE_CHIAVE_HOST\" per stampare i fingerprint delle nuove " | ||
195 | "chiavi host." | ||
196 | |||
197 | #. Type: note | ||
198 | #. Description | ||
199 | #: ../openssh-server.templates:5001 | ||
200 | msgid "The affected host keys are:" | ||
201 | msgstr "Le chiavi host vulnerabili sono:" | ||
202 | |||
203 | #. Type: note | ||
204 | #. Description | ||
205 | #: ../openssh-server.templates:5001 | ||
206 | msgid "" | ||
207 | "User keys may also be affected by this problem. The 'ssh-vulnkey' command " | ||
208 | "may be used as a partial test for this. See /usr/share/doc/openssh-server/" | ||
209 | "README.compromised-keys.gz for more details." | ||
210 | msgstr "" | ||
211 | "Anche le chiavi utente potrebbero essere afflitte dallo stesso problema. È " | ||
212 | "possibile usare il comando \"ssh-vulnkey\" per fare un test parziale sulla " | ||
213 | "loro vulnerabilità . Si veda /usr/share/doc/openssh-server/README.compromised-" | ||
214 | "keys.gz per ulteriori informazioni." | ||
diff --git a/debian/po/ja.po b/debian/po/ja.po new file mode 100644 index 000000000..810168f72 --- /dev/null +++ b/debian/po/ja.po | |||
@@ -0,0 +1,209 @@ | |||
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: openssh@packages.debian.org\n" | ||
18 | "POT-Creation-Date: 2008-05-17 13:58+0200\n" | ||
19 | "PO-Revision-Date: 2008-05-17 21:28+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:1001 | ||
29 | msgid "Generate a new configuration file for OpenSSH?" | ||
30 | msgstr "OpenSSH ã®æ–°ã—ã„è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã‚’作りã¾ã™ã‹?" | ||
31 | |||
32 | #. Type: boolean | ||
33 | #. Description | ||
34 | #: ../openssh-server.templates: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: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: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: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: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: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:3001 | ||
101 | msgid "New host key mandatory" | ||
102 | msgstr "æ–°ã—ã„ホストã‚ーãŒå¿…è¦ã§ã™" | ||
103 | |||
104 | #. Type: note | ||
105 | #. Description | ||
106 | #: ../openssh-server.templates: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:3001 | ||
120 | msgid "You need to manually generate a new host key." | ||
121 | msgstr "æ–°ã—ã„ホストã‚ーを手動ã§ç”Ÿæˆã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚" | ||
122 | |||
123 | #. Type: boolean | ||
124 | #. Description | ||
125 | #: ../openssh-server.templates:4001 | ||
126 | msgid "Disable challenge-response authentication?" | ||
127 | msgstr "ãƒãƒ£ãƒ¬ãƒ³ã‚¸-レスãƒãƒ³ã‚¹èªè¨¼ã‚’無効ã«ã—ã¾ã™ã‹?" | ||
128 | |||
129 | #. Type: boolean | ||
130 | #. Description | ||
131 | #: ../openssh-server.templates: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: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 | "ãŸãªããªã‚Šã¾ã™ã€‚" | ||
159 | |||
160 | #. Type: note | ||
161 | #. Description | ||
162 | #: ../openssh-server.templates:5001 | ||
163 | msgid "Vulnerable host keys will be regenerated" | ||
164 | msgstr "脆弱ãªãƒ›ã‚¹ãƒˆã‚ーã¯å†ç”Ÿæˆã•ã‚Œã¾ã™" | ||
165 | |||
166 | #. Type: note | ||
167 | #. Description | ||
168 | #: ../openssh-server.templates:5001 | ||
169 | msgid "" | ||
170 | "Some of the OpenSSH server host keys on this system were generated with a " | ||
171 | "version of OpenSSL that had a broken random number generator. As a result, " | ||
172 | "these host keys are from a well-known set, are subject to brute-force " | ||
173 | "attacks, and must be regenerated." | ||
174 | msgstr "" | ||
175 | "ã“ã®ã‚·ã‚¹ãƒ†ãƒ ã® OpenSSH サーãƒã®ãƒ›ã‚¹ãƒˆã‚ーã®ã„ãã¤ã‹ãŒã€å£Šã‚ŒãŸä¹±æ•°ç”Ÿæˆå™¨ã‚’æŒ" | ||
176 | "㤠OpenSSL ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã§ç”Ÿæˆã•ã‚Œã¦ã„ã¾ã—ãŸã€‚çµæžœã¨ã—ã¦ã€ã“れらã®ãƒ›ã‚¹ãƒˆã‚ーã¯æ—¢" | ||
177 | "知ã®çµ„ã¿åˆã‚ã›ã‹ã‚‰æˆã‚Šã€ãƒ–ルートフォース攻撃をå—ã‘ã‚„ã™ã„ã‚‚ã®ã«ãªã£ã¦ã„ã‚‹ãŸ" | ||
178 | "ã‚ã€å†ç”Ÿæˆã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚" | ||
179 | |||
180 | #. Type: note | ||
181 | #. Description | ||
182 | #: ../openssh-server.templates:5001 | ||
183 | msgid "" | ||
184 | "Users of this system should be informed of this change, as they will be " | ||
185 | "prompted about the host key change the next time they log in. Use 'ssh-" | ||
186 | "keygen -l -f HOST_KEY_FILE' after the upgrade to print the fingerprints of " | ||
187 | "the new host keys." | ||
188 | msgstr "" | ||
189 | "次回ã®ãƒã‚°ã‚¤ãƒ³æ™‚ã«ãƒ›ã‚¹ãƒˆã‚ーã®å¤‰æ›´ãŒç¤ºã•ã‚Œã‚‹ã“ã¨ã§ã€ã“ã®ã‚·ã‚¹ãƒ†ãƒ ã®ãƒ¦ãƒ¼ã‚¶ã¯ã€" | ||
190 | "ã“ã®å¤‰æ›´ã®é€šçŸ¥ã‚’å—ã‘å–ã‚‹ã“ã¨ã«ãªã‚Šã¾ã™ã€‚更新後ã«æ–°ã—ã„ホストã‚ーã®æŒ‡ç´‹ã‚’表示" | ||
191 | "ã™ã‚‹ã«ã¯ã€'ssh-keygen -l -f HOST_KEY_FILE' を使ã„ã¾ã™ã€‚" | ||
192 | |||
193 | #. Type: note | ||
194 | #. Description | ||
195 | #: ../openssh-server.templates:5001 | ||
196 | msgid "The affected host keys are:" | ||
197 | msgstr "影響をå—ã‘るホストã‚ーã¯æ¬¡ã®ã¨ãŠã‚Šã§ã™:" | ||
198 | |||
199 | #. Type: note | ||
200 | #. Description | ||
201 | #: ../openssh-server.templates:5001 | ||
202 | msgid "" | ||
203 | "User keys may also be affected by this problem. The 'ssh-vulnkey' command " | ||
204 | "may be used as a partial test for this. See /usr/share/doc/openssh-server/" | ||
205 | "README.compromised-keys.gz for more details." | ||
206 | msgstr "" | ||
207 | "ユーザã‚ーもã“ã®å•é¡Œã®å½±éŸ¿ã‚’å—ã‘ã¦ã„ã‚‹æã‚ŒãŒã‚ã‚Šã¾ã™ã€‚ã“ã®éƒ¨åˆ†çš„ãªãƒ†ã‚¹ãƒˆã¨ã—" | ||
208 | "ã¦ã€'ssh-vulnkey' コマンドを利用ã§ãã¾ã™ã€‚詳細ã«ã¤ã„ã¦ã¯ /usr/share/doc/" | ||
209 | "openssh-server/README.compromised-keys.gz ã‚’å‚ç…§ã—ã¦ãã ã•ã„。" | ||
diff --git a/debian/po/ko.po b/debian/po/ko.po new file mode 100644 index 000000000..ec690b66a --- /dev/null +++ b/debian/po/ko.po | |||
@@ -0,0 +1,191 @@ | |||
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: openssh@packages.debian.org\n" | ||
11 | "POT-Creation-Date: 2008-05-17 08:51+0200\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:1001 | ||
23 | msgid "Generate a new configuration file for OpenSSH?" | ||
24 | msgstr "OpenSSH ì„¤ì • 파ì¼ì„ 새로 만들까요?" | ||
25 | |||
26 | #. Type: boolean | ||
27 | #. Description | ||
28 | #: ../openssh-server.templates: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: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: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: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: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: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:3001 | ||
94 | msgid "New host key mandatory" | ||
95 | msgstr "호스트키 새로 만들어야 함" | ||
96 | |||
97 | #. Type: note | ||
98 | #. Description | ||
99 | #: ../openssh-server.templates: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:3001 | ||
113 | msgid "You need to manually generate a new host key." | ||
114 | msgstr "호스트키를 ì§ì ‘ 새로 ìƒì„±í•˜ì…”야 합니다." | ||
115 | |||
116 | #. Type: boolean | ||
117 | #. Description | ||
118 | #: ../openssh-server.templates:4001 | ||
119 | msgid "Disable challenge-response authentication?" | ||
120 | msgstr "ì œê¸°-ì‘답 ì¸ì¦ë°©ì‹ì„ í•´ì œí•˜ë„ë¡ í• ê¹Œìš”?" | ||
121 | |||
122 | #. Type: boolean | ||
123 | #. Description | ||
124 | #: ../openssh-server.templates: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: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 | "지 못합니다." | ||
151 | |||
152 | #. Type: note | ||
153 | #. Description | ||
154 | #: ../openssh-server.templates:5001 | ||
155 | msgid "Vulnerable host keys will be regenerated" | ||
156 | msgstr "" | ||
157 | |||
158 | #. Type: note | ||
159 | #. Description | ||
160 | #: ../openssh-server.templates:5001 | ||
161 | msgid "" | ||
162 | "Some of the OpenSSH server host keys on this system were generated with a " | ||
163 | "version of OpenSSL that had a broken random number generator. As a result, " | ||
164 | "these host keys are from a well-known set, are subject to brute-force " | ||
165 | "attacks, and must be regenerated." | ||
166 | msgstr "" | ||
167 | |||
168 | #. Type: note | ||
169 | #. Description | ||
170 | #: ../openssh-server.templates:5001 | ||
171 | msgid "" | ||
172 | "Users of this system should be informed of this change, as they will be " | ||
173 | "prompted about the host key change the next time they log in. Use 'ssh-" | ||
174 | "keygen -l -f HOST_KEY_FILE' after the upgrade to print the fingerprints of " | ||
175 | "the new host keys." | ||
176 | msgstr "" | ||
177 | |||
178 | #. Type: note | ||
179 | #. Description | ||
180 | #: ../openssh-server.templates:5001 | ||
181 | msgid "The affected host keys are:" | ||
182 | msgstr "" | ||
183 | |||
184 | #. Type: note | ||
185 | #. Description | ||
186 | #: ../openssh-server.templates:5001 | ||
187 | msgid "" | ||
188 | "User keys may also be affected by this problem. The 'ssh-vulnkey' command " | ||
189 | "may be used as a partial test for this. See /usr/share/doc/openssh-server/" | ||
190 | "README.compromised-keys.gz for more details." | ||
191 | msgstr "" | ||
diff --git a/debian/po/nb.po b/debian/po/nb.po new file mode 100644 index 000000000..99fcefbb7 --- /dev/null +++ b/debian/po/nb.po | |||
@@ -0,0 +1,206 @@ | |||
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 | # Bjørn Steensrud <bjornst@skogkatt.homelinux.org>, 2008. | ||
7 | msgid "" | ||
8 | msgstr "" | ||
9 | "Project-Id-Version: nb\n" | ||
10 | "Report-Msgid-Bugs-To: openssh@packages.debian.org\n" | ||
11 | "POT-Creation-Date: 2008-05-17 08:51+0200\n" | ||
12 | "PO-Revision-Date: 2008-05-17 11:04+0200\n" | ||
13 | "Last-Translator: Bjørn Steensrud <bjornst@skogkatt.homelinux.org>\n" | ||
14 | "Language-Team: Norwegian Bokmål <i18n-nb@lister.ping.uio.no>\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 | |||
20 | #. Type: boolean | ||
21 | #. Description | ||
22 | #: ../openssh-server.templates:1001 | ||
23 | msgid "Generate a new configuration file for OpenSSH?" | ||
24 | msgstr "Skal ny oppsettsfil for OpenSSH lages?" | ||
25 | |||
26 | #. Type: boolean | ||
27 | #. Description | ||
28 | #: ../openssh-server.templates: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 | "Det ser ut til at du oppgraderer fra Debian «Potato», og denne versjonen av " | ||
37 | "OpenSSH har ganske store endringer i oppsettsfila. Denne pakka kan nå lage " | ||
38 | "en ny oppsettsfil (/etc/ssh/sshd.config) som fungerer med den nye " | ||
39 | "tjenerversjonen, men ikke inneholder noen tilpasninger som kan være gjort " | ||
40 | "lokalt i den gamle versjonen." | ||
41 | |||
42 | #. Type: boolean | ||
43 | #. Description | ||
44 | #: ../openssh-server.templates: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 | "Merk at denne nye oppsettsfila setter verdien av «PermitRootLogin» til " | ||
52 | "«yes» (slik at alle som kjenner root-passordet kan logge inn direkte med ssh " | ||
53 | "som root). Les README.Debian-fila for å finne ut mer om dette oppsettsvalget." | ||
54 | |||
55 | #. Type: boolean | ||
56 | #. Description | ||
57 | #: ../openssh-server.templates:1001 | ||
58 | msgid "" | ||
59 | "It is strongly recommended that you choose to generate a new configuration " | ||
60 | "file now." | ||
61 | msgstr "" | ||
62 | "Det anbefales sterkt at denne pakka får lov til å lage en ny oppsettsfil nå." | ||
63 | |||
64 | #. Type: boolean | ||
65 | #. Description | ||
66 | #: ../openssh-server.templates:2001 | ||
67 | msgid "Do you want to risk killing active SSH sessions?" | ||
68 | msgstr "Vil du risikere å avbryte aktive SSH-økter?" | ||
69 | |||
70 | #. Type: boolean | ||
71 | #. Description | ||
72 | #: ../openssh-server.templates: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 | "Den versjonen av /etc/init.d/ssh som nå er installert vil antakelig stoppe " | ||
79 | "alle sshd-instanser som kjører. Hvis denne oppgraderingen gjøres over en SSH-" | ||
80 | "økt, så risikerer du å bli frakoblet og oppgraderingen blir ikke fullført." | ||
81 | |||
82 | #. Type: boolean | ||
83 | #. Description | ||
84 | #: ../openssh-server.templates: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 | "Dette kan rettes på ved å legge til manuelt «--pidfile /var/run/sshd.pid» til " | ||
90 | "start-stop-daemon linja i stopp-delen av fila." | ||
91 | |||
92 | #. Type: note | ||
93 | #. Description | ||
94 | #: ../openssh-server.templates:3001 | ||
95 | msgid "New host key mandatory" | ||
96 | msgstr "Ny vertsnøkkel obligatorisk" | ||
97 | |||
98 | #. Type: note | ||
99 | #. Description | ||
100 | #: ../openssh-server.templates: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 | "Den gjeldende vertsnøkkelen, i /etc/ssh/ssh_host_key, er kryptert med IDEA-" | ||
108 | "algoritmen. OpenSSH kan ikke håndtere denne vertsnøkkelfila, og det ser ikke " | ||
109 | "ut til at verktøyet ssh-keygen fra den gamle (ikke-frie) SSH-installasjonen " | ||
110 | "er tilgjengelig." | ||
111 | |||
112 | #. Type: note | ||
113 | #. Description | ||
114 | #: ../openssh-server.templates:3001 | ||
115 | msgid "You need to manually generate a new host key." | ||
116 | msgstr "En ny vertsnøkkel må lages manuelt." | ||
117 | |||
118 | #. Type: boolean | ||
119 | #. Description | ||
120 | #: ../openssh-server.templates:4001 | ||
121 | msgid "Disable challenge-response authentication?" | ||
122 | msgstr "Skal autentisering med utfordring/svar slås av?" | ||
123 | |||
124 | #. Type: boolean | ||
125 | #. Description | ||
126 | #: ../openssh-server.templates:4001 | ||
127 | msgid "" | ||
128 | "Password authentication appears to be disabled in the current OpenSSH server " | ||
129 | "configuration. In order to prevent users from logging in using passwords " | ||
130 | "(perhaps using only public key authentication instead) with recent versions " | ||
131 | "of OpenSSH, you must disable challenge-response authentication, or else " | ||
132 | "ensure that your PAM configuration does not allow Unix password file " | ||
133 | "authentication." | ||
134 | msgstr "" | ||
135 | "Det ser ut til at passord-autentisering er slått av i det gjeldende " | ||
136 | "tjeneroppsettet for OpenSSH. For å hindre brukere i å logge inn med passord " | ||
137 | "med nyere versjoner av OpenSSH (kanskje med autentisering med kryptonøkler i " | ||
138 | "stedet), så må autentisering med utfordring-svar slås av, eller det må " | ||
139 | "sjekkes at PAM-oppsettet er satt til ikke å tillate autentisering mot Unix " | ||
140 | "passord-fila." | ||
141 | |||
142 | #. Type: boolean | ||
143 | #. Description | ||
144 | #: ../openssh-server.templates:4001 | ||
145 | msgid "" | ||
146 | "If you disable challenge-response authentication, then users will not be " | ||
147 | "able to log in using passwords. If you leave it enabled (the default " | ||
148 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
149 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
150 | msgstr "" | ||
151 | "Hvis autentisering med utfordring-svar er slått av, så kan brukere ikke " | ||
152 | "logge inn med passord. Hvis det står på (som er standard), så har det ingen " | ||
153 | "virkning å sette «PasswordAuthentication no» med mindre PAM-oppsettet i /etc/" | ||
154 | "pam.d/ssh også justeres." | ||
155 | |||
156 | #. Type: note | ||
157 | #. Description | ||
158 | #: ../openssh-server.templates:5001 | ||
159 | msgid "Vulnerable host keys will be regenerated" | ||
160 | msgstr "Sårbare vertsnøkler vil bli laget på nytt" | ||
161 | |||
162 | #. Type: note | ||
163 | #. Description | ||
164 | #: ../openssh-server.templates:5001 | ||
165 | msgid "" | ||
166 | "Some of the OpenSSH server host keys on this system were generated with a " | ||
167 | "version of OpenSSL that had a broken random number generator. As a result, " | ||
168 | "these host keys are from a well-known set, are subject to brute-force " | ||
169 | "attacks, and must be regenerated." | ||
170 | msgstr "" | ||
171 | "Noen av OpenSSHs vertsnøkler på dette systemet ble opprettet med versjon av " | ||
172 | "OpenSSH som hadde en feil på slumptallsgeneratoren. Derfor tilhører disse " | ||
173 | "nøklene et velkjent sett nøkler, kan knekkes med «rå kraft»-metoden og må " | ||
174 | "lages på nytt." | ||
175 | |||
176 | #. Type: note | ||
177 | #. Description | ||
178 | #: ../openssh-server.templates:5001 | ||
179 | msgid "" | ||
180 | "Users of this system should be informed of this change, as they will be " | ||
181 | "prompted about the host key change the next time they log in. Use 'ssh-" | ||
182 | "keygen -l -f HOST_KEY_FILE' after the upgrade to print the fingerprints of " | ||
183 | "the new host keys." | ||
184 | msgstr "" | ||
185 | "De som bruker dette systemet bør få opplysning om denne endringen, siden de " | ||
186 | "vkil få spørsmål om vertsnøkkelendringen neste gang de logger inn. Etter " | ||
187 | "oppgraderingen kan fingeravtrykkene for de nye vertsnøklene skrives ut med " | ||
188 | "kommandoen «keygen -l -f VERTSNØKKELFIL»." | ||
189 | |||
190 | #. Type: note | ||
191 | #. Description | ||
192 | #: ../openssh-server.templates:5001 | ||
193 | msgid "The affected host keys are:" | ||
194 | msgstr "De vertsnøklene dette gjelder er:" | ||
195 | |||
196 | #. Type: note | ||
197 | #. Description | ||
198 | #: ../openssh-server.templates:5001 | ||
199 | msgid "" | ||
200 | "User keys may also be affected by this problem. The 'ssh-vulnkey' command " | ||
201 | "may be used as a partial test for this. See /usr/share/doc/openssh-server/" | ||
202 | "README.compromised-keys.gz for more details." | ||
203 | msgstr "" | ||
204 | "Det kan være at brukernøkler også har dette problemet. En delvis test på " | ||
205 | "dette kan gjøres med kommandoen «ssh-vulnkey». Mer detaljer finnes i /usr/" | ||
206 | "share/doc/openssh-server/README.compromised-keys.gz." | ||
diff --git a/debian/po/nl.po b/debian/po/nl.po new file mode 100644 index 000000000..56d6bba40 --- /dev/null +++ b/debian/po/nl.po | |||
@@ -0,0 +1,220 @@ | |||
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: openssh@packages.debian.org\n" | ||
18 | "POT-Creation-Date: 2008-05-17 13:58+0200\n" | ||
19 | "PO-Revision-Date: 2008-05-26 15:19+0200\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: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: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: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: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: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: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: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:3001 | ||
107 | msgid "New host key mandatory" | ||
108 | msgstr "Een nieuwe computersleutel is verplicht" | ||
109 | |||
110 | #. Type: note | ||
111 | #. Description | ||
112 | #: ../openssh-server.templates: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: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:4001 | ||
133 | msgid "Disable challenge-response authentication?" | ||
134 | msgstr "Challenge-response-authenticatie deactiveren?" | ||
135 | |||
136 | #. Type: boolean | ||
137 | #. Description | ||
138 | #: ../openssh-server.templates: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: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 | #. Type: note | ||
169 | #. Description | ||
170 | #: ../openssh-server.templates:5001 | ||
171 | msgid "Vulnerable host keys will be regenerated" | ||
172 | msgstr "Kwetsbare computersleutels worden opnieuw aangemaakt" | ||
173 | |||
174 | #. Type: note | ||
175 | #. Description | ||
176 | #: ../openssh-server.templates:5001 | ||
177 | msgid "" | ||
178 | "Some of the OpenSSH server host keys on this system were generated with a " | ||
179 | "version of OpenSSL that had a broken random number generator. As a result, " | ||
180 | "these host keys are from a well-known set, are subject to brute-force " | ||
181 | "attacks, and must be regenerated." | ||
182 | msgstr "" | ||
183 | "Er zijn op dit systeem OpenSSH-computersleutels aangetroffen die aangemaakt " | ||
184 | "zijn door een versie van OpenSSL met een onjuiste random-nummer-generator. " | ||
185 | "Hierdoor zijn deze computersleutels kwetsbaar voor 'brute-force'-aanvallen " | ||
186 | "en moeten ze opnieuw aangemaakt worden." | ||
187 | |||
188 | #. Type: note | ||
189 | #. Description | ||
190 | #: ../openssh-server.templates:5001 | ||
191 | msgid "" | ||
192 | "Users of this system should be informed of this change, as they will be " | ||
193 | "prompted about the host key change the next time they log in. Use 'ssh-" | ||
194 | "keygen -l -f HOST_KEY_FILE' after the upgrade to print the fingerprints of " | ||
195 | "the new host keys." | ||
196 | msgstr "" | ||
197 | "Gebruikers van dit systeem krijgen een melding omtrent de " | ||
198 | "computersleutelverandering op hun scherm de volgende keer dat ze inloggen " | ||
199 | "via ssh. U dient hun hierover dus te berichten. De vingerafdrukken van de " | ||
200 | "nieuwe computersleutels kunt na de opwaardering opvragen via het commando " | ||
201 | "'ssh-keygen -l -f HOST_KEY_FILE'." | ||
202 | |||
203 | #. Type: note | ||
204 | #. Description | ||
205 | #: ../openssh-server.templates:5001 | ||
206 | msgid "The affected host keys are:" | ||
207 | msgstr "De getroffen computersleutels zijn:" | ||
208 | |||
209 | #. Type: note | ||
210 | #. Description | ||
211 | #: ../openssh-server.templates:5001 | ||
212 | msgid "" | ||
213 | "User keys may also be affected by this problem. The 'ssh-vulnkey' command " | ||
214 | "may be used as a partial test for this. See /usr/share/doc/openssh-server/" | ||
215 | "README.compromised-keys.gz for more details." | ||
216 | msgstr "" | ||
217 | "Sleutels van gebruikers kunnen ook getroffen zijn door dit probleem. Het " | ||
218 | "'ssh-vulnkey' commando kan gebruikt worden als een gedeeltelijke test, meer " | ||
219 | "details vindt u in /usr/share/doc/openssh-server/README.compromised-keys." | ||
220 | "gz . " | ||
diff --git a/debian/po/pl.po b/debian/po/pl.po new file mode 100644 index 000000000..f7f99b80b --- /dev/null +++ b/debian/po/pl.po | |||
@@ -0,0 +1,443 @@ | |||
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: openssh@packages.debian.org\n" | ||
18 | "POT-Creation-Date: 2008-05-17 08:51+0200\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: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: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: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: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: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: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: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:3001 | ||
125 | msgid "New host key mandatory" | ||
126 | msgstr "" | ||
127 | |||
128 | #. Type: note | ||
129 | #. Description | ||
130 | #: ../openssh-server.templates: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: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:4001 | ||
153 | msgid "Disable challenge-response authentication?" | ||
154 | msgstr "" | ||
155 | |||
156 | #. Type: boolean | ||
157 | #. Description | ||
158 | #: ../openssh-server.templates: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: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 | #. Type: note | ||
179 | #. Description | ||
180 | #: ../openssh-server.templates:5001 | ||
181 | msgid "Vulnerable host keys will be regenerated" | ||
182 | msgstr "" | ||
183 | |||
184 | #. Type: note | ||
185 | #. Description | ||
186 | #: ../openssh-server.templates:5001 | ||
187 | msgid "" | ||
188 | "Some of the OpenSSH server host keys on this system were generated with a " | ||
189 | "version of OpenSSL that had a broken random number generator. As a result, " | ||
190 | "these host keys are from a well-known set, are subject to brute-force " | ||
191 | "attacks, and must be regenerated." | ||
192 | msgstr "" | ||
193 | |||
194 | #. Type: note | ||
195 | #. Description | ||
196 | #: ../openssh-server.templates:5001 | ||
197 | msgid "" | ||
198 | "Users of this system should be informed of this change, as they will be " | ||
199 | "prompted about the host key change the next time they log in. Use 'ssh-" | ||
200 | "keygen -l -f HOST_KEY_FILE' after the upgrade to print the fingerprints of " | ||
201 | "the new host keys." | ||
202 | msgstr "" | ||
203 | |||
204 | #. Type: note | ||
205 | #. Description | ||
206 | #: ../openssh-server.templates:5001 | ||
207 | msgid "The affected host keys are:" | ||
208 | msgstr "" | ||
209 | |||
210 | #. Type: note | ||
211 | #. Description | ||
212 | #: ../openssh-server.templates:5001 | ||
213 | msgid "" | ||
214 | "User keys may also be affected by this problem. The 'ssh-vulnkey' command " | ||
215 | "may be used as a partial test for this. See /usr/share/doc/openssh-server/" | ||
216 | "README.compromised-keys.gz for more details." | ||
217 | msgstr "" | ||
218 | |||
219 | #~ msgid "Warning: you must create a new host key" | ||
220 | #~ msgstr "Uwaga: musisz utworzyæ nowy klucz hosta" | ||
221 | |||
222 | #~ msgid "Warning: telnetd is installed --- probably not a good idea" | ||
223 | #~ msgstr "" | ||
224 | #~ "Uwaga: telnetd jest zainstalowany --- prawdopodobnie nienajlepszy pomys³" | ||
225 | |||
226 | #~ msgid "" | ||
227 | #~ "I'd advise you to either remove the telnetd package (if you don't " | ||
228 | #~ "actually need to offer telnet access) or install telnetd-ssl so that " | ||
229 | #~ "there is at least some chance that telnet sessions will not be sending " | ||
230 | #~ "unencrypted login/password and session information over the network." | ||
231 | #~ msgstr "" | ||
232 | #~ "Radzi³bym albo usun±æ pakiet telnetd (je¶li nie potrzebujesz koniecznie " | ||
233 | #~ "udostêpniaæ telnet'a) albo zainstalowaæ telnetd-ssl aby by³a choæ " | ||
234 | #~ "szansza, ¿e sesje telnet nie bêd± przesy³aæ niezaszyfrowanego loginu/" | ||
235 | #~ "has³a oraz danych sesji przez sieæ." | ||
236 | |||
237 | #~ msgid "Warning: rsh-server is installed --- probably not a good idea" | ||
238 | #~ msgstr "" | ||
239 | #~ "Uwaga: serwer rsh jest zainstalowany --- prawdopodobnie nienajlepszy " | ||
240 | #~ "pomys³" | ||
241 | |||
242 | #~ msgid "" | ||
243 | #~ "having rsh-server installed undermines the security that you were " | ||
244 | #~ "probably wanting to obtain by installing ssh. I'd advise you to remove " | ||
245 | #~ "that package." | ||
246 | #~ msgstr "" | ||
247 | #~ "Posiadanie zainstalowanego serwera rsh podminowuje zabezpieczenia, które " | ||
248 | #~ "prawdopodobnie starasz siê uzyskaæ instaluj±c ssh. Radzi³bym usun±æ ten " | ||
249 | #~ "pakiet." | ||
250 | |||
251 | #~ msgid "Do you want ssh-keysign to be installed SUID root?" | ||
252 | #~ msgstr "Czy chcesz aby ssh-keysign by³ zainstalowany jako SUID root?" | ||
253 | |||
254 | #~ msgid "" | ||
255 | #~ "You have the option of installing the ssh-keysign helper with the SUID " | ||
256 | #~ "bit set." | ||
257 | #~ msgstr "" | ||
258 | #~ "Masz mo¿liwo¶æ zainstalowania pomocniczego programu ssh-keysign z " | ||
259 | #~ "w³±czonym bitem SETUID." | ||
260 | |||
261 | #~ msgid "" | ||
262 | #~ "If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 " | ||
263 | #~ "host-based authentication." | ||
264 | #~ msgstr "" | ||
265 | #~ "Je¶li uczynisz ssh-keysign SUIDowym, bêdziesz móg³ u¿ywaæ opartej na " | ||
266 | #~ "hostach autoryzacji drugiej wersji protoko³u SSH." | ||
267 | |||
268 | #~ msgid "" | ||
269 | #~ "If in doubt, I suggest you install it with SUID. If it causes problems " | ||
270 | #~ "you can change your mind later by running: dpkg-reconfigure ssh" | ||
271 | #~ msgstr "" | ||
272 | #~ "Je¶li masz w±tpliwo¶ci, radzê zainstalowaæ go z SUIDem. Je¶li to sprawia " | ||
273 | #~ "problemy, mo¿esz zmieniæ swoje zdanie uruchamiaj±c pó¼niej polecenie: " | ||
274 | #~ "dpkg-reconfigure ssh" | ||
275 | |||
276 | #~ msgid "Allow SSH protocol 2 only" | ||
277 | #~ msgstr "Zezwalaj wy³±cznie na wersjê 2 protoko³u SSH" | ||
278 | |||
279 | #~ msgid "" | ||
280 | #~ "This version of OpenSSH supports version 2 of the ssh protocol, which is " | ||
281 | #~ "much more secure. Disabling ssh 1 is encouraged, however this will slow " | ||
282 | #~ "things down on low end machines and might prevent older clients from " | ||
283 | #~ "connecting (the ssh client shipped with \"potato\" is affected)." | ||
284 | #~ msgstr "" | ||
285 | #~ "Ta wersja OpenSSH wspiera drug± wersjê protoko³u ssh, która jest znacznie " | ||
286 | #~ "bardziej bezpieczna. Wy³±czenie ssh 1 jest zalecane, choæ spowalnia to " | ||
287 | #~ "dzia³anie na starych maszynach i mo¿e uniemo¿liwiæ po³±czenie starszym " | ||
288 | #~ "wersjom klientów (dotyczy to np. klienta ssh do³±czanego do \"potato\")." | ||
289 | |||
290 | #~ msgid "" | ||
291 | #~ "Also please note that keys used for protocol 1 are different so you will " | ||
292 | #~ "not be able to use them if you only allow protocol 2 connections." | ||
293 | #~ msgstr "" | ||
294 | #~ "Ponadto, zauwa¿ proszê, ¿e klucze u¿ywane przez protokó³ 1 s± inne, wiêc " | ||
295 | #~ "nie bêdziesz móg³ ich u¿ywaæ je¶li zezwolisz na korzystanie wy³±cznie z " | ||
296 | #~ "wersji 2 protoko³u." | ||
297 | |||
298 | #~ msgid "" | ||
299 | #~ "If you later change your mind about this setting, README.Debian has " | ||
300 | #~ "instructions on what to do to your sshd_config file." | ||
301 | #~ msgstr "" | ||
302 | #~ "Je¶li pó¼niej zmienisz zdanie co do tego ustawienia, to instrukcje co " | ||
303 | #~ "zmieniæ w sshd_config znajduj± siê w README.Debian." | ||
304 | |||
305 | #~ msgid "NOTE: Forwarding of X11 and Authorization disabled by default." | ||
306 | #~ msgstr "" | ||
307 | #~ "UWAGA: Przekazywanie (forwarding) X11 i Autoryzacji jest domy¶lnie " | ||
308 | #~ "wy³±czone." | ||
309 | |||
310 | #~ msgid "" | ||
311 | #~ "For security reasons, the Debian version of ssh has ForwardX11 and " | ||
312 | #~ "ForwardAgent set to ``off'' by default." | ||
313 | #~ msgstr "" | ||
314 | #~ "Ze wzglêdów bezpieczeñstwa Debianowa wersja ssh ma ForwardX11 i " | ||
315 | #~ "ForwardAgent ustawione domy¶lnie na 'off'." | ||
316 | |||
317 | #~ msgid "" | ||
318 | #~ "You can enable it for servers you trust, either in one of the " | ||
319 | #~ "configuration files, or with the -X command line option." | ||
320 | #~ msgstr "" | ||
321 | #~ "Dla zaufanych serwerów mo¿esz w³±czyæ te opcje w pliku konfiguracyjnym " | ||
322 | #~ "lub przy pomocy opcji -X z linii komend." | ||
323 | |||
324 | #~ msgid "More details can be found in /usr/share/doc/ssh/README.Debian" | ||
325 | #~ msgstr "Wiêcej szczegó³ów znajdziesz w /usr/share/doc/ssh/README.Debian." | ||
326 | |||
327 | #~ msgid "ssh2 keys merged in configuration files" | ||
328 | #~ msgstr "klucze ssh2 w³±czone do plików konfiguracyjnych" | ||
329 | |||
330 | #~ msgid "" | ||
331 | #~ "As of version 3 OpenSSH no longer uses separate files for ssh1 and ssh2 " | ||
332 | #~ "keys. This means the authorized_keys2 and known_hosts2 files are no " | ||
333 | #~ "longer needed. They will still be read in order to maintain backwards " | ||
334 | #~ "compatibility" | ||
335 | #~ msgstr "" | ||
336 | #~ "Pocz±wszy od wersji 3 OpenSSH nie u¿ywa ju¿ osobnych plików dla kluczy " | ||
337 | #~ "ssh1 i ssh2. Oznacza to, ¿e pliki authorized_keys2 i known_hosts2 nie s± " | ||
338 | #~ "ju¿ potrzebne. Bêd± one jednak odczytywane aby zachowaæ wsteczn± " | ||
339 | #~ "kompatybilno¶æ." | ||
340 | |||
341 | #~ msgid "Do you want to run the sshd server?" | ||
342 | #~ msgstr "Czy chcesz uruchamiaæ serwer sshd ?" | ||
343 | |||
344 | #~ msgid "This package contains both the ssh client, and the sshd server." | ||
345 | #~ msgstr "Ten pakiet zawiera zarówno klienta ssh, jak i serwer sshd." | ||
346 | |||
347 | #~ msgid "" | ||
348 | #~ "Normally the sshd Secure Shell Server will be run to allow remote logins " | ||
349 | #~ "via ssh." | ||
350 | #~ msgstr "" | ||
351 | #~ "Normalnie serwer sshd (Secure Shell Server) bêdzie uruchomiony aby " | ||
352 | #~ "umo¿liwiæ zdalny dostêp przez ssh." | ||
353 | |||
354 | #~ msgid "" | ||
355 | #~ "If you are only interested in using the ssh client for outbound " | ||
356 | #~ "connections on this machine, and don't want to log into it at all using " | ||
357 | #~ "ssh, then you can disable sshd here." | ||
358 | #~ msgstr "" | ||
359 | #~ "Je¶li jeste¶ zainteresowany u¿ywaniem wy³±cznie klienta ssh dla po³±czeñ " | ||
360 | #~ "wychodz±cych z tej maszyny, i nie chcesz siê na ni± logowaæ przy pomocy " | ||
361 | #~ "ssh, to mo¿esz teraz wy³±czyæ serwer sshd." | ||
362 | |||
363 | #~ msgid "Environment options on keys have been deprecated" | ||
364 | #~ msgstr "Odradzamy stosowanie ustawieñ ¶rodowiskowych dla kluczy." | ||
365 | |||
366 | #~ msgid "" | ||
367 | #~ "This version of OpenSSH disables the environment option for public keys " | ||
368 | #~ "by default, in order to avoid certain attacks (for example, LD_PRELOAD). " | ||
369 | #~ "If you are using this option in an authorized_keys file, beware that the " | ||
370 | #~ "keys in question will no longer work until the option is removed." | ||
371 | #~ msgstr "" | ||
372 | #~ "Ta wersja OpenSSH ma wy³±czon± opcjê wykorzystywania ustawieñ " | ||
373 | #~ "¶rodowiskowych dla kluczy publicznych. Mo¿na dziêki temu unikn±æ pewnych " | ||
374 | #~ "ataków (jak np.: LD_PRELOAD). Je¿eli u¿ywasz tej opcji w pliku " | ||
375 | #~ "authorized_keys, to zawarte w nim klucze nie bêd± dzia³aæ dopóki ta opcja " | ||
376 | #~ "nie zostanie usuniêta." | ||
377 | |||
378 | #~ msgid "" | ||
379 | #~ "To re-enable this option, set \"PermitUserEnvironment yes\" in /etc/ssh/" | ||
380 | #~ "sshd_config after the upgrade is complete, taking note of the warning in " | ||
381 | #~ "the sshd_config(5) manual page." | ||
382 | #~ msgstr "" | ||
383 | #~ "Aby ponownie w³±czyæ tê opcjê, nale¿y dodaæ wpis \"PermitUserEnvironment " | ||
384 | #~ "yes\" do pliku /etc/ssh/sshd_config po ukoñczeniu aktualizacji. Przy " | ||
385 | #~ "zmianie konfiguracji nale¿y zapoznaæ siê z informacjami zawartymi na " | ||
386 | #~ "stronie podrêcznika systemowego sshd_config(5)." | ||
387 | |||
388 | #~ msgid "Privilege separation" | ||
389 | #~ msgstr "Separacja uprawnieñ" | ||
390 | |||
391 | #~ msgid "" | ||
392 | #~ "Privilege separation is turned on by default, so if you decide you want " | ||
393 | #~ "it turned off, you need to add \"UsePrivilegeSeparation no\" to /etc/ssh/" | ||
394 | #~ "sshd_config." | ||
395 | #~ msgstr "" | ||
396 | #~ "Separacja uprawnieñ jest domy¶lnie w³±czona, wiêc je¶li zdecydujesz siê " | ||
397 | #~ "j± wy³±czyæ, musisz dodaæ \"UsePrivilegeSeparation no\" do pliku /etc/ssh/" | ||
398 | #~ "sshd_config." | ||
399 | |||
400 | #~ msgid "Enable Privilege separation" | ||
401 | #~ msgstr "W³±czenie separacji uprawnieñ" | ||
402 | |||
403 | #~ msgid "" | ||
404 | #~ "This version of OpenSSH contains the new privilege separation option. " | ||
405 | #~ "This significantly reduces the quantity of code that runs as root, and " | ||
406 | #~ "therefore reduces the impact of security holes in sshd." | ||
407 | #~ msgstr "" | ||
408 | #~ "Ta wersja OpenSSH zawiera now± opcjê separacji uprawnieñ. Znacz±co " | ||
409 | #~ "zmniejsza ona ilo¶æ kodu, który jest uruchamiany jako root i co za tym " | ||
410 | #~ "idzie redukuje efekty luk bezpieczeñstwa w sshd." | ||
411 | |||
412 | #~ msgid "" | ||
413 | #~ "Unfortunately, privilege separation interacts badly with PAM. Any PAM " | ||
414 | #~ "session modules that need to run as root (pam_mkhomedir, for example) " | ||
415 | #~ "will fail, and PAM keyboard-interactive authentication won't work." | ||
416 | #~ msgstr "" | ||
417 | #~ "Niestety separacja uprawnieñ ¼le reaguje z PAMem. Jakikolwiek modu³ sesji " | ||
418 | #~ "PAM, który musi byæ uruchamiany jako root (pam_mkhomedir, na przyk³ad) " | ||
419 | #~ "zawiedzie. Nie bêdzie dzia³aæ równie¿ interaktywna autentykacja z " | ||
420 | #~ "klawiatury (keyboard-interactive authentication)." | ||
421 | |||
422 | #, fuzzy | ||
423 | #~ msgid "" | ||
424 | #~ "Since you've opted to have me generate an sshd_config file for you, you " | ||
425 | #~ "can choose whether or not to have privilege separation turned on or not. " | ||
426 | #~ "Unless you know you need to use PAM features that won't work with this " | ||
427 | #~ "option, you should enable it." | ||
428 | #~ msgstr "" | ||
429 | #~ "Zdecydowa³e¶ siê na to abym wygenerowa³ dla ciebie plik sshd_config, i " | ||
430 | #~ "mo¿esz wybraæ czy chcesz w³±czyæ Separacjê Uprawnieñ, czy te¿ nie. Je¶li " | ||
431 | #~ "nie u¿ywasz j±dra z serii 2.0 (w którym to przypadku *musisz* " | ||
432 | #~ "odpowiedzieæ tutaj 'nie' albo sshd w ogóle nie ruszy) i je¶li nie musisz " | ||
433 | #~ "korzystaæ z mo¿liwo¶ci PAMa, które nie bêd± dzia³a³y z t± opcj±, " | ||
434 | #~ "powiniene¶ odpowiedzieæ tutaj 'tak'." | ||
435 | |||
436 | #~ msgid "" | ||
437 | #~ "NB! If you are running a 2.0 series Linux kernel, then privilege " | ||
438 | #~ "separation will not work at all, and your sshd will fail to start unless " | ||
439 | #~ "you explicitly turn privilege separation off." | ||
440 | #~ msgstr "" | ||
441 | #~ "UWAGA! Je¿eli u¿ywasz j±dra Linux'a z serii 2.0, to separacja uprawnieñ w " | ||
442 | #~ "ogóle nie bêdzie dzia³aæ i sshd nie wystartuje dopóki w³asnorêcznie nie " | ||
443 | #~ "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..d9fe05431 --- /dev/null +++ b/debian/po/pt.po | |||
@@ -0,0 +1,206 @@ | |||
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.7p1-9\n" | ||
8 | "Report-Msgid-Bugs-To: openssh@packages.debian.org\n" | ||
9 | "POT-Creation-Date: 2008-05-17 13:58+0200\n" | ||
10 | "PO-Revision-Date: 2008-05-18 14:48+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: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: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: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: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: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: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: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: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: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: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: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: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: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." | ||
154 | |||
155 | #. Type: note | ||
156 | #. Description | ||
157 | #: ../openssh-server.templates:5001 | ||
158 | msgid "Vulnerable host keys will be regenerated" | ||
159 | msgstr "Chaves do anfitrião vulneráveis serão regeneradas" | ||
160 | |||
161 | #. Type: note | ||
162 | #. Description | ||
163 | #: ../openssh-server.templates:5001 | ||
164 | msgid "" | ||
165 | "Some of the OpenSSH server host keys on this system were generated with a " | ||
166 | "version of OpenSSL that had a broken random number generator. As a result, " | ||
167 | "these host keys are from a well-known set, are subject to brute-force " | ||
168 | "attacks, and must be regenerated." | ||
169 | msgstr "" | ||
170 | "Algumas das chaves do servidor OpenSSH neste sistema foram criadas com uma " | ||
171 | "versão do OpenSSL que tem um gerador de números aleatórios com problemas. " | ||
172 | "Como resultado estas chaves, que fazem parte de um conjunto bem conhecido, " | ||
173 | "estão sujeitas a ataques por força bruta, e têm de ser geradas de novo." | ||
174 | |||
175 | #. Type: note | ||
176 | #. Description | ||
177 | #: ../openssh-server.templates:5001 | ||
178 | msgid "" | ||
179 | "Users of this system should be informed of this change, as they will be " | ||
180 | "prompted about the host key change the next time they log in. Use 'ssh-" | ||
181 | "keygen -l -f HOST_KEY_FILE' after the upgrade to print the fingerprints of " | ||
182 | "the new host keys." | ||
183 | msgstr "" | ||
184 | "Os utilizadores deste sistema devem ser informados desta mudança, uma vez " | ||
185 | "que vão ser avisados da mudança de chave da próxima vez que se ligarem. " | ||
186 | "Utilize o comando 'ssh-keygen -l -f FICHEIRO_DA_CHAVE' depois da " | ||
187 | "actualização para imprimir as impressões das novas chaves." | ||
188 | |||
189 | #. Type: note | ||
190 | #. Description | ||
191 | #: ../openssh-server.templates:5001 | ||
192 | msgid "The affected host keys are:" | ||
193 | msgstr "As chaves afectadas são:" | ||
194 | |||
195 | #. Type: note | ||
196 | #. Description | ||
197 | #: ../openssh-server.templates:5001 | ||
198 | msgid "" | ||
199 | "User keys may also be affected by this problem. The 'ssh-vulnkey' command " | ||
200 | "may be used as a partial test for this. See /usr/share/doc/openssh-server/" | ||
201 | "README.compromised-keys.gz for more details." | ||
202 | msgstr "" | ||
203 | "As chaves de utilizador também podem ser afectadas por este problema. O " | ||
204 | "comando 'ssh-vulnkey' pode ser usado como um teste parcial para este caso. " | ||
205 | "Veja o ficheiro /usr/share/doc/openssh-server/README.compromised-keys.gz " | ||
206 | "para mais detalhes." | ||
diff --git a/debian/po/pt_BR.po b/debian/po/pt_BR.po new file mode 100644 index 000000000..07c452cc7 --- /dev/null +++ b/debian/po/pt_BR.po | |||
@@ -0,0 +1,214 @@ | |||
1 | # openssh 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) <frolic@debian-ce.org>, 2008. | ||
6 | # | ||
7 | msgid "" | ||
8 | msgstr "" | ||
9 | "pt_BR utf-8\n" | ||
10 | "Project-Id-Version: openssh 1:4.7p1-9\n" | ||
11 | "Report-Msgid-Bugs-To: openssh@packages.debian.org\n" | ||
12 | "POT-Creation-Date: 2008-05-17 13:58+0200\n" | ||
13 | "PO-Revision-Date: 2008-05-27 10:10-0300\n" | ||
14 | "Last-Translator: Eder L. Marques (frolic) <frolic@debian-ce.org>\n" | ||
15 | "Language-Team: Brazilian Portuguese <debian-l10n-portuguese@lists.debian." | ||
16 | "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:1001 | ||
24 | msgid "Generate a new configuration file for OpenSSH?" | ||
25 | msgstr "Gerar um novo arquivo de configuração para o OpenSSH?" | ||
26 | |||
27 | #. Type: boolean | ||
28 | #. Description | ||
29 | #: ../openssh-server.templates: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 | "Esta versão do OpenSSH possui um arquivo de configuração consideravelmente " | ||
38 | "diferente da versão fornecida com o Debian 'Potato', a versão do Debian a " | ||
39 | "partir da qual você parece estar atualizando. Este pacote pode agora gerar " | ||
40 | "um novo arquivo de configuração (/etc/ssh/sshd_config), o qual irá funcionar " | ||
41 | "com a nova versão do servidor sshd mas não irá conter nenhuma personalização " | ||
42 | "que você possa ter feito na versão anterior." | ||
43 | |||
44 | #. Type: boolean | ||
45 | #. Description | ||
46 | #: ../openssh-server.templates: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 | "Por favor, note que este novo arquivo de configuração irá definir o valor da " | ||
54 | "opção 'PermitRootLogin' para 'yes' (o que significa que qualquer pessoa que " | ||
55 | "conheça a senha do root poderá conectar via ssh diretamente como root). Por " | ||
56 | "favor, leia os arquivos README.Debian para maiores detalhes sobre essa " | ||
57 | "escolha de projeto." | ||
58 | |||
59 | #. Type: boolean | ||
60 | #. Description | ||
61 | #: ../openssh-server.templates:1001 | ||
62 | msgid "" | ||
63 | "It is strongly recommended that you choose to generate a new configuration " | ||
64 | "file now." | ||
65 | msgstr "" | ||
66 | "É fortemente recomendado que você escolha gerar um novo arquivo de " | ||
67 | "configuração agora." | ||
68 | |||
69 | #. Type: boolean | ||
70 | #. Description | ||
71 | #: ../openssh-server.templates:2001 | ||
72 | msgid "Do you want to risk killing active SSH sessions?" | ||
73 | msgstr "Você deseja arriscar matar (\"kill\") as sessões SSH ativas?" | ||
74 | |||
75 | #. Type: boolean | ||
76 | #. Description | ||
77 | #: ../openssh-server.templates: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 | "A versão instalada atualmente de /etc/init.d/ssh está prestes a derrubar " | ||
84 | "todas as instâncias sshd em execução. Se você estiver fazendo esta " | ||
85 | "atualização através de uma sessão SSH, você provavelmente será desconectado " | ||
86 | "e deixará este processo de atualização incompleto." | ||
87 | |||
88 | #. Type: boolean | ||
89 | #. Description | ||
90 | #: ../openssh-server.templates: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 | "Você pode corrigir isto adicionando \"--pidfile /var/run/sshd.pid\" na linha " | ||
96 | "start-stop-daemon na seção stop deste arquivo." | ||
97 | |||
98 | #. Type: note | ||
99 | #. Description | ||
100 | #: ../openssh-server.templates:3001 | ||
101 | msgid "New host key mandatory" | ||
102 | msgstr "Nova chave de máquina obrigatória" | ||
103 | |||
104 | #. Type: note | ||
105 | #. Description | ||
106 | #: ../openssh-server.templates: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 | "A chave de máquina atual, em /etc/ssh/ssh_host_key, é criptografada " | ||
114 | "utilizando o algoritmo IDEA. O OpenSSH não pode gerenciar esse arquivo de " | ||
115 | "chave de máquina, e o utilitário ssh-keygen da antiga (e não livre) " | ||
116 | "instalação SSH não parece estar disponÃvel." | ||
117 | |||
118 | #. Type: note | ||
119 | #. Description | ||
120 | #: ../openssh-server.templates:3001 | ||
121 | msgid "You need to manually generate a new host key." | ||
122 | msgstr "Você precisa gerar manualmente uma chave de máquina." | ||
123 | |||
124 | #. Type: boolean | ||
125 | #. Description | ||
126 | #: ../openssh-server.templates:4001 | ||
127 | msgid "Disable challenge-response authentication?" | ||
128 | msgstr "Desabilitar autenticação desafio-resposta (\"challenge-response\")?" | ||
129 | |||
130 | #. Type: boolean | ||
131 | #. Description | ||
132 | #: ../openssh-server.templates:4001 | ||
133 | msgid "" | ||
134 | "Password authentication appears to be disabled in the current OpenSSH server " | ||
135 | "configuration. In order to prevent users from logging in using passwords " | ||
136 | "(perhaps using only public key authentication instead) with recent versions " | ||
137 | "of OpenSSH, you must disable challenge-response authentication, or else " | ||
138 | "ensure that your PAM configuration does not allow Unix password file " | ||
139 | "authentication." | ||
140 | msgstr "" | ||
141 | "A autenticação através de senha parece estar desabilitada em sua " | ||
142 | "configuração atual do servidor OpenSSH. Para que seja possÃvel evitar que " | ||
143 | "usuários se autentiquem utilizando senhas (talvez utilizando somente " | ||
144 | "autenticação através de chaves públicas) em versões recentes do OpenSSH você " | ||
145 | "deve desabilitar a autenticação desafio-resposta (\"challenge-response\") ou " | ||
146 | "então se certificar que sua configuração PAM não permita autenticação " | ||
147 | "através do arquivos de senhas Unix (\"password\")." | ||
148 | |||
149 | #. Type: boolean | ||
150 | #. Description | ||
151 | #: ../openssh-server.templates:4001 | ||
152 | msgid "" | ||
153 | "If you disable challenge-response authentication, then users will not be " | ||
154 | "able to log in using passwords. If you leave it enabled (the default " | ||
155 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
156 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
157 | msgstr "" | ||
158 | "Caso você desabilite a autenticação desafio-resposta (\"challenge-response" | ||
159 | "\"), os usuários não poderão se autenticar utilizando suas senhas. Se você " | ||
160 | "deixá-la habilitada (a resposta padrão), então a opção " | ||
161 | "'PasswordAuthentication no' não terá efeito útil a menos que você também " | ||
162 | "ajuste sua configuração PAM em /etc/pam.d/ssh." | ||
163 | |||
164 | #. Type: note | ||
165 | #. Description | ||
166 | #: ../openssh-server.templates:5001 | ||
167 | msgid "Vulnerable host keys will be regenerated" | ||
168 | msgstr "Chaves de host vulneráveis serão regeradas" | ||
169 | |||
170 | #. Type: note | ||
171 | #. Description | ||
172 | #: ../openssh-server.templates:5001 | ||
173 | msgid "" | ||
174 | "Some of the OpenSSH server host keys on this system were generated with a " | ||
175 | "version of OpenSSL that had a broken random number generator. As a result, " | ||
176 | "these host keys are from a well-known set, are subject to brute-force " | ||
177 | "attacks, and must be regenerated." | ||
178 | msgstr "" | ||
179 | "Algumas das chaves de host do servidor OpenSSH neste sistema foram geradas " | ||
180 | "com uma versão do OpenSSL que tem um gerador de números aleatórios quebrado. " | ||
181 | "Como resultado, estas chaves de host são originárias de um conjunto bem " | ||
182 | "conhecido, ficando sujeitas a ataques de força bruta, e devem ser regeradas." | ||
183 | |||
184 | #. Type: note | ||
185 | #. Description | ||
186 | #: ../openssh-server.templates:5001 | ||
187 | msgid "" | ||
188 | "Users of this system should be informed of this change, as they will be " | ||
189 | "prompted about the host key change the next time they log in. Use 'ssh-" | ||
190 | "keygen -l -f HOST_KEY_FILE' after the upgrade to print the fingerprints of " | ||
191 | "the new host keys." | ||
192 | msgstr "" | ||
193 | "Usuários deste sistema deverão ser informados desta mudança, pois eles serão " | ||
194 | "alertados sobre a mudança de chave de host na próxima vez que logarem. Use " | ||
195 | "'ssh-keygen -l -f ARQUIVO_COM_A_CHAVE_DE_HOST' após a atualização para " | ||
196 | "exibir as impressões digitais (\"fingerprints\") das novas chaves de host." | ||
197 | |||
198 | #. Type: note | ||
199 | #. Description | ||
200 | #: ../openssh-server.templates:5001 | ||
201 | msgid "The affected host keys are:" | ||
202 | msgstr "As chaves de host afetadas são:" | ||
203 | |||
204 | #. Type: note | ||
205 | #. Description | ||
206 | #: ../openssh-server.templates:5001 | ||
207 | msgid "" | ||
208 | "User keys may also be affected by this problem. The 'ssh-vulnkey' command " | ||
209 | "may be used as a partial test for this. See /usr/share/doc/openssh-server/" | ||
210 | "README.compromised-keys.gz for more details." | ||
211 | msgstr "" | ||
212 | "Chaves de usuários também podem ser afetadas por este problema. O comando " | ||
213 | "'ssh-vulnkey' pode ser usado como um teste parcial para isso. Veja /usr/" | ||
214 | "share/doc/openssh-server/README.compromised-keys.gz para mais detalhes." | ||
diff --git a/debian/po/ro.po b/debian/po/ro.po new file mode 100644 index 000000000..3a5574066 --- /dev/null +++ b/debian/po/ro.po | |||
@@ -0,0 +1,234 @@ | |||
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 | # Cătălin Feștilă <catalinfest@gmail.com>,2008 | ||
8 | msgid "" | ||
9 | msgstr "" | ||
10 | "Project-Id-Version: openssh 1.4\n" | ||
11 | "Report-Msgid-Bugs-To: openssh@packages.debian.org\n" | ||
12 | "POT-Creation-Date: 2008-05-17 08:51+0200\n" | ||
13 | "PO-Revision-Date: 2008-05-28 17:54+0200\n" | ||
14 | "Last-Translator: Cătălin Feștilă <catalinfest@gmail.com>\n" | ||
15 | "Language-Team: Romanian <debian-l10n-romanian@lists.debian.org>\n" | ||
16 | "MIME-Version: 1.0\n" | ||
17 | "Content-Type: text/plain; charset=UTF-8\n" | ||
18 | "Content-Transfer-Encoding: 8bit\n" | ||
19 | "X-Generator: KBabel 1.11.4\n" | ||
20 | "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " | ||
21 | "20)) ? 1 : 2;\n" | ||
22 | |||
23 | #. Type: boolean | ||
24 | #. Description | ||
25 | #: ../openssh-server.templates:1001 | ||
26 | msgid "Generate a new configuration file for OpenSSH?" | ||
27 | msgstr "Să se genereze un fișier nou de configurare pentru OpenSSH?" | ||
28 | |||
29 | #. Type: boolean | ||
30 | #. Description | ||
31 | #: ../openssh-server.templates:1001 | ||
32 | msgid "" | ||
33 | "This version of OpenSSH has a considerably changed configuration file from " | ||
34 | "the version shipped in Debian 'Potato', which you appear to be upgrading " | ||
35 | "from. This package can now generate a new configuration file (/etc/ssh/sshd." | ||
36 | "config), which will work with the new server version, but will not contain " | ||
37 | "any customizations you made with the old version." | ||
38 | msgstr "" | ||
39 | "Această versiune de OpenSSH are un fișier de configurare considerabil " | ||
40 | "modificat față de versiunea care vine cu Debian 'Potato', pe care se pare că " | ||
41 | "o actualizați. Acest pachet poate genera acum un nou fișier de configurare (/" | ||
42 | "etc/ssh/sshd.config), care va funcționa cu noua versiune de server, dar nu " | ||
43 | "va conține nici o personalizare făcută pentru versiunea anterioară." | ||
44 | |||
45 | #. Type: boolean | ||
46 | #. Description | ||
47 | #: ../openssh-server.templates:1001 | ||
48 | msgid "" | ||
49 | "Please note that this new configuration file will set the value of " | ||
50 | "'PermitRootLogin' to 'yes' (meaning that anyone knowing the root password " | ||
51 | "can ssh directly in as root). Please read the README.Debian file for more " | ||
52 | "details about this design choice." | ||
53 | msgstr "" | ||
54 | "A se reține că acest fișier nou de configurare va stabili valoarea opțiunii " | ||
55 | "'PermitRootLogin' la „yes†(ceea ce înseamnă că cine știe parola de root se " | ||
56 | "poate autentifica prin ssh direct ca root). Părerea responsabilului de " | ||
57 | "pachet este că aceasta trebuie să fie valoarea implicită (a se vedea " | ||
58 | "fișierul README.Debian pentru detalii suplimentare), dar, dacă doriți, " | ||
59 | "puteți edita oricând fișierul sshd_config pentru a stabili valoarea opțiunii " | ||
60 | "la „noâ€." | ||
61 | |||
62 | #. Type: boolean | ||
63 | #. Description | ||
64 | #: ../openssh-server.templates:1001 | ||
65 | msgid "" | ||
66 | "It is strongly recommended that you choose to generate a new configuration " | ||
67 | "file now." | ||
68 | msgstr "Este indicat să alegeți acum generarea un nou fișier de configurare." | ||
69 | |||
70 | #. Type: boolean | ||
71 | #. Description | ||
72 | #: ../openssh-server.templates:2001 | ||
73 | msgid "Do you want to risk killing active SSH sessions?" | ||
74 | msgstr "Doriți să riscați întreruperea sesiunilor ssh active?" | ||
75 | |||
76 | #. Type: boolean | ||
77 | #. Description | ||
78 | #: ../openssh-server.templates: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 | "Este foarte probabil ca această versiune de /etc/init.d/ssh pe care o aveți " | ||
85 | "instalată să omoare toate instanțele sshd care rulează. Dacă faceți această " | ||
86 | "actualizare printr-o sesiune ssh, atunci este posibil să fiți deconectați și " | ||
87 | "actualizarea să rămână neterminată." | ||
88 | |||
89 | #. Type: boolean | ||
90 | #. Description | ||
91 | #: ../openssh-server.templates: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 | "Puteți repară manual acest lucru adăugând „--pidfile /var/run/sshd.pid†la " | ||
97 | "linia start-stop-daemon în secțiunea stop a fișierului." | ||
98 | |||
99 | #. Type: note | ||
100 | #. Description | ||
101 | #: ../openssh-server.templates:3001 | ||
102 | msgid "New host key mandatory" | ||
103 | msgstr "O cheie nouă este obligatorie" | ||
104 | |||
105 | #. Type: note | ||
106 | #. Description | ||
107 | #: ../openssh-server.templates: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 | "Cheia curentă în /etc/ssh/ssh_host_key este criptată cu algoritmul IDEA. " | ||
115 | "OpenSSH nu suportă acest tip de cheie, iar utilitarul ssh-keygen din " | ||
116 | "versiunea SSH (non-liberă) anterior instalată nu pare să fie disponibil." | ||
117 | |||
118 | #. Type: note | ||
119 | #. Description | ||
120 | #: ../openssh-server.templates:3001 | ||
121 | msgid "You need to manually generate a new host key." | ||
122 | msgstr "Va trebui să generați manual o nouă cheie pentru sistem." | ||
123 | |||
124 | #. Type: boolean | ||
125 | #. Description | ||
126 | #: ../openssh-server.templates:4001 | ||
127 | msgid "Disable challenge-response authentication?" | ||
128 | msgstr "Dezactivează modul de autentificare provocare-răspuns?" | ||
129 | |||
130 | #. Type: boolean | ||
131 | #. Description | ||
132 | #: ../openssh-server.templates:4001 | ||
133 | msgid "" | ||
134 | "Password authentication appears to be disabled in the current OpenSSH server " | ||
135 | "configuration. In order to prevent users from logging in using passwords " | ||
136 | "(perhaps using only public key authentication instead) with recent versions " | ||
137 | "of OpenSSH, you must disable challenge-response authentication, or else " | ||
138 | "ensure that your PAM configuration does not allow Unix password file " | ||
139 | "authentication." | ||
140 | msgstr "" | ||
141 | "Autentificarea pe bază de parole pare dezactivată în configurația curentă a " | ||
142 | "serverului OpenSSH. Pentru a împiedica utilizatorii să se autentifice " | ||
143 | "folosind parole (probabil folosind doar autentificarea cu chei publice) în " | ||
144 | "versiunile recente OpenSSH trebuie să dezactivați autentificarea tip " | ||
145 | "provocare-răspuns, sau asigurați-vă că configurația PAM nu permite " | ||
146 | "autentificarea cu fișierul de parole Unix." | ||
147 | |||
148 | #. Type: boolean | ||
149 | #. Description | ||
150 | #: ../openssh-server.templates:4001 | ||
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 | "Dacă dezactivați autentificarea pe bază de provocare-răspuns, utilizatorii " | ||
158 | "nu vor mai putea să se autentifice folosind parolele. Dacă nu o dezactivați " | ||
159 | "(răspunsul implicit), atunci opțiunea 'PasswordAuthentification no' va fi " | ||
160 | "utilizabilă doar dacă modificați și configurația PAM din /etc/pam.d/ssh." | ||
161 | |||
162 | #. Type: note | ||
163 | #. Description | ||
164 | #: ../openssh-server.templates:5001 | ||
165 | msgid "Vulnerable host keys will be regenerated" | ||
166 | msgstr "Cheile vulnerabile vor fi regenerate" | ||
167 | |||
168 | #. Type: note | ||
169 | #. Description | ||
170 | #: ../openssh-server.templates:5001 | ||
171 | msgid "" | ||
172 | "Some of the OpenSSH server host keys on this system were generated with a " | ||
173 | "version of OpenSSL that had a broken random number generator. As a result, " | ||
174 | "these host keys are from a well-known set, are subject to brute-force " | ||
175 | "attacks, and must be regenerated." | ||
176 | msgstr "" | ||
177 | "Unele dintre cheile serverului OpenSSH gazdă de pe acest sistem au fost " | ||
178 | "generate cu o versiune de OpenSSL, care a avut un generator de numere " | ||
179 | "aleatorii stricat. Ca rezultat, aceste chei gazda sunt un set binecunoscut, " | ||
180 | "sunt supuse la atacuri brute-force și trebuie să fie regenerate." | ||
181 | |||
182 | #. Type: note | ||
183 | #. Description | ||
184 | #: ../openssh-server.templates:5001 | ||
185 | msgid "" | ||
186 | "Users of this system should be informed of this change, as they will be " | ||
187 | "prompted about the host key change the next time they log in. Use 'ssh-" | ||
188 | "keygen -l -f HOST_KEY_FILE' after the upgrade to print the fingerprints of " | ||
189 | "the new host keys." | ||
190 | msgstr "" | ||
191 | "Utilizatorii acestui sistem ar trebui să fie informați ce se schimbă, " | ||
192 | "deoarece se va solicita cheia gazdă ce se schimba data viitoare când se " | ||
193 | "autentifică. Folosiți 'ssh-keygen -l -f HOST_KEY_FILE' după ce faceți " | ||
194 | "actualizare pentru a imprima amprentele digitale ale noilor chei gazdă." | ||
195 | |||
196 | #. Type: note | ||
197 | #. Description | ||
198 | #: ../openssh-server.templates:5001 | ||
199 | msgid "The affected host keys are:" | ||
200 | msgstr "Cheile gazdă afectate sunt:" | ||
201 | |||
202 | #. Type: note | ||
203 | #. Description | ||
204 | #: ../openssh-server.templates:5001 | ||
205 | msgid "" | ||
206 | "User keys may also be affected by this problem. The 'ssh-vulnkey' command " | ||
207 | "may be used as a partial test for this. See /usr/share/doc/openssh-server/" | ||
208 | "README.compromised-keys.gz for more details." | ||
209 | msgstr "" | ||
210 | "Cheile utilizatorului de asemenea, pot fi afectate de această problemă. " | ||
211 | "Comanda 'ssh-vulnkey' poate fi folosită ca un test parțial pentru acestea. A " | ||
212 | "se vedea /usr/share/doc/openssh-server/README.compromised-keys.gz pentru mai " | ||
213 | "multe detalii." | ||
214 | |||
215 | #~ msgid "Warning: you must create a new host key" | ||
216 | #~ msgstr "Avertizare: trebuie să creați o nouă cheie pentru sistem" | ||
217 | |||
218 | #~ msgid "Warning: telnetd is installed --- probably not a good idea" | ||
219 | #~ msgstr "" | ||
220 | #~ "Avertizare: telnetd este instalat --- probabil că nu este o idee bună" | ||
221 | |||
222 | #~ msgid "" | ||
223 | #~ "I'd advise you to either remove the telnetd package (if you don't " | ||
224 | #~ "actually need to offer telnet access) or install telnetd-ssl so that " | ||
225 | #~ "there is at least some chance that telnet sessions will not be sending " | ||
226 | #~ "unencrypted login/password and session information over the network." | ||
227 | #~ msgstr "" | ||
228 | #~ "Un sfat bun este fie să ștergeți pachetul telnetd (dacă întradevăr nu-l " | ||
229 | #~ "utilizați) fie să instalați telnetd-ssl astfel încât să existe " | ||
230 | #~ "posibilitatea ca sesiunile telnet să nu trimită informații necriptate de " | ||
231 | #~ "autentificare/parole prin rețea." | ||
232 | |||
233 | #~ msgid "${HOST_KEYS}" | ||
234 | #~ msgstr "${HOST_KEYS}" | ||
diff --git a/debian/po/ru.po b/debian/po/ru.po new file mode 100644 index 000000000..c6304538b --- /dev/null +++ b/debian/po/ru.po | |||
@@ -0,0 +1,220 @@ | |||
1 | # translation of ru.po to Russian | ||
2 | # translation of openssh to Russian | ||
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 | # | ||
14 | # Yuriy Talakan' <yt@drsk.ru>, 2007. | ||
15 | # Yuri Kozlov <kozlov.y@gmail.com>, 2008. | ||
16 | msgid "" | ||
17 | msgstr "" | ||
18 | "Project-Id-Version: openssh 1:4.7p1-9\n" | ||
19 | "Report-Msgid-Bugs-To: openssh@packages.debian.org\n" | ||
20 | "POT-Creation-Date: 2008-05-17 13:58+0200\n" | ||
21 | "PO-Revision-Date: 2008-05-18 08:55+0400\n" | ||
22 | "Last-Translator: Yuri Kozlov <kozlov.y@gmail.com>\n" | ||
23 | "Language-Team: Russian <debian-l10n-russian@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 | "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" | ||
29 | "10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" | ||
30 | |||
31 | #. Type: boolean | ||
32 | #. Description | ||
33 | #: ../openssh-server.templates:1001 | ||
34 | msgid "Generate a new configuration file for OpenSSH?" | ||
35 | msgstr "Создать новый файл наÑтроек Ð´Ð»Ñ OpenSSH?" | ||
36 | |||
37 | #. Type: boolean | ||
38 | #. Description | ||
39 | #: ../openssh-server.templates:1001 | ||
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:1001 | ||
56 | msgid "" | ||
57 | "Please note that this new configuration file will set the value of " | ||
58 | "'PermitRootLogin' to 'yes' (meaning that anyone knowing the root password " | ||
59 | "can ssh directly in as root). Please read the README.Debian file for more " | ||
60 | "details about this design choice." | ||
61 | msgstr "" | ||
62 | "Обратите внимание, что Ñтот новый файл наÑтроек уÑтановит значение параметра " | ||
63 | "'PermitRootLogin' в 'yes' (Ñто означает, что каждый знающий пароль " | ||
64 | "ÑÑƒÐ¿ÐµÑ€Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð¼Ð¾Ð¶ÐµÑ‚ войти в ÑиÑтему по ssh как Ñуперпользователь). " | ||
65 | "ПожалуйÑта, прочтите файл README.Debian Ð´Ð»Ñ Ñ€Ð°Ð·ÑŠÑÑÐ½ÐµÐ½Ð¸Ñ Ð´ÐµÑ‚Ð°Ð»ÐµÐ¹ Ñтого выбора." | ||
66 | |||
67 | #. Type: boolean | ||
68 | #. Description | ||
69 | #: ../openssh-server.templates:1001 | ||
70 | msgid "" | ||
71 | "It is strongly recommended that you choose to generate a new configuration " | ||
72 | "file now." | ||
73 | msgstr "" | ||
74 | "ÐаÑтоÑтельно рекомендуетÑÑ Ð²Ñ‹Ð±Ñ€Ð°Ñ‚ÑŒ ÑÐµÐ¹Ñ‡Ð°Ñ Ñоздание нового файла наÑтроек." | ||
75 | |||
76 | #. Type: boolean | ||
77 | #. Description | ||
78 | #: ../openssh-server.templates:2001 | ||
79 | msgid "Do you want to risk killing active SSH sessions?" | ||
80 | msgstr "Ð’Ñ‹ хотите пойти на риÑк потерÑÑ‚ÑŒ активные SSH ÑоединениÑ?" | ||
81 | |||
82 | #. Type: boolean | ||
83 | #. Description | ||
84 | #: ../openssh-server.templates: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 | "УÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ð°Ñ Ð² наÑтоÑщее Ð²Ñ€ÐµÐ¼Ñ Ð²ÐµÑ€ÑÐ¸Ñ /etc/init.d/ssh, вероÑтно, уничтожит " | ||
91 | "вÑе запущенные ÑкземплÑры sshd. ЕÑли вы выполнÑете Ñто обновление через SSH " | ||
92 | "Ñоединение, то Ñкорее вÑего вы будете отключены и процедура Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ " | ||
93 | "оÑтанетÑÑ Ð½Ðµ завершенной." | ||
94 | |||
95 | #. Type: boolean | ||
96 | #. Description | ||
97 | #: ../openssh-server.templates: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 | "Ðто может быть иÑправлено вручную добавлением \"--pidfile /var/run/sshd.pid" | ||
103 | "\" в Ñтроку start-stop-daemon в разделе stop Ñтого файла." | ||
104 | |||
105 | #. Type: note | ||
106 | #. Description | ||
107 | #: ../openssh-server.templates:3001 | ||
108 | msgid "New host key mandatory" | ||
109 | msgstr "Ðеобходим новый ключ хоÑта" | ||
110 | |||
111 | #. Type: note | ||
112 | #. Description | ||
113 | #: ../openssh-server.templates:3001 | ||
114 | msgid "" | ||
115 | "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " | ||
116 | "algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " | ||
117 | "utility from the old (non-free) SSH installation does not appear to be " | ||
118 | "available." | ||
119 | msgstr "" | ||
120 | "Текущий ключ хоÑта, /etc/ssh/ssh_host_key, зашифрован алгоритмом IDEA. " | ||
121 | "OpenSSH не может работать Ñ Ñ‚Ð°ÐºÐ¸Ð¼ файлом ключа хоÑта, а утилита ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ ssh-" | ||
122 | "ключа (ssh-keygen) из прежней (не Ñвободной) уÑтановки SSH, кажетÑÑ, " | ||
123 | "недоÑтупна." | ||
124 | |||
125 | #. Type: note | ||
126 | #. Description | ||
127 | #: ../openssh-server.templates:3001 | ||
128 | msgid "You need to manually generate a new host key." | ||
129 | msgstr "Вам нужно вручную Ñоздать новый ключ хоÑта." | ||
130 | |||
131 | #. Type: boolean | ||
132 | #. Description | ||
133 | #: ../openssh-server.templates:4001 | ||
134 | msgid "Disable challenge-response authentication?" | ||
135 | msgstr "Отключить аутентификацию запроÑ-ответ?" | ||
136 | |||
137 | #. Type: boolean | ||
138 | #. Description | ||
139 | #: ../openssh-server.templates: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 | "КажетÑÑ, что Ð¿Ð°Ñ€Ð¾Ð»ÑŒÐ½Ð°Ñ Ð°ÑƒÑ‚ÐµÐ½Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ†Ð¸Ñ Ð¾Ñ‚ÐºÐ»ÑŽÑ‡ÐµÐ½Ð° в текущей наÑтройке Ñервера " | ||
149 | "OpenSSH. Чтобы запретить пользователÑм вход Ñ Ð¸Ñпользованием паролей " | ||
150 | "(возможно, иÑпользовав вмеÑто Ñтого только аутентификацию по публичному " | ||
151 | "ключу) в новых верÑиÑÑ… OpenSSH, вы должны отключить аутентификацию запроÑ-" | ||
152 | "ответ, либо убедитьÑÑ, что ваша наÑтройка PAM не разрешает аутентификацию по " | ||
153 | "файлу паролей Unix." | ||
154 | |||
155 | #. Type: boolean | ||
156 | #. Description | ||
157 | #: ../openssh-server.templates:4001 | ||
158 | msgid "" | ||
159 | "If you disable challenge-response authentication, then users will not be " | ||
160 | "able to log in using passwords. If you leave it enabled (the default " | ||
161 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
162 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
163 | msgstr "" | ||
164 | "ЕÑли вы запретите аутентификацию запроÑ-ответ, пользователи не Ñмогут войти " | ||
165 | "Ñ Ð¸Ñпользованием паролей. ЕÑли вы оÑтавите её разрешенной (ответ по " | ||
166 | "умолчанию), то параметр 'PasswordAuthentication no' не будет иметь Ñилы до " | ||
167 | "тех пор, пока вы также не откорректируете наÑтройки PAM в /etc/pam.d/ssh." | ||
168 | |||
169 | #. Type: note | ||
170 | #. Description | ||
171 | #: ../openssh-server.templates:5001 | ||
172 | msgid "Vulnerable host keys will be regenerated" | ||
173 | msgstr "УÑзвимые ключи хоÑта будут Ñозданы заново" | ||
174 | |||
175 | #. Type: note | ||
176 | #. Description | ||
177 | #: ../openssh-server.templates:5001 | ||
178 | msgid "" | ||
179 | "Some of the OpenSSH server host keys on this system were generated with a " | ||
180 | "version of OpenSSL that had a broken random number generator. As a result, " | ||
181 | "these host keys are from a well-known set, are subject to brute-force " | ||
182 | "attacks, and must be regenerated." | ||
183 | msgstr "" | ||
184 | "Ðекоторые ключи хоÑта Ñервера OpenSSH в Ñтой ÑиÑтеме были Ñозданы Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ " | ||
185 | "верÑии OpenSSL, в которой был иÑпорченный генератор Ñлучайных чиÑел. Ð’ " | ||
186 | "результате, такие ключи хоÑта входили во вÑем извеÑтный ÑпиÑок, что " | ||
187 | "позволÑло применÑÑ‚ÑŒ атаку поÑледовательного подбора ключей. Ключи должны " | ||
188 | "быть Ñозданы заново." | ||
189 | |||
190 | #. Type: note | ||
191 | #. Description | ||
192 | #: ../openssh-server.templates:5001 | ||
193 | msgid "" | ||
194 | "Users of this system should be informed of this change, as they will be " | ||
195 | "prompted about the host key change the next time they log in. Use 'ssh-" | ||
196 | "keygen -l -f HOST_KEY_FILE' after the upgrade to print the fingerprints of " | ||
197 | "the new host keys." | ||
198 | msgstr "" | ||
199 | "Пользователи Ñтой ÑиÑтемы будут проинформированы об Ñтом изменении, так как " | ||
200 | "им будет выведено Ñообщение о Ñмене ключа хоÑта при Ñледующем подключении. " | ||
201 | "ИÑпользуйте команду 'ssh-keygen -l -f HOST_KEY_FILE' поÑле Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ Ð´Ð»Ñ " | ||
202 | "раÑпечатки отпечатков новых ключей хоÑта." | ||
203 | |||
204 | #. Type: note | ||
205 | #. Description | ||
206 | #: ../openssh-server.templates:5001 | ||
207 | msgid "The affected host keys are:" | ||
208 | msgstr "Ключи хоÑта, которые будут заменены:" | ||
209 | |||
210 | #. Type: note | ||
211 | #. Description | ||
212 | #: ../openssh-server.templates:5001 | ||
213 | msgid "" | ||
214 | "User keys may also be affected by this problem. The 'ssh-vulnkey' command " | ||
215 | "may be used as a partial test for this. See /usr/share/doc/openssh-server/" | ||
216 | "README.compromised-keys.gz for more details." | ||
217 | msgstr "" | ||
218 | "ПользовательÑкие ключи также имеют данную проблему. Ð”Ð»Ñ Ñ‡Ð°Ñтичной проверки " | ||
219 | "можно воÑпользоватьÑÑ ÐºÐ¾Ð¼Ð°Ð½Ð´Ð¾Ð¹ 'ssh-vulnkey'. Ð’ файле /usr/share/doc/openssh-" | ||
220 | "server/README.compromised-keys.gz дано более подробное опиÑание." | ||
diff --git a/debian/po/sk.po b/debian/po/sk.po new file mode 100644 index 000000000..f89cba167 --- /dev/null +++ b/debian/po/sk.po | |||
@@ -0,0 +1,200 @@ | |||
1 | msgid "" | ||
2 | msgstr "" | ||
3 | "Project-Id-Version: openssh 1_4.6p1-5\n" | ||
4 | "Report-Msgid-Bugs-To: openssh@packages.debian.org\n" | ||
5 | "POT-Creation-Date: 2008-05-17 08:51+0200\n" | ||
6 | "PO-Revision-Date: 2008-05-29 08:51+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:1001 | ||
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:1001 | ||
22 | msgid "" | ||
23 | "This version of OpenSSH has a considerably changed configuration file from " | ||
24 | "the version shipped in Debian 'Potato', which you appear to be upgrading " | ||
25 | "from. This package can now generate a new configuration file (/etc/ssh/sshd." | ||
26 | "config), which will work with the new server version, but will not contain " | ||
27 | "any customizations you made with the old version." | ||
28 | msgstr "" | ||
29 | "Táto verzia OpenSSH má podstatne zmenený konfiguraÄný súbor v porovnanà s " | ||
30 | "versiou, ktorá sa dodávala s Debian „Potato“, z ktorej, zdá sa, " | ||
31 | "aktualizujete. Tento balÃk teraz môže vytvoriÅ¥ nový konfiguraÄný súbor (/etc/" | ||
32 | "ssh/sshd.config), ktorý bude fungovať s novou verziou servera, ale nebude " | ||
33 | "obsahovať akékoľvek zmeny, ktoré ste urobili v starej verzii." | ||
34 | |||
35 | #. Type: boolean | ||
36 | #. Description | ||
37 | #: ../openssh-server.templates:1001 | ||
38 | msgid "" | ||
39 | "Please note that this new configuration file will set the value of " | ||
40 | "'PermitRootLogin' to 'yes' (meaning that anyone knowing the root password " | ||
41 | "can ssh directly in as root). Please read the README.Debian file for more " | ||
42 | "details about this design choice." | ||
43 | msgstr "" | ||
44 | "ProsÃm, majte na pamäti, že tento nový konfiguraÄný súbor nastavà hodnotu " | ||
45 | "„'PermitRootLogin“ na „áno“ (Äo znamená, že každý, kto pozná heslo úÄtu " | ||
46 | "root, sa bude môcÅ¥ pomocou ssh prihlásiÅ¥ priamo ako root). ProsÃm, " | ||
47 | "preÄÃtajte si podrobnosti o tejto voľbe pri návrhu v súbore README.Debian." | ||
48 | |||
49 | #. Type: boolean | ||
50 | #. Description | ||
51 | #: ../openssh-server.templates:1001 | ||
52 | msgid "" | ||
53 | "It is strongly recommended that you choose to generate a new configuration " | ||
54 | "file now." | ||
55 | msgstr "" | ||
56 | "Silne sa odporúÄa, aby ste teraz zvolili vytvorenie nového konfiguraÄného " | ||
57 | "súboru." | ||
58 | |||
59 | #. Type: boolean | ||
60 | #. Description | ||
61 | #: ../openssh-server.templates:2001 | ||
62 | msgid "Do you want to risk killing active SSH sessions?" | ||
63 | msgstr "Chcete riskovaÅ¥ zruÅ¡enie aktÃvnych SSH reláciÃ?" | ||
64 | |||
65 | #. Type: boolean | ||
66 | #. Description | ||
67 | #: ../openssh-server.templates:2001 | ||
68 | msgid "" | ||
69 | "The currently installed version of /etc/init.d/ssh is likely to kill all " | ||
70 | "running sshd instances. If you are doing this upgrade via an SSH session, " | ||
71 | "you're likely to be disconnected and leave the upgrade procedure unfinished." | ||
72 | msgstr "" | ||
73 | "Momentálne nainÅ¡talovaná verzia /etc/init.d/ssh pravdepodobne ukonÄà vÅ¡etky " | ||
74 | "prebiehajúce inštancie sshd. Ak túto aktualizáciu vykonávate cez reláciu SSH " | ||
75 | "pravdepodobne budete odpojený a aktualizácia zostane nedokonÄená." | ||
76 | |||
77 | #. Type: boolean | ||
78 | #. Description | ||
79 | #: ../openssh-server.templates:2001 | ||
80 | msgid "" | ||
81 | "This can be fixed by manually adding \"--pidfile /var/run/sshd.pid\" to the " | ||
82 | "start-stop-daemon line in the stop section of the file." | ||
83 | msgstr "" | ||
84 | "Toto je možné manuálne napraviť tým, že pridáte „--pidfile /var/run/sshd." | ||
85 | "pid“ do stop sekcie súboru start-stop-daemon." | ||
86 | |||
87 | #. Type: note | ||
88 | #. Description | ||
89 | #: ../openssh-server.templates:3001 | ||
90 | msgid "New host key mandatory" | ||
91 | msgstr "Nový kÄ¾ÃºÄ hostiteľa je povinný" | ||
92 | |||
93 | #. Type: note | ||
94 | #. Description | ||
95 | #: ../openssh-server.templates:3001 | ||
96 | msgid "" | ||
97 | "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " | ||
98 | "algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " | ||
99 | "utility from the old (non-free) SSH installation does not appear to be " | ||
100 | "available." | ||
101 | msgstr "" | ||
102 | "Aktuálny kÄ¾ÃºÄ hostiteľa v /etc/ssh/ssh_host_key je kryptovaný algoritmom " | ||
103 | "IDEA. OpenSSH nemôže pracovaÅ¥ s týmto súborom s kľúÄom hostiteľa a nástroj " | ||
104 | "ssh-keygen zo starej (neslobodnej) inštalácie SSH nie je dostupný." | ||
105 | |||
106 | #. Type: note | ||
107 | #. Description | ||
108 | #: ../openssh-server.templates:3001 | ||
109 | msgid "You need to manually generate a new host key." | ||
110 | msgstr "MusÃte ruÄne vygenerovaÅ¥ nový kÄ¾ÃºÄ hostiteľa." | ||
111 | |||
112 | #. Type: boolean | ||
113 | #. Description | ||
114 | #: ../openssh-server.templates:4001 | ||
115 | msgid "Disable challenge-response authentication?" | ||
116 | msgstr "Vypnúť autentifikáciu výzva-odpoveÄ?" | ||
117 | |||
118 | #. Type: boolean | ||
119 | #. Description | ||
120 | #: ../openssh-server.templates:4001 | ||
121 | msgid "" | ||
122 | "Password authentication appears to be disabled in the current OpenSSH server " | ||
123 | "configuration. In order to prevent users from logging in using passwords " | ||
124 | "(perhaps using only public key authentication instead) with recent versions " | ||
125 | "of OpenSSH, you must disable challenge-response authentication, or else " | ||
126 | "ensure that your PAM configuration does not allow Unix password file " | ||
127 | "authentication." | ||
128 | msgstr "" | ||
129 | "Zdá sa, že autentifikácia pomocou hesla je v aktuálnej konfigurácii OpenSSH " | ||
130 | "servera vypnutá. Aby ste zabránili použÃvateľom prihlasovaÅ¥ sa pomocou " | ||
131 | "hesiel (snÃ¡Ä iba použitÃm autentifikácie svojÃm verejným kľúÄom) pri novÅ¡Ãch " | ||
132 | "verziách OpenSSH musÃte vypnúť autentifikáciu výzva-odpoveÄ alebo sa inak " | ||
133 | "uistiť, že vaša konfigurácia PAM neumožňuje autentifikáciu pomocu unixového " | ||
134 | "súboru s heslami." | ||
135 | |||
136 | #. Type: boolean | ||
137 | #. Description | ||
138 | #: ../openssh-server.templates:4001 | ||
139 | msgid "" | ||
140 | "If you disable challenge-response authentication, then users will not be " | ||
141 | "able to log in using passwords. If you leave it enabled (the default " | ||
142 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
143 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
144 | msgstr "" | ||
145 | "Ak vypnete autentifikáciu výzva-odpoveÄ, použÃvatelia sa nebudú môcÅ¥ " | ||
146 | "prihlasovaÅ¥ pomocou hesiel. Ak ju necháte zapnutú (Å¡tandardná odpoveÄ), " | ||
147 | "potom nebude maÅ¥ voľba „PasswordAuthentication no“ žiadny úÄinok v prÃpade, " | ||
148 | "že tiež vhodne nenastavÃte vaÅ¡u konfiguráciu PAM v /etc/pam.d/ssh." | ||
149 | |||
150 | #. Type: note | ||
151 | #. Description | ||
152 | #: ../openssh-server.templates:5001 | ||
153 | msgid "Vulnerable host keys will be regenerated" | ||
154 | msgstr "Namiesto zneužiteľných kľúÄov hostiteľa sa vytvoria nové" | ||
155 | |||
156 | #. Type: note | ||
157 | #. Description | ||
158 | #: ../openssh-server.templates:5001 | ||
159 | msgid "" | ||
160 | "Some of the OpenSSH server host keys on this system were generated with a " | ||
161 | "version of OpenSSL that had a broken random number generator. As a result, " | ||
162 | "these host keys are from a well-known set, are subject to brute-force " | ||
163 | "attacks, and must be regenerated." | ||
164 | msgstr "" | ||
165 | "Niektoré z OpenSSH klúÄov hostiteľa na tomto systéme boli vytvorené verziou " | ||
166 | "OpenSSL, ktorá mala chybný generátor náhodných ÄÃsel. Dôsledkom je, že tieto " | ||
167 | "klúÄe hostiteľa sú z vopred známej množiny, je možné ich prelomiÅ¥ hrubou " | ||
168 | "silou a je potrebné vytvoriť namiesto nich nové." | ||
169 | |||
170 | #. Type: note | ||
171 | #. Description | ||
172 | #: ../openssh-server.templates:5001 | ||
173 | msgid "" | ||
174 | "Users of this system should be informed of this change, as they will be " | ||
175 | "prompted about the host key change the next time they log in. Use 'ssh-" | ||
176 | "keygen -l -f HOST_KEY_FILE' after the upgrade to print the fingerprints of " | ||
177 | "the new host keys." | ||
178 | msgstr "" | ||
179 | "PoužÃvateľov tohoto systému by ste mali informovaÅ¥ o tejto zmene, pretože " | ||
180 | "pri najbližšom prihlásenà sa im zobrazà výzva o zmenenom kľúÄi hostiteľa. Po " | ||
181 | "aktualizácii vypÃÅ¡ete odtlaÄky nových kľúÄov hostiteľa prÃkazom „ssh-keygen -" | ||
182 | "l -f HOST_KEY_FILE“." | ||
183 | |||
184 | #. Type: note | ||
185 | #. Description | ||
186 | #: ../openssh-server.templates:5001 | ||
187 | msgid "The affected host keys are:" | ||
188 | msgstr "Postihnuté kľúÄe sú:" | ||
189 | |||
190 | #. Type: note | ||
191 | #. Description | ||
192 | #: ../openssh-server.templates:5001 | ||
193 | msgid "" | ||
194 | "User keys may also be affected by this problem. The 'ssh-vulnkey' command " | ||
195 | "may be used as a partial test for this. See /usr/share/doc/openssh-server/" | ||
196 | "README.compromised-keys.gz for more details." | ||
197 | msgstr "" | ||
198 | "PoužÃvateľské kľúÄe tiež mohol ovplyvniÅ¥ tento problém. Na ÄiastoÄný test " | ||
199 | "zraniteľnosti je možné použiÅ¥ prÃkaz „ssh-vulnkey“. Podrobnosti nájdete v /" | ||
200 | "usr/share/doc/openssh-server/README.compromised-keys.gz" | ||
diff --git a/debian/po/sv.po b/debian/po/sv.po new file mode 100644 index 000000000..f4ded891a --- /dev/null +++ b/debian/po/sv.po | |||
@@ -0,0 +1,209 @@ | |||
1 | # translation of openssh.po to swedish | ||
2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER | ||
3 | # This file is distributed under the same license as the PACKAGE package. | ||
4 | # | ||
5 | # Martin Bagge <martin.bagge@bthstudent.se>, 2008. | ||
6 | msgid "" | ||
7 | msgstr "" | ||
8 | "Project-Id-Version: openssh\n" | ||
9 | "Report-Msgid-Bugs-To: openssh@packages.debian.org\n" | ||
10 | "POT-Creation-Date: 2008-05-17 08:51+0200\n" | ||
11 | "PO-Revision-Date: 2008-05-25 23:32+0200\n" | ||
12 | "Last-Translator: Martin Bagge <martin.bagge@bthstudent.se>\n" | ||
13 | "Language-Team: swedish <sv@li.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:1001 | ||
22 | msgid "Generate a new configuration file for OpenSSH?" | ||
23 | msgstr "Generera en ny konfigurationsfil för OpenSSH?" | ||
24 | |||
25 | #. Type: boolean | ||
26 | #. Description | ||
27 | #: ../openssh-server.templates: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 | "Denna version av OpenSSH har ändrat konfigurationsfilen ansenligt från den " | ||
36 | "version som skickades med i Debians \"Potato\"-utgåva som du verkar " | ||
37 | "uppgradera från. Detta paket kan nu generera en ny konfigurationsfil (/etc/" | ||
38 | "ssh/sshd.config) som kommer att fungera med den nya serverversionen men " | ||
39 | "kommer inte att innehålla några anpassningar som du gjorde med den gamla " | ||
40 | "versionen." | ||
41 | |||
42 | #. Type: boolean | ||
43 | #. Description | ||
44 | #: ../openssh-server.templates: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 | "Observera att den nya konfigurationsfilen kommer att ställa in värdet för " | ||
52 | "\"PermitRootLogin\" till \"yes\" (vilket betyder att vem som helst som kan " | ||
53 | "root-lösenordet kan logga in direkt som root). Läs filen README.Debian för " | ||
54 | "mer information om det här designvalet." | ||
55 | |||
56 | #. Type: boolean | ||
57 | #. Description | ||
58 | #: ../openssh-server.templates:1001 | ||
59 | msgid "" | ||
60 | "It is strongly recommended that you choose to generate a new configuration " | ||
61 | "file now." | ||
62 | msgstr "" | ||
63 | "Det rekommenderas starkt att du väljer att generera en ny konfigurationsfil " | ||
64 | "nu." | ||
65 | |||
66 | #. Type: boolean | ||
67 | #. Description | ||
68 | #: ../openssh-server.templates:2001 | ||
69 | msgid "Do you want to risk killing active SSH sessions?" | ||
70 | msgstr "Vill du riskera att döda aktiva SSH-sessioner?" | ||
71 | |||
72 | #. Type: boolean | ||
73 | #. Description | ||
74 | #: ../openssh-server.templates: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 | "Den för närvarande installerade versionen av /etc/init.d/ssh kommer " | ||
81 | "antagligen döda alla körande instanser av sshd. Om du gör denna " | ||
82 | "uppgradering via en SSH-session kommer du sannolikt att kopplas ner och " | ||
83 | "uppgraderingsprocessen lämnas ofärdig." | ||
84 | |||
85 | #. Type: boolean | ||
86 | #. Description | ||
87 | #: ../openssh-server.templates: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 | "Det här kan rättas till genom att manuellt lägga till \"--pidfile /var/run/" | ||
93 | "sshd.pid\" till raden \"start-stop-daemon\" i sektionen \"stop\" i filen." | ||
94 | |||
95 | #. Type: note | ||
96 | #. Description | ||
97 | #: ../openssh-server.templates:3001 | ||
98 | msgid "New host key mandatory" | ||
99 | msgstr "Ny värdnyckel är obligatorisk" | ||
100 | |||
101 | #. Type: note | ||
102 | #. Description | ||
103 | #: ../openssh-server.templates: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 | "Den aktuella värdnyckeln i /etc/ssh/ssh_host_key är krypterad med IDEA-" | ||
111 | "algoritmen. OpenSSH kan inte hantera den här värdnyckelfilen och verktyget " | ||
112 | "ssh-keygen från den gamla (ickefria) SSH-installationen verkar inte finnas " | ||
113 | "tillgänglig." | ||
114 | |||
115 | #. Type: note | ||
116 | #. Description | ||
117 | #: ../openssh-server.templates:3001 | ||
118 | msgid "You need to manually generate a new host key." | ||
119 | msgstr "Du behöver manuellt generera en ny värdnyckel." | ||
120 | |||
121 | #. Type: boolean | ||
122 | #. Description | ||
123 | #: ../openssh-server.templates:4001 | ||
124 | msgid "Disable challenge-response authentication?" | ||
125 | msgstr "Inaktivera challenge-response-autentisering?" | ||
126 | |||
127 | #. Type: boolean | ||
128 | #. Description | ||
129 | #: ../openssh-server.templates: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 | "Lösenordsautentisering verkar vara inaktiverat i din aktuella konfiguration " | ||
139 | "av OpenSSH-servern. För att förhindra att användare loggar in med lösenord " | ||
140 | "(istället kanske endast använder publik nyckelautentisering) med senare " | ||
141 | "versioner av OpenSSH, måste du inaktivera challenge-response-autentisering " | ||
142 | "eller försäkra dig om att din PAM-konfiguration inte tillåter autentisering " | ||
143 | "via Unix lösenordsfil." | ||
144 | |||
145 | #. Type: boolean | ||
146 | #. Description | ||
147 | #: ../openssh-server.templates: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 | "Om du inaktiverar challenge-response-autentisering så kan användarna inte " | ||
155 | "logga in med lösenord. Om du lämnar det aktiverat (som är standard) så " | ||
156 | "kommer \"PasswordAuthentication no\" inte att ha någon effekt om du inte " | ||
157 | "justerar din PAM-konfiguration i /etc/pam.d/ssh." | ||
158 | |||
159 | #. Type: note | ||
160 | #. Description | ||
161 | #: ../openssh-server.templates:5001 | ||
162 | msgid "Vulnerable host keys will be regenerated" | ||
163 | msgstr "Sårbara värdnycklar kommer att omskapas" | ||
164 | |||
165 | #. Type: note | ||
166 | #. Description | ||
167 | #: ../openssh-server.templates:5001 | ||
168 | msgid "" | ||
169 | "Some of the OpenSSH server host keys on this system were generated with a " | ||
170 | "version of OpenSSL that had a broken random number generator. As a result, " | ||
171 | "these host keys are from a well-known set, are subject to brute-force " | ||
172 | "attacks, and must be regenerated." | ||
173 | msgstr "" | ||
174 | "Några av värdnycklarna för OpenSSH skapades med en version av OpenSSL som " | ||
175 | "innehöll ett fel i slumptalsgeneratorn. På grund av detta är värden sårbar " | ||
176 | "för en så kallad brute force-attack då nycklarna kommer från ett litet och " | ||
177 | "välkänt spektra." | ||
178 | |||
179 | #. Type: note | ||
180 | #. Description | ||
181 | #: ../openssh-server.templates:5001 | ||
182 | msgid "" | ||
183 | "Users of this system should be informed of this change, as they will be " | ||
184 | "prompted about the host key change the next time they log in. Use 'ssh-" | ||
185 | "keygen -l -f HOST_KEY_FILE' after the upgrade to print the fingerprints of " | ||
186 | "the new host keys." | ||
187 | msgstr "" | ||
188 | "Användarna på det här systemet borde informeras om den här förändringen då " | ||
189 | "de kommer att bli varse bytet av värdnyckel nästa gång de loggar in. Använd " | ||
190 | "'ssh-keygen -l -f HOST_KEY_FILE' efter uppgraderingen har slutförst för att " | ||
191 | "skriva ut fingeravtrycken för de nya värdnycklarna" | ||
192 | |||
193 | #. Type: note | ||
194 | #. Description | ||
195 | #: ../openssh-server.templates:5001 | ||
196 | msgid "The affected host keys are:" | ||
197 | msgstr "De drabbade värdnycklarna är:" | ||
198 | |||
199 | #. Type: note | ||
200 | #. Description | ||
201 | #: ../openssh-server.templates:5001 | ||
202 | msgid "" | ||
203 | "User keys may also be affected by this problem. The 'ssh-vulnkey' command " | ||
204 | "may be used as a partial test for this. See /usr/share/doc/openssh-server/" | ||
205 | "README.compromised-keys.gz for more details." | ||
206 | msgstr "" | ||
207 | "Användarnycklar kan också vara drabbade av detta fel. Kommandot 'ssh-" | ||
208 | "vulnkey' kan användas som ett deltest. Läs /usr/share/doc/openssh-server/" | ||
209 | "README.compromised-keys.gz för mer ingående detaljer." | ||
diff --git a/debian/po/ta.po b/debian/po/ta.po new file mode 100644 index 000000000..f059488c3 --- /dev/null +++ b/debian/po/ta.po | |||
@@ -0,0 +1,193 @@ | |||
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: openssh@packages.debian.org\n" | ||
10 | "POT-Creation-Date: 2008-05-17 08:51+0200\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:1001 | ||
22 | msgid "Generate a new configuration file for OpenSSH?" | ||
23 | msgstr "ஓபன௠எஸà¯à®Žà®¸à¯à®¹à¯†à®šà¯ கà¯à®•à¯ பà¯à®¤à®¿à®¯ வடிவமைபà¯à®ªà¯ கோபà¯à®ªà¯ˆ உரà¯à®µà®¾à®•à¯à®•à®µà®¾?" | ||
24 | |||
25 | #. Type: boolean | ||
26 | #. Description | ||
27 | #: ../openssh-server.templates: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: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: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: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: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: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:3001 | ||
95 | msgid "New host key mandatory" | ||
96 | msgstr "பà¯à®¤à®¿à®¯ பà¯à®°à®µà®²à®©à¯ விசை கடà¯à®Ÿà®¾à®¯à®®à®¾à®•à¯à®®à¯" | ||
97 | |||
98 | #. Type: note | ||
99 | #. Description | ||
100 | #: ../openssh-server.templates: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:3001 | ||
114 | msgid "You need to manually generate a new host key." | ||
115 | msgstr "நீஙà¯à®•à®³à¯ கைமà¯à®±à¯ˆà®¯à®¾à®• பà¯à®¤à®¿à®¯ பà¯à®°à®µà®²à®©à¯ விசையை உரà¯à®µà®¾à®•à¯à®• வேணà¯à®Ÿà¯à®®à¯." | ||
116 | |||
117 | #. Type: boolean | ||
118 | #. Description | ||
119 | #: ../openssh-server.templates:4001 | ||
120 | msgid "Disable challenge-response authentication?" | ||
121 | msgstr "கேளà¯à®µà®¿ பதில௠உறà¯à®¤à®¿à®ªà¯à®ªà®Ÿà¯à®¤à¯à®¤à®²à¯ˆ செயலிழகà¯à®• செயà¯à®¯à®µà®¾?" | ||
122 | |||
123 | #. Type: boolean | ||
124 | #. Description | ||
125 | #: ../openssh-server.templates: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: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 | "செயà¯à®¤à®¾à®²à¯ ஒழிய பயன௠தராதà¯." | ||
153 | |||
154 | #. Type: note | ||
155 | #. Description | ||
156 | #: ../openssh-server.templates:5001 | ||
157 | msgid "Vulnerable host keys will be regenerated" | ||
158 | msgstr "" | ||
159 | |||
160 | #. Type: note | ||
161 | #. Description | ||
162 | #: ../openssh-server.templates:5001 | ||
163 | msgid "" | ||
164 | "Some of the OpenSSH server host keys on this system were generated with a " | ||
165 | "version of OpenSSL that had a broken random number generator. As a result, " | ||
166 | "these host keys are from a well-known set, are subject to brute-force " | ||
167 | "attacks, and must be regenerated." | ||
168 | msgstr "" | ||
169 | |||
170 | #. Type: note | ||
171 | #. Description | ||
172 | #: ../openssh-server.templates:5001 | ||
173 | msgid "" | ||
174 | "Users of this system should be informed of this change, as they will be " | ||
175 | "prompted about the host key change the next time they log in. Use 'ssh-" | ||
176 | "keygen -l -f HOST_KEY_FILE' after the upgrade to print the fingerprints of " | ||
177 | "the new host keys." | ||
178 | msgstr "" | ||
179 | |||
180 | #. Type: note | ||
181 | #. Description | ||
182 | #: ../openssh-server.templates:5001 | ||
183 | msgid "The affected host keys are:" | ||
184 | msgstr "" | ||
185 | |||
186 | #. Type: note | ||
187 | #. Description | ||
188 | #: ../openssh-server.templates:5001 | ||
189 | msgid "" | ||
190 | "User keys may also be affected by this problem. The 'ssh-vulnkey' command " | ||
191 | "may be used as a partial test for this. See /usr/share/doc/openssh-server/" | ||
192 | "README.compromised-keys.gz for more details." | ||
193 | msgstr "" | ||
diff --git a/debian/po/templates.pot b/debian/po/templates.pot new file mode 100644 index 000000000..9c041969c --- /dev/null +++ b/debian/po/templates.pot | |||
@@ -0,0 +1,166 @@ | |||
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: openssh@packages.debian.org\n" | ||
11 | "POT-Creation-Date: 2008-05-17 08:51+0200\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:1001 | ||
22 | msgid "Generate a new configuration file for OpenSSH?" | ||
23 | msgstr "" | ||
24 | |||
25 | #. Type: boolean | ||
26 | #. Description | ||
27 | #: ../openssh-server.templates: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: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: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:2001 | ||
57 | msgid "Do you want to risk killing active SSH sessions?" | ||
58 | msgstr "" | ||
59 | |||
60 | #. Type: boolean | ||
61 | #. Description | ||
62 | #: ../openssh-server.templates: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: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:3001 | ||
80 | msgid "New host key mandatory" | ||
81 | msgstr "" | ||
82 | |||
83 | #. Type: note | ||
84 | #. Description | ||
85 | #: ../openssh-server.templates: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:3001 | ||
96 | msgid "You need to manually generate a new host key." | ||
97 | msgstr "" | ||
98 | |||
99 | #. Type: boolean | ||
100 | #. Description | ||
101 | #: ../openssh-server.templates:4001 | ||
102 | msgid "Disable challenge-response authentication?" | ||
103 | msgstr "" | ||
104 | |||
105 | #. Type: boolean | ||
106 | #. Description | ||
107 | #: ../openssh-server.templates: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: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 "" | ||
126 | |||
127 | #. Type: note | ||
128 | #. Description | ||
129 | #: ../openssh-server.templates:5001 | ||
130 | msgid "Vulnerable host keys will be regenerated" | ||
131 | msgstr "" | ||
132 | |||
133 | #. Type: note | ||
134 | #. Description | ||
135 | #: ../openssh-server.templates:5001 | ||
136 | msgid "" | ||
137 | "Some of the OpenSSH server host keys on this system were generated with a " | ||
138 | "version of OpenSSL that had a broken random number generator. As a result, " | ||
139 | "these host keys are from a well-known set, are subject to brute-force " | ||
140 | "attacks, and must be regenerated." | ||
141 | msgstr "" | ||
142 | |||
143 | #. Type: note | ||
144 | #. Description | ||
145 | #: ../openssh-server.templates:5001 | ||
146 | msgid "" | ||
147 | "Users of this system should be informed of this change, as they will be " | ||
148 | "prompted about the host key change the next time they log in. Use 'ssh-" | ||
149 | "keygen -l -f HOST_KEY_FILE' after the upgrade to print the fingerprints of " | ||
150 | "the new host keys." | ||
151 | msgstr "" | ||
152 | |||
153 | #. Type: note | ||
154 | #. Description | ||
155 | #: ../openssh-server.templates:5001 | ||
156 | msgid "The affected host keys are:" | ||
157 | msgstr "" | ||
158 | |||
159 | #. Type: note | ||
160 | #. Description | ||
161 | #: ../openssh-server.templates:5001 | ||
162 | msgid "" | ||
163 | "User keys may also be affected by this problem. The 'ssh-vulnkey' command " | ||
164 | "may be used as a partial test for this. See /usr/share/doc/openssh-server/" | ||
165 | "README.compromised-keys.gz for more details." | ||
166 | msgstr "" | ||
diff --git a/debian/po/tr.po b/debian/po/tr.po new file mode 100644 index 000000000..b7c09748e --- /dev/null +++ b/debian/po/tr.po | |||
@@ -0,0 +1,398 @@ | |||
1 | # Turkish translation of ssh. | ||
2 | # This file is distributed under the same license as the ssh package. | ||
3 | # Mert Dirik <mertdirik@gmail.com>, 2008. | ||
4 | # Recai OktaÅŸ <roktas@omu.edu.tr>, 2004. | ||
5 | # | ||
6 | msgid "" | ||
7 | msgstr "" | ||
8 | "Project-Id-Version: ssh\n" | ||
9 | "Report-Msgid-Bugs-To: openssh@packages.debian.org\n" | ||
10 | "POT-Creation-Date: 2008-05-17 13:58+0200\n" | ||
11 | "PO-Revision-Date: 2008-05-23 16:24+0200\n" | ||
12 | "Last-Translator: Mert Dirik <mertdirik@gmail.com>\n" | ||
13 | "Language-Team: Turkish <debian-l10n-turkish@lists.debian.org>\n" | ||
14 | "MIME-Version: 1.0\n" | ||
15 | "Content-Type: text/plain; charset=UTF-8\n" | ||
16 | "Content-Transfer-Encoding: 8bit\n" | ||
17 | "Plural-Forms: nplurals=1; plural=0;\n" | ||
18 | |||
19 | #. Type: boolean | ||
20 | #. Description | ||
21 | #: ../openssh-server.templates:1001 | ||
22 | msgid "Generate a new configuration file for OpenSSH?" | ||
23 | msgstr "OpenSSH için yeni yapılandırma dosyası oluşturulsun mu?" | ||
24 | |||
25 | #. Type: boolean | ||
26 | #. Description | ||
27 | #: ../openssh-server.templates: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 | "Debian 'Potato' dağıtımından yükseltme yapmış gibi görünüyorsunuz. " | ||
36 | "OpenSSH'ın bu sürümü Debian 'Potato' ile birlikte gelen sürümden çok farklı " | ||
37 | "bir yapılandırma dosyası kullanmakta. Bu paket şimdi sizin için yeni bir " | ||
38 | "yapılandırma dosyası (/etc/ssh/sshd.config) üretebilir. Bu dosya yeni sunucu " | ||
39 | "sürümüyle çalışacak, fakat eski sürümde yaptığınız özelleştirmeleri " | ||
40 | "içermeyecek." | ||
41 | |||
42 | #. Type: boolean | ||
43 | #. Description | ||
44 | #: ../openssh-server.templates: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). It is the opinion of the maintainer that " | ||
49 | #| "this is the correct default (see README.Debian for more details), but you " | ||
50 | #| "can always edit sshd_config and set it to no if you wish." | ||
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 | "Yeni yapılandırma dosyasının 'PermitRootLogin' seçeneğini 'yes' olarak " | ||
58 | "ayarlayacağını (yani root parolasını bilen herhangi birisinin ssh ile " | ||
59 | "doğrudan sisteme girebileceğini) unutmayın. Öntanımlı ayarın böyle olması " | ||
60 | "gerektiği paket geliştiricisinin kanaatidir (ayrıntılar için README.Debian " | ||
61 | "dosyasını okuyun)." | ||
62 | |||
63 | #. Type: boolean | ||
64 | #. Description | ||
65 | #: ../openssh-server.templates:1001 | ||
66 | msgid "" | ||
67 | "It is strongly recommended that you choose to generate a new configuration " | ||
68 | "file now." | ||
69 | msgstr "" | ||
70 | "Şimdi yeni bir yapılandırma dosyası üretmeyi seçmeniz kuvvetle tavsiye " | ||
71 | "edilir." | ||
72 | |||
73 | #. Type: boolean | ||
74 | #. Description | ||
75 | #: ../openssh-server.templates:2001 | ||
76 | #| msgid "Do you want to continue (and risk killing active ssh sessions)?" | ||
77 | msgid "Do you want to risk killing active SSH sessions?" | ||
78 | msgstr "Etkin SSH oturumlarının öldürülmesi riskini göze alıyor musunuz?" | ||
79 | |||
80 | #. Type: boolean | ||
81 | #. Description | ||
82 | #: ../openssh-server.templates:2001 | ||
83 | #| msgid "" | ||
84 | #| "The version of /etc/init.d/ssh that you have installed, is likely to kill " | ||
85 | #| "all running sshd instances. If you are doing this upgrade via an ssh " | ||
86 | #| "session, that would be a Bad Thing(tm)." | ||
87 | msgid "" | ||
88 | "The currently installed version of /etc/init.d/ssh is likely to kill all " | ||
89 | "running sshd instances. If you are doing this upgrade via an SSH session, " | ||
90 | "you're likely to be disconnected and leave the upgrade procedure unfinished." | ||
91 | msgstr "" | ||
92 | "Kurmuş olduğunuz /etc/init.d/ssh sürümü büyük olasılıkla, çalışıyor olan tüm " | ||
93 | "sshd süreçlerini öldürecek. Bu yükseltmeyi bir ssh oturumu üzerinden " | ||
94 | "yapıyorsanız büyük olasılıkla bağlantınız kopacak ve yükseltme işlemi yarım " | ||
95 | "kalacak." | ||
96 | |||
97 | #. Type: boolean | ||
98 | #. Description | ||
99 | #: ../openssh-server.templates:2001 | ||
100 | #| msgid "" | ||
101 | #| "You can fix this by adding \"--pidfile /var/run/sshd.pid\" to the start-" | ||
102 | #| "stop-daemon line in the stop section of the file." | ||
103 | msgid "" | ||
104 | "This can be fixed by manually adding \"--pidfile /var/run/sshd.pid\" to the " | ||
105 | "start-stop-daemon line in the stop section of the file." | ||
106 | msgstr "" | ||
107 | "Bu sorunu dosyanın (/etc/init.d/ssh) stop bölümündeki start-stop-daemon " | ||
108 | "satırına \"--pidfile /var/run/sshd.pid\" ekleyerek düzeltebilirsiniz." | ||
109 | |||
110 | #. Type: note | ||
111 | #. Description | ||
112 | #: ../openssh-server.templates:3001 | ||
113 | msgid "New host key mandatory" | ||
114 | msgstr "Yeni makine anahtarı zorunlu" | ||
115 | |||
116 | #. Type: note | ||
117 | #. Description | ||
118 | #: ../openssh-server.templates:3001 | ||
119 | msgid "" | ||
120 | "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " | ||
121 | "algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " | ||
122 | "utility from the old (non-free) SSH installation does not appear to be " | ||
123 | "available." | ||
124 | msgstr "" | ||
125 | "Şu anda kullandığınız makine anahtarı, /etc/ssh/ssh_host_key, IDEA " | ||
126 | "algoritmasıyla şifrelenmiş. OpenSSH bu anahtar dosyasını yönetemez; ayrıca " | ||
127 | "eski (özgür olmayan) SSH kurulumuna ait ssh-keygen aracı da ulaşılabilir " | ||
128 | "deÄŸil." | ||
129 | |||
130 | #. Type: note | ||
131 | #. Description | ||
132 | #: ../openssh-server.templates:3001 | ||
133 | #| msgid "You will need to generate a new host key." | ||
134 | msgid "You need to manually generate a new host key." | ||
135 | msgstr "Yeni bir makine anahtarı oluşturmanız gerekiyor." | ||
136 | |||
137 | #. Type: boolean | ||
138 | #. Description | ||
139 | #: ../openssh-server.templates:4001 | ||
140 | msgid "Disable challenge-response authentication?" | ||
141 | msgstr "Sorgula-yanıtla yöntemiyle kimlik doğrulama devre dışı bırakılsın mı?" | ||
142 | |||
143 | #. Type: boolean | ||
144 | #. Description | ||
145 | #: ../openssh-server.templates:4001 | ||
146 | msgid "" | ||
147 | "Password authentication appears to be disabled in the current OpenSSH server " | ||
148 | "configuration. In order to prevent users from logging in using passwords " | ||
149 | "(perhaps using only public key authentication instead) with recent versions " | ||
150 | "of OpenSSH, you must disable challenge-response authentication, or else " | ||
151 | "ensure that your PAM configuration does not allow Unix password file " | ||
152 | "authentication." | ||
153 | msgstr "" | ||
154 | "Şu anda kullanılan OpenSSH yapılandırmasında parola ile kimlik doğrulama " | ||
155 | "devre dışı gibi görünüyor. OpenSSH'ın yeni versiyonlarında kullanıcıların " | ||
156 | "parola kullanarak oturum açmalarını engellemek için (belki bunun yerine " | ||
157 | "açık anahtar yöntemiyle kimlik doğrulamayı kullanabilirsiniz) sorgula-" | ||
158 | "yanıtla yöntemiyle kimlik doğrulamayı devre dışı bırakmalı ya da PAM " | ||
159 | "yapılandırmanızın Unix parola dosyası yöntemiyle kimlik doğrulamaya izin " | ||
160 | "vermediğinden emin olmalısınız." | ||
161 | |||
162 | #. Type: boolean | ||
163 | #. Description | ||
164 | #: ../openssh-server.templates:4001 | ||
165 | msgid "" | ||
166 | "If you disable challenge-response authentication, then users will not be " | ||
167 | "able to log in using passwords. If you leave it enabled (the default " | ||
168 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
169 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
170 | msgstr "" | ||
171 | "Sorgula-yanıtla kimlik doğrulamayı devre dışı bırakırsanız, kullanıcılar " | ||
172 | "parola kullanarak oturum açamayacaklar. Eğer sorgula-yanıtla kimlik " | ||
173 | "doğrulamayı etkin halde bırakırsanız (öntanımlı yanıt); /etc/pam.d/ssh'daki " | ||
174 | "PAM yapılandırmasını ayarlamadığınız sürece 'PasswordAuthentication no' " | ||
175 | "seçeneği bir işe yaramayacak." | ||
176 | |||
177 | #. Type: note | ||
178 | #. Description | ||
179 | #: ../openssh-server.templates:5001 | ||
180 | msgid "Vulnerable host keys will be regenerated" | ||
181 | msgstr "Saldırıya açık makine anahtarları yeniden yaratılacak" | ||
182 | |||
183 | #. Type: note | ||
184 | #. Description | ||
185 | #: ../openssh-server.templates:5001 | ||
186 | msgid "" | ||
187 | "Some of the OpenSSH server host keys on this system were generated with a " | ||
188 | "version of OpenSSL that had a broken random number generator. As a result, " | ||
189 | "these host keys are from a well-known set, are subject to brute-force " | ||
190 | "attacks, and must be regenerated." | ||
191 | msgstr "" | ||
192 | "Bu sistemdeki OpenSSH sunucusu makine anahtarlarından bazıları OpenSSL'in " | ||
193 | "rastgele sayı üreticisi bozuk olan bir versiyonuyla oluşturulmuş. Sonuç " | ||
194 | "olarak, bu makine anahtarları iyi bilinen bir gruptan ve kaba kuvvet " | ||
195 | "saldırılarına açık. Bu anahtarlar yeniden oluşturulmalı." | ||
196 | |||
197 | #. Type: note | ||
198 | #. Description | ||
199 | #: ../openssh-server.templates:5001 | ||
200 | msgid "" | ||
201 | "Users of this system should be informed of this change, as they will be " | ||
202 | "prompted about the host key change the next time they log in. Use 'ssh-" | ||
203 | "keygen -l -f HOST_KEY_FILE' after the upgrade to print the fingerprints of " | ||
204 | "the new host keys." | ||
205 | msgstr "" | ||
206 | "Bu sistemin kullanıcılarını makine anahtarı değişikliğinden haberdar " | ||
207 | "etmelisiniz, çünkü kullanıcılar sisteme ilk oturum açışlarında uyarılacak " | ||
208 | "ve kullanıcılara oturum açmaya devam etmek isteyip istemedikleri sorulacak. " | ||
209 | "Yeni makine anahtarlarının parmak izlerini görmek için yükseltmeden sonra " | ||
210 | "'ssh-keygen -l -f MAKİNE_ANAHTARI_DOSYASI' komutunu kullanın." | ||
211 | |||
212 | #. Type: note | ||
213 | #. Description | ||
214 | #: ../openssh-server.templates:5001 | ||
215 | msgid "The affected host keys are:" | ||
216 | msgstr "Etkilenmiş makine anahtarları:" | ||
217 | |||
218 | #. Type: note | ||
219 | #. Description | ||
220 | #: ../openssh-server.templates:5001 | ||
221 | msgid "" | ||
222 | "User keys may also be affected by this problem. The 'ssh-vulnkey' command " | ||
223 | "may be used as a partial test for this. See /usr/share/doc/openssh-server/" | ||
224 | "README.compromised-keys.gz for more details." | ||
225 | msgstr "" | ||
226 | "Kullanıcı anahtarları da bu sorundan etkilenebilir. 'ssh-vulnkey' komutu bu " | ||
227 | "sorun için kısmi bir test olarak kullanılabilir. Ayrıntılar için /usr/share/" | ||
228 | "doc/openssh-server/README.compromised-keys.gz belgesine bakın." | ||
229 | |||
230 | #~ msgid "Warning: you must create a new host key" | ||
231 | #~ msgstr "Uyarı: yeni bir makine anahtarı oluşturmalısınız" | ||
232 | |||
233 | #~ msgid "Warning: telnetd is installed --- probably not a good idea" | ||
234 | #~ msgstr "Uyarı: telnetd kurulmuş --- bu muhtemelen iyi bir fikir değil" | ||
235 | |||
236 | #~ msgid "" | ||
237 | #~ "I'd advise you to either remove the telnetd package (if you don't " | ||
238 | #~ "actually need to offer telnet access) or install telnetd-ssl so that " | ||
239 | #~ "there is at least some chance that telnet sessions will not be sending " | ||
240 | #~ "unencrypted login/password and session information over the network." | ||
241 | #~ msgstr "" | ||
242 | #~ "Telnetd paketini (eğer gerçekten telnet erişimi sunmak gibi bir " | ||
243 | #~ "zorunluluğunuz yoksa) kaldırmanızı veya en azından, telnet oturumlarında " | ||
244 | #~ "şifrelenmemiş giriş/parola ve oturum bilgilerinin ağ üzerinden " | ||
245 | #~ "gönderilmemesi olanağını sunan telnetd-ssl paketini kurmanızı öneririm." | ||
246 | |||
247 | #~ msgid "Warning: rsh-server is installed --- probably not a good idea" | ||
248 | #~ msgstr "Uyarı: rsh-server kurulmuş --- bu muhtemelen iyi bir fikir değil" | ||
249 | |||
250 | #~ msgid "" | ||
251 | #~ "having rsh-server installed undermines the security that you were " | ||
252 | #~ "probably wanting to obtain by installing ssh. I'd advise you to remove " | ||
253 | #~ "that package." | ||
254 | #~ msgstr "" | ||
255 | #~ "rsh-server'ın kurulu durumda olması muhtemelen ssh'ı kurmakla elde " | ||
256 | #~ "edilmesini istediğiniz güvenliği gölgeliyor. Bu paketi kaldırmanızı " | ||
257 | #~ "öneririm." | ||
258 | |||
259 | #~ msgid "Do you want ssh-keysign to be installed SUID root?" | ||
260 | #~ msgstr "" | ||
261 | #~ "ssh-keysign'ın root haklarıyla kurulmasını (SUID root) ister misiniz?" | ||
262 | |||
263 | #~ msgid "" | ||
264 | #~ "You have the option of installing the ssh-keysign helper with the SUID " | ||
265 | #~ "bit set." | ||
266 | #~ msgstr "" | ||
267 | #~ "ssh-keysign yardımcı aracının SUID bit'i etkinleştirilerek kurulması " | ||
268 | #~ "seçeneğine sahipsiniz." | ||
269 | |||
270 | #~ msgid "" | ||
271 | #~ "If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 " | ||
272 | #~ "host-based authentication." | ||
273 | #~ msgstr "" | ||
274 | #~ "Eğer ssh-keysign'ı SUID yaparsanız, SSH'ın makine tabanlı Protokol 2 " | ||
275 | #~ "yetkilendirmesini kullanabileceksiniz." | ||
276 | |||
277 | #~ msgid "" | ||
278 | #~ "If in doubt, I suggest you install it with SUID. If it causes problems " | ||
279 | #~ "you can change your mind later by running: dpkg-reconfigure ssh" | ||
280 | #~ msgstr "" | ||
281 | #~ "Bu konuda şüpheliyseniz, size SUID'li kurulumu öneririm. Eğer bu " | ||
282 | #~ "sorunlara yol açarsa ileride fikrinizi değiştirmek için şu komutu " | ||
283 | #~ "çalıştırabilirsiniz: dpkg-reconfigure ssh" | ||
284 | |||
285 | #~ msgid "Allow SSH protocol 2 only" | ||
286 | #~ msgstr "Sadece SSH protokol 2'ye izin ver" | ||
287 | |||
288 | #~ msgid "" | ||
289 | #~ "This version of OpenSSH supports version 2 of the ssh protocol, which is " | ||
290 | #~ "much more secure. Disabling ssh 1 is encouraged, however this will slow " | ||
291 | #~ "things down on low end machines and might prevent older clients from " | ||
292 | #~ "connecting (the ssh client shipped with \"potato\" is affected)." | ||
293 | #~ msgstr "" | ||
294 | #~ "OpenSSH'ın bu sürümü ssh'ın çok daha güvenli olan sürüm 2 protokolünü " | ||
295 | #~ "destekler. Sürüm 1 protokolünün etkisizleştirilmesini teşvik ediyoruz, " | ||
296 | #~ "bununla beraber böyle yapılması halinde düşük düzeyli makinelerde " | ||
297 | #~ "işlemler yavaşlayacak ve eski sürüm ssh istemcilerinden (\"potato\" ile " | ||
298 | #~ "birlikte gelen ssh istemcisi gibi) bağlantı kurulamayacaktır." | ||
299 | |||
300 | #~ msgid "" | ||
301 | #~ "Also please note that keys used for protocol 1 are different so you will " | ||
302 | #~ "not be able to use them if you only allow protocol 2 connections." | ||
303 | #~ msgstr "" | ||
304 | #~ "Protokol 1 anahtarları çok farklı olduğundan, sadece protokol 2 " | ||
305 | #~ "bağlantılarına izin vermeniz halinde bu anahtarları kullanamayacağınızı " | ||
306 | #~ "da lütfen not edin." | ||
307 | |||
308 | #~ msgid "" | ||
309 | #~ "If you later change your mind about this setting, README.Debian has " | ||
310 | #~ "instructions on what to do to your sshd_config file." | ||
311 | #~ msgstr "" | ||
312 | #~ "Bu ayar hakkındaki fikriniz ileride değişirse, sshd_config dosyasında " | ||
313 | #~ "yapacağınız işlemlerle ilgili talimatları README.Debian dosyasında " | ||
314 | #~ "bulabilirsiniz." | ||
315 | |||
316 | #~ msgid "NOTE: Forwarding of X11 and Authorization disabled by default." | ||
317 | #~ msgstr "" | ||
318 | #~ "NOT: X11 yönlendirme ve yetkilendirmesi öntanımlı olarak " | ||
319 | #~ "etkisizleÅŸtirilmiÅŸtir." | ||
320 | |||
321 | #~ msgid "" | ||
322 | #~ "For security reasons, the Debian version of ssh has ForwardX11 and " | ||
323 | #~ "ForwardAgent set to ``off'' by default." | ||
324 | #~ msgstr "" | ||
325 | #~ "Güvenlik gerekçeleriyle ssh'ın Debian sürümünde ForwardX11 ve " | ||
326 | #~ "ForwardAgent seçenekleri öntanımlı ``off'' değerine ayarlıdır." | ||
327 | |||
328 | #~ msgid "" | ||
329 | #~ "You can enable it for servers you trust, either in one of the " | ||
330 | #~ "configuration files, or with the -X command line option." | ||
331 | #~ msgstr "" | ||
332 | #~ "Güvendiğiniz sunucular için bu seçeneği yapılandırma dosyalarından " | ||
333 | #~ "birinde veya -X komut satırı seçeneğiyle etkinleştirebilirsiniz." | ||
334 | |||
335 | #~ msgid "More details can be found in /usr/share/doc/ssh/README.Debian" | ||
336 | #~ msgstr "" | ||
337 | #~ "Daha ayrıntılı bilgi /usr/share/doc/ssh/README.Debian dosyasında " | ||
338 | #~ "bulunabilir." | ||
339 | |||
340 | #~ msgid "ssh2 keys merged in configuration files" | ||
341 | #~ msgstr "yapılandırma dosyalarındaki ssh2 anahtarları birleştirildi" | ||
342 | |||
343 | #~ msgid "" | ||
344 | #~ "As of version 3 OpenSSH no longer uses separate files for ssh1 and ssh2 " | ||
345 | #~ "keys. This means the authorized_keys2 and known_hosts2 files are no " | ||
346 | #~ "longer needed. They will still be read in order to maintain backwards " | ||
347 | #~ "compatibility" | ||
348 | #~ msgstr "" | ||
349 | #~ "Sürüm 3 itibarıyla OpenSSH artık, ssh1 ve ssh2 için ayrı yapılandırma " | ||
350 | #~ "dosyaları kullanmamaktadır. Bu, authorized_keys2 ve known_hosts2 " | ||
351 | #~ "dosyalarının artık gerekmediği anlamına gelir. Geriye doğru uyumluluğu " | ||
352 | #~ "korumak için bu dosyalar yine de okunacaktır." | ||
353 | |||
354 | #~ msgid "Do you want to run the sshd server?" | ||
355 | #~ msgstr "SSH sunucusu sshd'yi çalıştırmak istiyor musunuz?" | ||
356 | |||
357 | #~ msgid "This package contains both the ssh client, and the sshd server." | ||
358 | #~ msgstr "Bu paket hem ssh istemcisini hem de sshd sunucusunu içeriyor." | ||
359 | |||
360 | #~ msgid "" | ||
361 | #~ "Normally the sshd Secure Shell Server will be run to allow remote logins " | ||
362 | #~ "via ssh." | ||
363 | #~ msgstr "" | ||
364 | #~ "Güvenli Kabuk Sunucusu sshd, normalde ssh ile uzaktan girişlere izin " | ||
365 | #~ "vermek için çalıştırılacaktır." | ||
366 | |||
367 | #~ msgid "" | ||
368 | #~ "If you are only interested in using the ssh client for outbound " | ||
369 | #~ "connections on this machine, and don't want to log into it at all using " | ||
370 | #~ "ssh, then you can disable sshd here." | ||
371 | #~ msgstr "" | ||
372 | #~ "Eğer amacınız sadece bu makinedeki dış bağlantılar için ssh istemcisini " | ||
373 | #~ "kullanmak ise ve bu makineye ssh'la girmek gibi bir ÅŸeyi de " | ||
374 | #~ "istemiyorsanız, sshd sunucusunu bu adımda etkisizleştirebilirsiniz." | ||
375 | |||
376 | #~ msgid "Environment options on keys have been deprecated" | ||
377 | #~ msgstr "Anahtarlara ilişkin ortam seçenekleri geçerliliğini kaybetmiştir" | ||
378 | |||
379 | #~ msgid "" | ||
380 | #~ "This version of OpenSSH disables the environment option for public keys " | ||
381 | #~ "by default, in order to avoid certain attacks (for example, LD_PRELOAD). " | ||
382 | #~ "If you are using this option in an authorized_keys file, beware that the " | ||
383 | #~ "keys in question will no longer work until the option is removed." | ||
384 | #~ msgstr "" | ||
385 | #~ "OpenSSH'ın bu sürümü belirli atakları önlemek için (ör. LD_PRELOAD) ortak " | ||
386 | #~ "anahtarlara ait ortam seçeneklerini öntanımlı olarak etkisizleştirir. " | ||
387 | #~ "Eğer bu seçeneği bir authorized_keys dosyasında kullanıyorsanız, ilgili " | ||
388 | #~ "seçenek silininceye kadar bu anahtarın artık çalışmayacağını unutmayın." | ||
389 | |||
390 | #~ msgid "" | ||
391 | #~ "To re-enable this option, set \"PermitUserEnvironment yes\" in /etc/ssh/" | ||
392 | #~ "sshd_config after the upgrade is complete, taking note of the warning in " | ||
393 | #~ "the sshd_config(5) manual page." | ||
394 | #~ msgstr "" | ||
395 | #~ "Bu seçeneği tekrar etkinleştirmek için, sshd_config(5) kılavuz " | ||
396 | #~ "sayfasındaki uyarı notunu dikkate alarak, sshd yükseltmesi " | ||
397 | #~ "tamamlandığında /etc/ssh/ssh_config dosyasında \"PermitUserEnvironment yes" | ||
398 | #~ "\" satırını kullanın." | ||
diff --git a/debian/po/uk.po b/debian/po/uk.po new file mode 100644 index 000000000..215f8c300 --- /dev/null +++ b/debian/po/uk.po | |||
@@ -0,0 +1,399 @@ | |||
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: openssh@packages.debian.org\n" | ||
18 | "POT-Creation-Date: 2008-05-17 08:51+0200\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:1001 | ||
32 | #, fuzzy | ||
33 | msgid "Generate a new configuration file for OpenSSH?" | ||
34 | msgstr "Створити новий файл налаштувань" | ||
35 | |||
36 | #. Type: boolean | ||
37 | #. Description | ||
38 | #: ../openssh-server.templates: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: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: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: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: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: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:3001 | ||
127 | msgid "New host key mandatory" | ||
128 | msgstr "" | ||
129 | |||
130 | #. Type: note | ||
131 | #. Description | ||
132 | #: ../openssh-server.templates: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: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:4001 | ||
155 | msgid "Disable challenge-response authentication?" | ||
156 | msgstr "Заборонити автентифікацію запит-відповідь?" | ||
157 | |||
158 | #. Type: boolean | ||
159 | #. Description | ||
160 | #: ../openssh-server.templates: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: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 | #. Type: note | ||
200 | #. Description | ||
201 | #: ../openssh-server.templates:5001 | ||
202 | msgid "Vulnerable host keys will be regenerated" | ||
203 | msgstr "" | ||
204 | |||
205 | #. Type: note | ||
206 | #. Description | ||
207 | #: ../openssh-server.templates:5001 | ||
208 | msgid "" | ||
209 | "Some of the OpenSSH server host keys on this system were generated with a " | ||
210 | "version of OpenSSL that had a broken random number generator. As a result, " | ||
211 | "these host keys are from a well-known set, are subject to brute-force " | ||
212 | "attacks, and must be regenerated." | ||
213 | msgstr "" | ||
214 | |||
215 | #. Type: note | ||
216 | #. Description | ||
217 | #: ../openssh-server.templates:5001 | ||
218 | msgid "" | ||
219 | "Users of this system should be informed of this change, as they will be " | ||
220 | "prompted about the host key change the next time they log in. Use 'ssh-" | ||
221 | "keygen -l -f HOST_KEY_FILE' after the upgrade to print the fingerprints of " | ||
222 | "the new host keys." | ||
223 | msgstr "" | ||
224 | |||
225 | #. Type: note | ||
226 | #. Description | ||
227 | #: ../openssh-server.templates:5001 | ||
228 | msgid "The affected host keys are:" | ||
229 | msgstr "" | ||
230 | |||
231 | #. Type: note | ||
232 | #. Description | ||
233 | #: ../openssh-server.templates:5001 | ||
234 | msgid "" | ||
235 | "User keys may also be affected by this problem. The 'ssh-vulnkey' command " | ||
236 | "may be used as a partial test for this. See /usr/share/doc/openssh-server/" | ||
237 | "README.compromised-keys.gz for more details." | ||
238 | msgstr "" | ||
239 | |||
240 | #~ msgid "Warning: you must create a new host key" | ||
241 | #~ msgstr "ПопередженнÑ: ви повинні Ñтворити новий ключ вузла" | ||
242 | |||
243 | #~ msgid "Warning: telnetd is installed --- probably not a good idea" | ||
244 | #~ msgstr "ПопередженнÑ: telnetd вÑтановлений - це погана ідеÑ" | ||
245 | |||
246 | #~ msgid "" | ||
247 | #~ "I'd advise you to either remove the telnetd package (if you don't " | ||
248 | #~ "actually need to offer telnet access) or install telnetd-ssl so that " | ||
249 | #~ "there is at least some chance that telnet sessions will not be sending " | ||
250 | #~ "unencrypted login/password and session information over the network." | ||
251 | #~ msgstr "" | ||
252 | #~ "РекомендуєтьÑÑ Ð°Ð±Ð¾ видалити пакунок telnetd (Ñкщо вам не потрібно " | ||
253 | #~ "надавати доÑтуп через telnet), або вÑтановити telnetd-ssl, щоб мати " | ||
254 | #~ "можливіÑÑ‚ÑŒ не передавати незашифровані логін/пароль та іншу інформацію " | ||
255 | #~ "через мережу." | ||
256 | |||
257 | #~ msgid "Warning: rsh-server is installed --- probably not a good idea" | ||
258 | #~ msgstr "ПопередженнÑ: rsh-server вÑтановлений - це погана ідеÑ" | ||
259 | |||
260 | #~ msgid "" | ||
261 | #~ "having rsh-server installed undermines the security that you were " | ||
262 | #~ "probably wanting to obtain by installing ssh. I'd advise you to remove " | ||
263 | #~ "that package." | ||
264 | #~ msgstr "" | ||
265 | #~ "Ð’Ñтановлений rsh-server знижує рівень безпеки, Ñкий ви, можливо, хотіли " | ||
266 | #~ "отримати вÑтановивши ssh. РекомендуєтьÑÑ Ð²Ð¸Ð´Ð°Ð»Ð¸Ñ‚Ð¸ цей пакунок." | ||
267 | |||
268 | #~ msgid "Do you want ssh-keysign to be installed SUID root?" | ||
269 | #~ msgstr "Чи бажаєте ви, щоб ssh-keysign мав вÑтановлений біт SUID?" | ||
270 | |||
271 | #~ msgid "" | ||
272 | #~ "You have the option of installing the ssh-keysign helper with the SUID " | ||
273 | #~ "bit set." | ||
274 | #~ msgstr "Ви маєте можливіÑÑ‚ÑŒ вÑтановити біт SUID Ð´Ð»Ñ Ð¿Ñ€Ð¾Ð³Ñ€Ð°Ð¼Ð¸ ssh-keysign." | ||
275 | |||
276 | #~ msgid "" | ||
277 | #~ "If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 " | ||
278 | #~ "host-based authentication." | ||
279 | #~ msgstr "" | ||
280 | #~ "Якщо ви вÑтановите біт SUID Ð´Ð»Ñ ssh-keysign, ви зможете викориÑтовувати " | ||
281 | #~ "вузлову автентифікацію протоколу SSH верÑÑ–Ñ— 2." | ||
282 | |||
283 | #~ msgid "" | ||
284 | #~ "If in doubt, I suggest you install it with SUID. If it causes problems " | ||
285 | #~ "you can change your mind later by running: dpkg-reconfigure ssh" | ||
286 | #~ msgstr "" | ||
287 | #~ "Якщо ÑумніваєтеÑÑŒ, то рекомендуєтьÑÑ Ð´Ð¾Ð·Ð²Ð¾Ð»Ð¸Ñ‚Ð¸ вÑтановити біт SUID. Якщо " | ||
288 | #~ "це викликатиме проблеми, ви зможете вÑе змінити запуÑтивши dpkg-" | ||
289 | #~ "reconfigure ssh" | ||
290 | |||
291 | #~ msgid "Allow SSH protocol 2 only" | ||
292 | #~ msgstr "Дозволити тільки SSH-протокол верÑÑ–Ñ— 2" | ||
293 | |||
294 | #~ msgid "" | ||
295 | #~ "This version of OpenSSH supports version 2 of the ssh protocol, which is " | ||
296 | #~ "much more secure. Disabling ssh 1 is encouraged, however this will slow " | ||
297 | #~ "things down on low end machines and might prevent older clients from " | ||
298 | #~ "connecting (the ssh client shipped with \"potato\" is affected)." | ||
299 | #~ msgstr "" | ||
300 | #~ "Ð¦Ñ Ð²ÐµÑ€ÑÑ–Ñ OpenSSH підтримує верÑÑ–ÑŽ 2 протоколу SSH, Ñка Ñ” більш " | ||
301 | #~ "безпечною. РекомендуєтьÑÑ Ð·Ð°Ð±Ð¾Ñ€Ð¾Ð½Ð¸Ñ‚Ð¸ верÑÑ–ÑŽ 1, однак це може уповільнити " | ||
302 | #~ "роботу на Ñлабких ÑиÑтемах та зробити неможливим з'Ñ”Ð´Ð½Ð°Ð½Ð½Ñ Ð· " | ||
303 | #~ "викориÑтаннÑм Ñтарих клієнтів (включно з клієнтом ssh з \"potato\")." | ||
304 | |||
305 | #~ msgid "" | ||
306 | #~ "Also please note that keys used for protocol 1 are different so you will " | ||
307 | #~ "not be able to use them if you only allow protocol 2 connections." | ||
308 | #~ msgstr "" | ||
309 | #~ "Також зверніть увагу, що ключі Ð´Ð»Ñ Ð²ÐµÑ€ÑÑ–Ñ— 1 відрізнÑÑŽÑ‚ÑŒÑÑ Ð²Ñ–Ð´ ключів Ð´Ð»Ñ " | ||
310 | #~ "верÑÑ–Ñ— 2, тому ви не зможете викориÑтовувати Ñ—Ñ…, Ñкщо дозволите з'Ñ”Ð´Ð½Ð°Ð½Ð½Ñ " | ||
311 | #~ "тільки по протоколу верÑÑ–Ñ— 2." | ||
312 | |||
313 | #~ msgid "" | ||
314 | #~ "If you later change your mind about this setting, README.Debian has " | ||
315 | #~ "instructions on what to do to your sshd_config file." | ||
316 | #~ msgstr "" | ||
317 | #~ "Якщо ви пізніше передумаєте щодо цього параметра, файл README.Debian " | ||
318 | #~ "міÑтить інÑтрукції щодо внеÑÐµÐ½Ð½Ñ Ð·Ð¼Ñ–Ð½ до файла sshd_config." | ||
319 | |||
320 | #~ msgid "ssh2 keys merged in configuration files" | ||
321 | #~ msgstr "ssh2-ключі злиті у файлах налаштувань" | ||
322 | |||
323 | #~ msgid "" | ||
324 | #~ "As of version 3 OpenSSH no longer uses separate files for ssh1 and ssh2 " | ||
325 | #~ "keys. This means the authorized_keys2 and known_hosts2 files are no " | ||
326 | #~ "longer needed. They will still be read in order to maintain backwards " | ||
327 | #~ "compatibility" | ||
328 | #~ msgstr "" | ||
329 | #~ "У верÑÑ–Ñ— 3 OpenSSH більше не викориÑтовує окремі файли Ð´Ð»Ñ ÐºÐ»ÑŽÑ‡Ñ–Ð² ssh1 та " | ||
330 | #~ "ssh2. Це означає, що файли authorized_keys2 та known_hosts2 більше " | ||
331 | #~ "непотрібні. Вони будуть читатиÑÑ Ð· метою Ð·Ð°Ð±ÐµÐ·Ð¿ÐµÑ‡ÐµÐ½Ð½Ñ Ð·Ð²Ð¾Ñ€Ð¾Ñ‚Ð½Ð¾Ñ— " | ||
332 | #~ "ÑуміÑноÑÑ‚Ñ–." | ||
333 | |||
334 | #~ msgid "NOTE: Forwarding of X11 and Authorization disabled by default." | ||
335 | #~ msgstr "" | ||
336 | #~ "ЗÐУВÐЖЕÐÐЯ: Форвардинг X11 та Authorization заборонені за замовчаннÑм." | ||
337 | |||
338 | #~ msgid "" | ||
339 | #~ "For security reasons, the Debian version of ssh has ForwardX11 and " | ||
340 | #~ "ForwardAgent set to ``off'' by default." | ||
341 | #~ msgstr "" | ||
342 | #~ "З міркувань безпеки в Debian-верÑÑ–Ñ— ssh параметри ForwardX11 та " | ||
343 | #~ "ForwardAgent за замовчаннÑм мають Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ \"off\"." | ||
344 | |||
345 | #~ msgid "" | ||
346 | #~ "You can enable it for servers you trust, either in one of the " | ||
347 | #~ "configuration files, or with the -X command line option." | ||
348 | #~ msgstr "" | ||
349 | #~ "Ви можете дозволити Ñ—Ñ… Ð´Ð»Ñ Ñерверів, Ñким довірÑєте, або у одному з " | ||
350 | #~ "файлів налаштувань, або за допомогою параметра командного Ñ€Ñдка -X." | ||
351 | |||
352 | #~ msgid "More details can be found in /usr/share/doc/ssh/README.Debian" | ||
353 | #~ msgstr "Подробиці можна прочитати у файлі /usr/share/doc/ssh/README.Debian" | ||
354 | |||
355 | #~ msgid "Do you want to run the sshd server?" | ||
356 | #~ msgstr "Чи бажаєте ви запуÑтити Ñервер sshd?" | ||
357 | |||
358 | #~ msgid "This package contains both the ssh client, and the sshd server." | ||
359 | #~ msgstr "Цей пакунок міÑтить Ñк клієнт ssh, так Ñ– Ñервер sshd." | ||
360 | |||
361 | #~ msgid "" | ||
362 | #~ "Normally the sshd Secure Shell Server will be run to allow remote logins " | ||
363 | #~ "via ssh." | ||
364 | #~ msgstr "" | ||
365 | #~ "Звичайно sshd (Secure Shell Server) запуÑкаєтьÑÑ Ñ‰Ð¾Ð± зробити можливим " | ||
366 | #~ "віддалену реєÑтрацію в ÑиÑтемі за допомогою ssh." | ||
367 | |||
368 | #~ msgid "" | ||
369 | #~ "If you are only interested in using the ssh client for outbound " | ||
370 | #~ "connections on this machine, and don't want to log into it at all using " | ||
371 | #~ "ssh, then you can disable sshd here." | ||
372 | #~ msgstr "" | ||
373 | #~ "Якщо Ð²Ð°Ñ Ñ†Ñ–ÐºÐ°Ð²Ð¸Ñ‚ÑŒ викориÑÑ‚Ð°Ð½Ð½Ñ Ñ‚Ñ–Ð»ÑŒÐºÐ¸ клієнта ssh на цій машині Ñ– ви не " | ||
374 | #~ "бажаєте реєÑтруватиÑÑ Ð½Ð° ній викориÑтовуючи ssh, тоді ви можете " | ||
375 | #~ "заборонити sshd." | ||
376 | |||
377 | #~ msgid "Environment options on keys have been deprecated" | ||
378 | #~ msgstr "Опції Ð¾Ñ‚Ð¾Ñ‡ÐµÐ½Ð½Ñ Ð´Ð»Ñ ÐºÐ»ÑŽÑ‡Ñ–Ð² не повинні викориÑтовуватиÑÑ" | ||
379 | |||
380 | #~ msgid "" | ||
381 | #~ "This version of OpenSSH disables the environment option for public keys " | ||
382 | #~ "by default, in order to avoid certain attacks (for example, LD_PRELOAD). " | ||
383 | #~ "If you are using this option in an authorized_keys file, beware that the " | ||
384 | #~ "keys in question will no longer work until the option is removed." | ||
385 | #~ msgstr "" | ||
386 | #~ "Ð’ цій верÑÑ–Ñ— OpenSSH, з метою ÑƒÐ½Ð¸ÐºÐ½ÐµÐ½Ð½Ñ Ð´ÐµÑких атак (наприклад " | ||
387 | #~ "LD_PRELOAD), за замовчаннÑм заборонені опції Ð¾Ñ‚Ð¾Ñ‡ÐµÐ½Ð½Ñ Ð´Ð»Ñ Ð²Ñ–Ð´ÐºÑ€Ð¸Ñ‚Ð¸Ñ… " | ||
388 | #~ "ключів. Якщо ви викориÑтовуєте цю опцію у файлі authorized_keys, майте на " | ||
389 | #~ "увазі, що ключі з такими опціÑми не будуть працювати, доки Ð¾Ð¿Ñ†Ñ–Ñ Ð½Ðµ буде " | ||
390 | #~ "видалена." | ||
391 | |||
392 | #~ msgid "" | ||
393 | #~ "To re-enable this option, set \"PermitUserEnvironment yes\" in /etc/ssh/" | ||
394 | #~ "sshd_config after the upgrade is complete, taking note of the warning in " | ||
395 | #~ "the sshd_config(5) manual page." | ||
396 | #~ msgstr "" | ||
397 | #~ "Щоб дозволити цю опцію, вÑтановіть \"PermitUserEnvironment yes\" в /etc/" | ||
398 | #~ "ssh/sshd_config піÑÐ»Ñ Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð½Ñ Ð¾Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ; зверніть увагу на " | ||
399 | #~ "Ð¿Ð¾Ð¿ÐµÑ€ÐµÐ´Ð¶ÐµÐ½Ð½Ñ Ð½Ð° Ñторінці підручника sshd_config(5)." | ||
diff --git a/debian/po/vi.po b/debian/po/vi.po new file mode 100644 index 000000000..ea03cbae6 --- /dev/null +++ b/debian/po/vi.po | |||
@@ -0,0 +1,223 @@ | |||
1 | # Vietnamese translation for OpenSSH. | ||
2 | # Copyright © 2008 Free Software Foundation, Inc. | ||
3 | # Clytie Siddall <clytie@riverland.net.au>, 2007-2008. | ||
4 | # | ||
5 | msgid "" | ||
6 | msgstr "" | ||
7 | "Project-Id-Version: openssh 1:4.7p1-9\n" | ||
8 | "Report-Msgid-Bugs-To: openssh@packages.debian.org\n" | ||
9 | "POT-Creation-Date: 2008-05-17 13:58+0200\n" | ||
10 | "PO-Revision-Date: 2008-05-19 16:49+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.7b3\n" | ||
18 | |||
19 | #. Type: boolean | ||
20 | #. Description | ||
21 | #: ../openssh-server.templates: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: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 hiện thá»i có khả năng tạo ra má»™t táºp tin cấu hình má»›i (/" | ||
38 | "etc/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 lại mục sá»a đổi nà o bạn đã tạo trong phiên bản cÅ©." | ||
40 | |||
41 | # Please note that this new configuration file will set the value of | ||
42 | # 'PermitRootLogin' to yes (meaning that anyone knowing the root password | ||
43 | # can ssh directly in as root). It is the opinion of the maintainer that | ||
44 | # this is the correct default (see README.Debian for more details), but you | ||
45 | # can always edit sshd_config and set it to no if you wish. | ||
46 | #. Type: boolean | ||
47 | #. Description | ||
48 | #: ../openssh-server.templates: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 | "Ghi chú rằng táºp tin cấu hình má»›i nà y sẽ đặt giá trị của « PermitRootLogin » " | ||
56 | "thà nh « yes » (có : nghÄ©a là ai đó biết máºt khẩu ngÆ°á»i chủ thì có khả năng " | ||
57 | "truy cáºp trá»±c tiếp qua ssh vá»›i tÆ° cách là ngÆ°á»i chủ). Xem táºp tin Äá»c Äi « " | ||
58 | "README.Debian » để tìm thêm chi tiết vá» sá»± chá»n thiết kế nà y." | ||
59 | |||
60 | #. Type: boolean | ||
61 | #. Description | ||
62 | #: ../openssh-server.templates:1001 | ||
63 | msgid "" | ||
64 | "It is strongly recommended that you choose to generate a new configuration " | ||
65 | "file now." | ||
66 | 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á»." | ||
67 | |||
68 | #. Type: boolean | ||
69 | #. Description | ||
70 | #: ../openssh-server.templates:2001 | ||
71 | msgid "Do you want to risk killing active SSH sessions?" | ||
72 | msgstr "Bạn có muốn rủi ro giết phiên bản SSH đang chạy không?" | ||
73 | |||
74 | # The version of /etc/init.d/ssh that you have installed, is likely to kill | ||
75 | # all running sshd instances. If you are doing this upgrade via an ssh | ||
76 | # session, that would be a Bad Thing(tm). | ||
77 | #. Type: boolean | ||
78 | #. Description | ||
79 | #: ../openssh-server.templates:2001 | ||
80 | msgid "" | ||
81 | "The currently installed version of /etc/init.d/ssh is likely to kill all " | ||
82 | "running sshd instances. If you are doing this upgrade via an SSH session, " | ||
83 | "you're likely to be disconnected and leave the upgrade procedure unfinished." | ||
84 | msgstr "" | ||
85 | "Phiên bản « /etc/init.d/ssh » được cà i đặt hiện thá»i rất có thể giết má»i tiến " | ||
86 | "trình sshd đang chạy. Nếu bạn có nâng cấp qua phiên chạy SSH, rất có thể bạn " | ||
87 | "bị ngắt kết nối, để lại tiến trình nâng cấp chưa hoà n tất." | ||
88 | |||
89 | # You can fix this by adding \"--pidfile /var/run/sshd.pid\" to the start- | ||
90 | # stop-daemon line in the stop section of the file. | ||
91 | #. Type: boolean | ||
92 | #. Description | ||
93 | #: ../openssh-server.templates: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 | "Bạn vẫn còn có thể sá»a chữa vấn Ä‘á» nà y bằng cách tá»± thêm chuá»—i « --pidfile /" | ||
99 | "var/run/sshd.pid » và o dòng « start-stop-daemon » (khởi/ngừng chạy trình ná»n) " | ||
100 | "trong phần « stop » (ngừng chạy) của táºp tin đó." | ||
101 | |||
102 | #. Type: note | ||
103 | #. Description | ||
104 | #: ../openssh-server.templates:3001 | ||
105 | msgid "New host key mandatory" | ||
106 | msgstr "Bắt buộc phải có khoá máy mới" | ||
107 | |||
108 | #. Type: note | ||
109 | #. Description | ||
110 | #: ../openssh-server.templates:3001 | ||
111 | msgid "" | ||
112 | "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " | ||
113 | "algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " | ||
114 | "utility from the old (non-free) SSH installation does not appear to be " | ||
115 | "available." | ||
116 | msgstr "" | ||
117 | "Khoá máy hiện thá»i, trong « /etc/ssh/ssh_host_key », được mặt mã bằng thuáºt " | ||
118 | "toán IDEA. Phần má»m OpenSSH không thể xá» lý táºp tin khoá máy kiểu nà y; cÅ©ng " | ||
119 | "có vẻ là tiện Ãch « ssh-keygen » (tạo khoá SSH) thuá»™c vá» bản cà i đặt SSH cÅ© " | ||
120 | "(khác tự do) không sẵn sà ng." | ||
121 | |||
122 | #. Type: note | ||
123 | #. Description | ||
124 | #: ../openssh-server.templates:3001 | ||
125 | msgid "You need to manually generate a new host key." | ||
126 | msgstr "Váºy bạn cần phải tá»± tạo má»™t khoá máy má»›i." | ||
127 | |||
128 | #. Type: boolean | ||
129 | #. Description | ||
130 | #: ../openssh-server.templates:4001 | ||
131 | msgid "Disable challenge-response authentication?" | ||
132 | msgstr "Tắt chức năng xác thực kiểu yêu cầu/đáp ứng không?" | ||
133 | |||
134 | # Password authentication appears to be disabled in your current OpenSSH | ||
135 | # server configuration. In order to prevent users from logging in using | ||
136 | # passwords (perhaps using only public key authentication instead) with | ||
137 | # recent versions of OpenSSH, you must disable challenge-response | ||
138 | # authentication, or else ensure that your PAM configuration does not allow | ||
139 | # Unix password file authentication. | ||
140 | #. Type: boolean | ||
141 | #. Description | ||
142 | #: ../openssh-server.templates:4001 | ||
143 | msgid "" | ||
144 | "Password authentication appears to be disabled in the current OpenSSH server " | ||
145 | "configuration. In order to prevent users from logging in using passwords " | ||
146 | "(perhaps using only public key authentication instead) with recent versions " | ||
147 | "of OpenSSH, you must disable challenge-response authentication, or else " | ||
148 | "ensure that your PAM configuration does not allow Unix password file " | ||
149 | "authentication." | ||
150 | msgstr "" | ||
151 | "Có vẻ là chức năng xác thá»±c bằng máºt khẩu bị tắt trong cấu hình trình phục " | ||
152 | "vụ OpenSSH hiện thá»i. Äể ngăn cản ngÆ°á»i dùng đăng nháºp bằng máºt khẩu (có lẽ " | ||
153 | "chỉ 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 " | ||
154 | "tắt khả năng xác thực kiểu yêu cầu/đáp ứng (challenge-response " | ||
155 | "authentication), không thì đảm bảo cấu hình PAM không cho phép xác thực bằng " | ||
156 | "táºp tin máºt khẩu UNIX." | ||
157 | |||
158 | #. Type: boolean | ||
159 | #. Description | ||
160 | #: ../openssh-server.templates:4001 | ||
161 | msgid "" | ||
162 | "If you disable challenge-response authentication, then users will not be " | ||
163 | "able to log in using passwords. If you leave it enabled (the default " | ||
164 | "answer), then the 'PasswordAuthentication no' option will have no useful " | ||
165 | "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh." | ||
166 | msgstr "" | ||
167 | "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ể " | ||
168 | "đă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 « " | ||
169 | "PasswordAuthentication no » (xác thá»±c bằng máºt khẩu : không) sẽ không có tác " | ||
170 | "Ä‘á»™ng tháºt, nếu bạn không Ä‘iá»u chỉnh cấu hình PAM trong « /etc/pam.d/ssh »" | ||
171 | |||
172 | #. Type: note | ||
173 | #. Description | ||
174 | #: ../openssh-server.templates:5001 | ||
175 | msgid "Vulnerable host keys will be regenerated" | ||
176 | msgstr "Má»i khoá máy dá»… bị tấn công Ä‘á»u sẽ được tạo lại" | ||
177 | |||
178 | #. Type: note | ||
179 | #. Description | ||
180 | #: ../openssh-server.templates:5001 | ||
181 | msgid "" | ||
182 | "Some of the OpenSSH server host keys on this system were generated with a " | ||
183 | "version of OpenSSL that had a broken random number generator. As a result, " | ||
184 | "these host keys are from a well-known set, are subject to brute-force " | ||
185 | "attacks, and must be regenerated." | ||
186 | msgstr "" | ||
187 | "Một số khoá máy kiểu trình phục vụ OpenSSH trên hệ thống nà y đã được tạo " | ||
188 | "bằng má»™t phiên bản OpenSSL có má»™t cÆ¡ chế tạo số ngẫu nhiên mà bị há»ng. Kết " | ||
189 | "quả là những khoá máy nà y thuá»™c vá» má»™t táºp hợp ai cÅ©ng biết, có thể bị tấn " | ||
190 | "công dùng sức mạnh vũ phu, và phải được tạo lại." | ||
191 | |||
192 | #. Type: note | ||
193 | #. Description | ||
194 | #: ../openssh-server.templates:5001 | ||
195 | msgid "" | ||
196 | "Users of this system should be informed of this change, as they will be " | ||
197 | "prompted about the host key change the next time they log in. Use 'ssh-" | ||
198 | "keygen -l -f HOST_KEY_FILE' after the upgrade to print the fingerprints of " | ||
199 | "the new host keys." | ||
200 | msgstr "" | ||
201 | "Các ngÆ°á»i dùng của hệ thống nà y nên được thông báo vá» thay đổi nà y, vì há» sẽ " | ||
202 | "được nhắc cho thay đổi khoá máy nà y lần kế tiếp đăng nháºp. Hãy dùng câu lệnh " | ||
203 | "« ssh-keygen -l -f TẬP_TIN_KHOÃ_MÃY » sau khi nâng cấp, để in ra các vân tay " | ||
204 | "của những khoá máy mới." | ||
205 | |||
206 | #. Type: note | ||
207 | #. Description | ||
208 | #: ../openssh-server.templates:5001 | ||
209 | msgid "The affected host keys are:" | ||
210 | msgstr "Những máy khoá bị ảnh hưởng:" | ||
211 | |||
212 | #. Type: note | ||
213 | #. Description | ||
214 | #: ../openssh-server.templates:5001 | ||
215 | msgid "" | ||
216 | "User keys may also be affected by this problem. The 'ssh-vulnkey' command " | ||
217 | "may be used as a partial test for this. See /usr/share/doc/openssh-server/" | ||
218 | "README.compromised-keys.gz for more details." | ||
219 | msgstr "" | ||
220 | "Các khoá kiểu ngÆ°á»i dùng cÅ©ng có thể bị vấn Ä‘á» nà y ảnh hưởng. Câu lệnh « ssh-" | ||
221 | "vulnkey » có thể được sá» dụng là m thá» bá»™ pháºn để phát hiện các khoá vẫn còn " | ||
222 | "dá»… tấn công. Xem tà i liệu Äá»c Äi « /usr/share/doc/openssh-server/README." | ||
223 | "compromised-keys.gz » để tìm thêm chi tiết." | ||
diff --git a/debian/po/zh_CN.po b/debian/po/zh_CN.po new file mode 100644 index 000000000..a845920c0 --- /dev/null +++ b/debian/po/zh_CN.po | |||
@@ -0,0 +1,400 @@ | |||
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: openssh@packages.debian.org\n" | ||
18 | "POT-Creation-Date: 2008-05-17 08:51+0200\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:1001 | ||
29 | #, fuzzy | ||
30 | msgid "Generate a new configuration file for OpenSSH?" | ||
31 | msgstr "生æˆæ–°çš„é…置文件" | ||
32 | |||
33 | #. Type: boolean | ||
34 | #. Description | ||
35 | #: ../openssh-server.templates: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: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: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: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: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: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:3001 | ||
119 | msgid "New host key mandatory" | ||
120 | msgstr "" | ||
121 | |||
122 | #. Type: note | ||
123 | #. Description | ||
124 | #: ../openssh-server.templates: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: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:4001 | ||
146 | msgid "Disable challenge-response authentication?" | ||
147 | msgstr "" | ||
148 | |||
149 | #. Type: boolean | ||
150 | #. Description | ||
151 | #: ../openssh-server.templates: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: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 | #. Type: note | ||
172 | #. Description | ||
173 | #: ../openssh-server.templates:5001 | ||
174 | msgid "Vulnerable host keys will be regenerated" | ||
175 | msgstr "" | ||
176 | |||
177 | #. Type: note | ||
178 | #. Description | ||
179 | #: ../openssh-server.templates:5001 | ||
180 | msgid "" | ||
181 | "Some of the OpenSSH server host keys on this system were generated with a " | ||
182 | "version of OpenSSL that had a broken random number generator. As a result, " | ||
183 | "these host keys are from a well-known set, are subject to brute-force " | ||
184 | "attacks, and must be regenerated." | ||
185 | msgstr "" | ||
186 | |||
187 | #. Type: note | ||
188 | #. Description | ||
189 | #: ../openssh-server.templates:5001 | ||
190 | msgid "" | ||
191 | "Users of this system should be informed of this change, as they will be " | ||
192 | "prompted about the host key change the next time they log in. Use 'ssh-" | ||
193 | "keygen -l -f HOST_KEY_FILE' after the upgrade to print the fingerprints of " | ||
194 | "the new host keys." | ||
195 | msgstr "" | ||
196 | |||
197 | #. Type: note | ||
198 | #. Description | ||
199 | #: ../openssh-server.templates:5001 | ||
200 | msgid "The affected host keys are:" | ||
201 | msgstr "" | ||
202 | |||
203 | #. Type: note | ||
204 | #. Description | ||
205 | #: ../openssh-server.templates:5001 | ||
206 | msgid "" | ||
207 | "User keys may also be affected by this problem. The 'ssh-vulnkey' command " | ||
208 | "may be used as a partial test for this. See /usr/share/doc/openssh-server/" | ||
209 | "README.compromised-keys.gz for more details." | ||
210 | msgstr "" | ||
211 | |||
212 | #~ msgid "Warning: you must create a new host key" | ||
213 | #~ msgstr "è¦å‘Šï¼šæ‚¨å¿…须创建一个新的主机密钥" | ||
214 | |||
215 | #~ msgid "Warning: telnetd is installed --- probably not a good idea" | ||
216 | #~ msgstr "è¦å‘Šï¼šå·²ç»å®‰è£…了 telnetd æœåŠ¡å™¨ --- å¯èƒ½ä¸æ˜¯ä¸ªå¥½ä¸»æ„" | ||
217 | |||
218 | #~ msgid "" | ||
219 | #~ "I'd advise you to either remove the telnetd package (if you don't " | ||
220 | #~ "actually need to offer telnet access) or install telnetd-ssl so that " | ||
221 | #~ "there is at least some chance that telnet sessions will not be sending " | ||
222 | #~ "unencrypted login/password and session information over the network." | ||
223 | #~ msgstr "" | ||
224 | #~ "æˆ‘å»ºè®®æ‚¨åˆ é™¤ telnetd 包(如果您ä¸æ˜¯çœŸçš„需è¦æä¾› telnet 访问),或者安装 " | ||
225 | #~ "telnetd-sslï¼Œè¿™æ ·è‡³å°‘æœ‰æ—¶å€™ telnet 会è¯ä¸ä¼šå°†æœªåŠ 密的 登录å/密ç 和会è¯ä¿¡" | ||
226 | #~ "æ¯é€šè¿‡ç½‘络å‘é€ã€‚" | ||
227 | |||
228 | #~ msgid "Warning: rsh-server is installed --- probably not a good idea" | ||
229 | #~ msgstr "è¦å‘Šï¼šå·²ç»å®‰è£…了 rsh æœåŠ¡å™¨ --- å¯èƒ½ä¸æ˜¯ä¸ªå¥½ä¸»æ„" | ||
230 | |||
231 | #~ msgid "" | ||
232 | #~ "having rsh-server installed undermines the security that you were " | ||
233 | #~ "probably wanting to obtain by installing ssh. I'd advise you to remove " | ||
234 | #~ "that package." | ||
235 | #~ msgstr "" | ||
236 | #~ "安装 rsh æœåŠ¡å™¨å¾ˆå¯èƒ½ä¼šé™ä½Žæ‚¨æƒ³è¦é€šè¿‡å®‰è£… ssh å¾—åˆ°çš„å®‰å…¨æ€§ã€‚æˆ‘å»ºè®®æ‚¨åˆ é™¤è¿™" | ||
237 | #~ "个包。" | ||
238 | |||
239 | #~ msgid "Do you want ssh-keysign to be installed SUID root?" | ||
240 | #~ msgstr "您è¦å°† ssh-keysign 安装为 SUID root 程åºå—?" | ||
241 | |||
242 | #~ msgid "" | ||
243 | #~ "You have the option of installing the ssh-keysign helper with the SUID " | ||
244 | #~ "bit set." | ||
245 | #~ msgstr "您使用为 ssh-keysign 帮助者程åºè®¾ç½® SUID ä½çš„选项。" | ||
246 | |||
247 | #~ msgid "" | ||
248 | #~ "If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 " | ||
249 | #~ "host-based authentication." | ||
250 | #~ msgstr "" | ||
251 | #~ "如果您为 ssh-keysign 设置了 SUID,您将å¯ä»¥ä½¿ç”¨ SSH åè®® 2 的基于主机的认è¯" | ||
252 | #~ "æ–¹å¼ã€‚" | ||
253 | |||
254 | #~ msgid "" | ||
255 | #~ "If in doubt, I suggest you install it with SUID. If it causes problems " | ||
256 | #~ "you can change your mind later by running: dpkg-reconfigure ssh" | ||
257 | #~ msgstr "" | ||
258 | #~ "如果有疑问,我建议您将它安装为 SUID。如果它带æ¥éº»çƒ¦ï¼Œæ‚¨å¯ä»¥é€šè¿‡è¿è¡Œï¼šdpkg-" | ||
259 | #~ "reconfigure ssh æ¥æ”¹å˜ä¸»æ„" | ||
260 | |||
261 | #~ msgid "Allow SSH protocol 2 only" | ||
262 | #~ msgstr "åªå…许 SSH åè®® 2 (ssh2)。" | ||
263 | |||
264 | #~ msgid "" | ||
265 | #~ "This version of OpenSSH supports version 2 of the ssh protocol, which is " | ||
266 | #~ "much more secure. Disabling ssh 1 is encouraged, however this will slow " | ||
267 | #~ "things down on low end machines and might prevent older clients from " | ||
268 | #~ "connecting (the ssh client shipped with \"potato\" is affected)." | ||
269 | #~ msgstr "" | ||
270 | #~ "这个版本的 OpenSSH 支æŒæ›´åŠ 安全的第二版本 ssh å议。我们鼓励您ç¦ç”¨ ssh 1," | ||
271 | #~ "然而这会é™ä½Žä½Žç«¯æœºå™¨é€Ÿåº¦ï¼Œå¹¶ä¸”会阻æ¢è€ç‰ˆå®¢æˆ·ç«¯çš„连接(“potatoâ€æ‰€å¸¦çš„ ssh 客" | ||
272 | #~ "户端会å—到影å“)。" | ||
273 | |||
274 | #~ msgid "" | ||
275 | #~ "Also please note that keys used for protocol 1 are different so you will " | ||
276 | #~ "not be able to use them if you only allow protocol 2 connections." | ||
277 | #~ msgstr "" | ||
278 | #~ "也请注æ„åè®® 1 所用的密钥是ä¸åŒçš„ï¼Œå› æ¤å¦‚果您åªå…许åè®® 2 连接将会导致ä¸èƒ½" | ||
279 | #~ "使用它们。" | ||
280 | |||
281 | #~ msgid "" | ||
282 | #~ "If you later change your mind about this setting, README.Debian has " | ||
283 | #~ "instructions on what to do to your sshd_config file." | ||
284 | #~ msgstr "" | ||
285 | #~ "如果您ç¨åŽæƒ³æ”¹å˜è¿™ä¸ªè®¾ç½®ï¼ŒREADME.Debian 上有说明告诉您如何修改 " | ||
286 | #~ "sshd_Config 文件。" | ||
287 | |||
288 | #~ msgid "NOTE: Forwarding of X11 and Authorization disabled by default." | ||
289 | #~ msgstr "注æ„:X11 转å‘和认è¯é»˜è®¤è¢«ç¦æ¢ã€‚" | ||
290 | |||
291 | #~ msgid "" | ||
292 | #~ "For security reasons, the Debian version of ssh has ForwardX11 and " | ||
293 | #~ "ForwardAgent set to ``off'' by default." | ||
294 | #~ msgstr "" | ||
295 | #~ "å› ä¸ºå®‰å…¨æ€§åŽŸå› ï¼Œé»˜è®¤æƒ…å†µä¸‹ Debian 版本的 ssh å°† ForwardX11 å’Œ " | ||
296 | #~ "ForwardAgent 设置为 off。" | ||
297 | |||
298 | #~ msgid "" | ||
299 | #~ "You can enable it for servers you trust, either in one of the " | ||
300 | #~ "configuration files, or with the -X command line option." | ||
301 | #~ msgstr "" | ||
302 | #~ "您å¯ä»¥ä¸ºä¿¡èµ–çš„æœåŠ¡å™¨å¯ç”¨è¿™ä¸ªé€‰é¡¹ï¼Œå¯ä»¥é€šè¿‡å…¶ä¸ä¹‹ä¸€çš„é…置文件或者使用 -X 命" | ||
303 | #~ "令行选项æ¥å®žçŽ°ã€‚" | ||
304 | |||
305 | #~ msgid "More details can be found in /usr/share/doc/ssh/README.Debian" | ||
306 | #~ msgstr "更多细节å¯ä»¥åœ¨ /usr/share/doc/ssh/README.Debian 找到" | ||
307 | |||
308 | #~ msgid "ssh2 keys merged in configuration files" | ||
309 | #~ msgstr "ssh2 密钥被åˆå¹¶åˆ°é…置文件" | ||
310 | |||
311 | #~ msgid "" | ||
312 | #~ "As of version 3 OpenSSH no longer uses separate files for ssh1 and ssh2 " | ||
313 | #~ "keys. This means the authorized_keys2 and known_hosts2 files are no " | ||
314 | #~ "longer needed. They will still be read in order to maintain backwards " | ||
315 | #~ "compatibility" | ||
316 | #~ msgstr "" | ||
317 | #~ "在 OpenSSH 第 3 版ä¸å†ä¸º ssh1 å’Œ ssh2 的密钥使用ä¸åŒçš„文件。这æ„å‘³ç€ " | ||
318 | #~ "authorized_keys2 å’Œ known_hosts2 文件将ä¸å†éœ€è¦ã€‚但为了ä¿æŒå‘åŽå…¼å®¹æ€§ï¼Œå®ƒ" | ||
319 | #~ "们ä»ä¼šè¢«è¯»å–。" | ||
320 | |||
321 | #~ msgid "Do you want to run the sshd server?" | ||
322 | #~ msgstr "您è¦è¿è¡Œ sshd æœåŠ¡å™¨å—?" | ||
323 | |||
324 | #~ msgid "This package contains both the ssh client, and the sshd server." | ||
325 | #~ msgstr "è¿™ä¸ªè½¯ä»¶åŒ…å†…å« ssh 客户端和 sshd æœåŠ¡å™¨ã€‚" | ||
326 | |||
327 | #~ msgid "" | ||
328 | #~ "Normally the sshd Secure Shell Server will be run to allow remote logins " | ||
329 | #~ "via ssh." | ||
330 | #~ msgstr "通常 sshd 安全 Shell æœåŠ¡å™¨éƒ½ä¼šè¿è¡Œä»¥ä¾¿å…许通过 ssh 进行远程登录。" | ||
331 | |||
332 | #~ msgid "" | ||
333 | #~ "If you are only interested in using the ssh client for outbound " | ||
334 | #~ "connections on this machine, and don't want to log into it at all using " | ||
335 | #~ "ssh, then you can disable sshd here." | ||
336 | #~ msgstr "" | ||
337 | #~ "如果您åªè¦åœ¨è¿™å°æœºå™¨ä¸Šä½¿ç”¨ ssh 客户端对外连接,完全ä¸æƒ³é€šè¿‡ ssh 登录到本" | ||
338 | #~ "机,那么您å¯ä»¥åœ¨è¿™é‡Œç¦ç”¨ sshd æœåŠ¡å™¨ã€‚" | ||
339 | |||
340 | #~ msgid "Environment options on keys have been deprecated" | ||
341 | #~ msgstr "密钥的环境选项已被废弃" | ||
342 | |||
343 | #~ msgid "" | ||
344 | #~ "This version of OpenSSH disables the environment option for public keys " | ||
345 | #~ "by default, in order to avoid certain attacks (for example, LD_PRELOAD). " | ||
346 | #~ "If you are using this option in an authorized_keys file, beware that the " | ||
347 | #~ "keys in question will no longer work until the option is removed." | ||
348 | #~ msgstr "" | ||
349 | #~ "为了é¿å…一些攻击(如 LD_PRELOAD),这个版本的 OpenSSH 默认ç¦ç”¨äº†å…¬é’¥ä¸Šçš„环境" | ||
350 | #~ "选项。如果您在æŸä¸ªæŽˆæƒå¯†é’¥(authorized_keys)文件ä¸ç”¨äº†è¿™ä¸ªå‚数,请注æ„除éž" | ||
351 | #~ "åˆ é™¤äº†æ¤é€‰é¡¹ï¼Œå¦åˆ™è¿™ä¸ªå¯ç–‘的密钥将ä¸å†èµ·ä½œç”¨ã€‚" | ||
352 | |||
353 | #~ msgid "" | ||
354 | #~ "To re-enable this option, set \"PermitUserEnvironment yes\" in /etc/ssh/" | ||
355 | #~ "sshd_config after the upgrade is complete, taking note of the warning in " | ||
356 | #~ "the sshd_config(5) manual page." | ||
357 | #~ msgstr "" | ||
358 | #~ "è¦é‡æ–°å¯ç”¨è¿™ä¸ªé€‰é¡¹ï¼Œå‡çº§å®ŒæˆåŽè¯·åœ¨ /etc/ssh/sshd_config ä¸åŠ 入一" | ||
359 | #~ "行:“PermitUserEnvironment yesâ€ã€‚è¯·æ³¨æ„ sshd_config(5) 手册页ä¸æ到的è¦" | ||
360 | #~ "告。" | ||
361 | |||
362 | #~ msgid "Privilege separation" | ||
363 | #~ msgstr "æƒé™åˆ†ç¦»" | ||
364 | |||
365 | #~ msgid "" | ||
366 | #~ "Privilege separation is turned on by default, so if you decide you want " | ||
367 | #~ "it turned off, you need to add \"UsePrivilegeSeparation no\" to /etc/ssh/" | ||
368 | #~ "sshd_config." | ||
369 | #~ msgstr "" | ||
370 | #~ "æƒé™åˆ†ç¦»é€‰é¡¹æ˜¯é»˜è®¤æ‰“开的。如果想è¦å…³é—æ¤é€‰é¡¹ï¼Œæ‚¨éœ€è¦åœ¨ /etc/ssh/" | ||
371 | #~ "sshd_config 文件ä¸æ·»åŠ 一行“UsePrivilegeSeparation noâ€ã€‚" | ||
372 | |||
373 | #~ msgid "Enable Privilege separation" | ||
374 | #~ msgstr "å¯ç”¨æƒé™åˆ†ç¦»" | ||
375 | |||
376 | #~ msgid "" | ||
377 | #~ "This version of OpenSSH contains the new privilege separation option. " | ||
378 | #~ "This significantly reduces the quantity of code that runs as root, and " | ||
379 | #~ "therefore reduces the impact of security holes in sshd." | ||
380 | #~ msgstr "" | ||
381 | #~ "这个版本的 OpenSSH 包å«äº†ä¸€ä¸ªæ–°çš„æƒé™åˆ†ç¦»çš„选项,目的是为了å‡å°‘以 root è¿" | ||
382 | #~ "行的代ç 数目,进而å‡å°‘了 sshd 被安全æ¼æ´žå½±å“的机会。" | ||
383 | |||
384 | #~ msgid "" | ||
385 | #~ "Unfortunately, privilege separation interacts badly with PAM. Any PAM " | ||
386 | #~ "session modules that need to run as root (pam_mkhomedir, for example) " | ||
387 | #~ "will fail, and PAM keyboard-interactive authentication won't work." | ||
388 | #~ msgstr "" | ||
389 | #~ "ä¸å¹¸çš„是,æƒé™åˆ†ç¦»å’Œ PAM åŒæ—¶ä½¿ç”¨ä¼šå¾ˆç³Ÿç³•ã€‚任何需è¦ä»¥ root è¿è¡Œçš„ PAM 会è¯" | ||
390 | #~ "æ¨¡å— (如 pam_mkhomedir) 都会失败,而且 PAM 键盘交互å¼è®¤è¯éƒ½ä¸èµ·ä½œç”¨ã€‚" | ||
391 | |||
392 | #~ msgid "" | ||
393 | #~ "Since you've opted to have me generate an sshd_config file for you, you " | ||
394 | #~ "can choose whether or not to have privilege separation turned on or not. " | ||
395 | #~ "Unless you know you need to use PAM features that won't work with this " | ||
396 | #~ "option, you should enable it." | ||
397 | #~ msgstr "" | ||
398 | #~ "å› ä¸ºæ‚¨é€‰æ‹©äº†è®©æˆ‘ä¸ºæ‚¨ç”Ÿæˆ sshd_config 文件,您å¯ä»¥é€‰æ‹©æ˜¯å¦æ‰“å¼€æƒé™åˆ†ç¦»é€‰" | ||
399 | #~ "项。除éžæ‚¨çŸ¥é“需è¦ä½¿ç”¨ PAM 这个ä¸èƒ½å’Œæƒé™åˆ†ç¦»åŒæ—¶å·¥ä½œçš„功能,å¦åˆ™å°±åº”该å¯" | ||
400 | #~ "用它。" | ||
diff --git a/debian/rules b/debian/rules new file mode 100755 index 000000000..0c48082b5 --- /dev/null +++ b/debian/rules | |||
@@ -0,0 +1,348 @@ | |||
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 (,$(filter 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 | # Change the version string to include the Debian version | ||
51 | SSH_EXTRAVERSION := Debian-$(shell dpkg-parsechangelog | sed -n -e '/^Version:/s/Version: //p' | sed -e 's/[^-]*-//') | ||
52 | |||
53 | DISTRIBUTOR := $(shell lsb_release -is 2>/dev/null || echo Debian) | ||
54 | ifeq ($(DISTRIBUTOR),Ubuntu) | ||
55 | DEFAULT_PATH := /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/bin/X11:/usr/games | ||
56 | else | ||
57 | DEFAULT_PATH := /usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/games | ||
58 | endif | ||
59 | SUPERUSER_PATH := /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/bin/X11 | ||
60 | |||
61 | # Common path configuration. | ||
62 | confflags += --prefix=/usr --sysconfdir=/etc/ssh --libexecdir=/usr/lib/openssh --mandir=/usr/share/man | ||
63 | |||
64 | # Common build options. | ||
65 | confflags += --with-mantype=doc | ||
66 | confflags += --with-4in6 | ||
67 | confflags += --with-privsep-path=/var/run/sshd | ||
68 | confflags += --without-rand-helper | ||
69 | |||
70 | # The Hurd needs libcrypt for res_query et al. | ||
71 | ifeq ($(DEB_HOST_ARCH_OS),hurd) | ||
72 | confflags += --with-libs=-lcrypt | ||
73 | endif | ||
74 | |||
75 | # Everything above here is common to the deb and udeb builds. | ||
76 | confflags_udeb := $(confflags) | ||
77 | |||
78 | # Options specific to the deb build. | ||
79 | confflags += --with-tcp-wrappers | ||
80 | confflags += --with-pam | ||
81 | confflags += --with-libedit | ||
82 | confflags += --with-kerberos5=/usr | ||
83 | confflags += --with-ssl-engine | ||
84 | ifeq ($(DEB_HOST_ARCH_OS),linux) | ||
85 | confflags += --with-selinux | ||
86 | endif | ||
87 | |||
88 | # The deb build wants xauth; the udeb build doesn't. | ||
89 | confflags += --with-xauth=/usr/bin/X11/xauth | ||
90 | confflags_udeb += --without-xauth | ||
91 | |||
92 | # Default paths. The udeb build has /usr/bin/X11 and /usr/games removed. | ||
93 | confflags += --with-default-path=$(DEFAULT_PATH) --with-superuser-path=$(SUPERUSER_PATH) | ||
94 | confflags_udeb += --with-default-path=/usr/local/bin:/usr/bin:/bin --with-superuser-path=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin | ||
95 | |||
96 | # Compiler flags. | ||
97 | cflags := $(OPTFLAGS) $(PIE_CFLAGS) | ||
98 | cflags += -DLOGIN_PROGRAM=\"/bin/login\" -DLOGIN_NO_ENDOPT | ||
99 | cflags += -DSSH_EXTRAVERSION=\"$(SSH_EXTRAVERSION)\" | ||
100 | cflags_udeb := -Os | ||
101 | cflags_udeb += -DSSH_EXTRAVERSION=\"$(SSH_EXTRAVERSION)\" | ||
102 | confflags += --with-cflags='$(cflags)' | ||
103 | confflags_udeb += --with-cflags='$(cflags_udeb)' | ||
104 | |||
105 | # Linker flags. | ||
106 | ifneq ($(PIE_LDFLAGS),) | ||
107 | confflags += --with-ldflags='$(PIE_LDFLAGS)' | ||
108 | endif | ||
109 | |||
110 | build: build-deb build-udeb | ||
111 | |||
112 | build-deb: build-deb-stamp | ||
113 | build-deb-stamp: | ||
114 | dh_testdir | ||
115 | mkdir -p build-deb | ||
116 | cd build-deb && ../configure $(confflags) | ||
117 | |||
118 | ifeq ($(DEB_HOST_ARCH_OS),linux) | ||
119 | # Some 2.2 kernels have trouble with setres[ug]id() (bug #239999). | ||
120 | perl -pi -e 's/.*#undef (BROKEN_SETRES[UG]ID).*/#define $$1 1/' build-deb/config.h | ||
121 | endif | ||
122 | # Debian's /var/log/btmp has inappropriate permissions. | ||
123 | perl -pi -e 's,.*#define USE_BTMP .*,/* #undef USE_BTMP */,' build-deb/config.h | ||
124 | |||
125 | $(MAKE) -C build-deb -j 2 ASKPASS_PROGRAM='/usr/bin/ssh-askpass' | ||
126 | $(MAKE) -C contrib gnome-ssh-askpass2 CC='gcc $(OPTFLAGS) -g -Wall' | ||
127 | $(MAKE) -C debian/tests | ||
128 | |||
129 | touch build-deb-stamp | ||
130 | |||
131 | build-udeb: build-udeb-stamp | ||
132 | build-udeb-stamp: | ||
133 | dh_testdir | ||
134 | mkdir -p build-udeb | ||
135 | cd build-udeb && ../configure $(confflags_udeb) | ||
136 | # Debian's /var/log/btmp has inappropriate permissions. | ||
137 | perl -pi -e 's,.*#define USE_BTMP .*,/* #undef USE_BTMP */,' build-udeb/config.h | ||
138 | # Avoid libnsl linkage. Ugh. | ||
139 | perl -pi -e 's/ +-lnsl//' build-udeb/config.status | ||
140 | cd build-udeb && ./config.status | ||
141 | $(MAKE) -C build-udeb -j 2 ASKPASS_PROGRAM='/usr/bin/ssh-askpass' ssh scp sftp sshd ssh-keygen | ||
142 | touch build-udeb-stamp | ||
143 | |||
144 | clean: | ||
145 | dh_testdir | ||
146 | rm -f build-deb-stamp build-udeb-stamp | ||
147 | rm -rf build-deb build-udeb | ||
148 | $(MAKE) -C debian/tests clean | ||
149 | $(MAKE) -C contrib clean | ||
150 | rm -f config.log | ||
151 | rm -f debian/ssh-askpass-gnome.png | ||
152 | (cat debian/copyright.head; iconv -f ISO-8859-1 -t UTF-8 LICENCE) \ | ||
153 | > debian/copyright | ||
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 | install -s -o root -g root -m 755 contrib/gnome-ssh-askpass2 debian/ssh-askpass-gnome/usr/lib/openssh/gnome-ssh-askpass | ||
183 | install -m 644 debian/gnome-ssh-askpass.1 debian/ssh-askpass-gnome/usr/share/man/man1/gnome-ssh-askpass.1 | ||
184 | uudecode -o debian/ssh-askpass-gnome/usr/share/pixmaps/ssh-askpass-gnome.png debian/ssh-askpass-gnome.png.uue | ||
185 | |||
186 | install -m 755 debian/ssh-argv0 debian/openssh-client/usr/bin/ssh-argv0 | ||
187 | install -m 644 debian/ssh-argv0.1 debian/openssh-client/usr/share/man/man1/ssh-argv0.1 | ||
188 | |||
189 | install -o root -g root debian/openssh-server.init debian/openssh-server/etc/init.d/ssh | ||
190 | install -o root -g root -m 644 debian/openssh-server.default debian/openssh-server/etc/default/ssh | ||
191 | install -o root -g root debian/openssh-server.if-up debian/openssh-server/etc/network/if-up.d/openssh-server | ||
192 | |||
193 | install -m 755 build-udeb/ssh debian/openssh-client-udeb/usr/bin/ssh | ||
194 | install -m 755 build-udeb/scp debian/openssh-client-udeb/usr/bin/scp | ||
195 | install -m 755 build-udeb/sftp debian/openssh-client-udeb/usr/bin/sftp | ||
196 | install -m 755 build-udeb/sshd debian/openssh-server-udeb/usr/sbin/sshd | ||
197 | install -m 755 build-udeb/ssh-keygen debian/openssh-server-udeb/usr/bin/ssh-keygen | ||
198 | |||
199 | # Remove version control tags to avoid unnecessary conffile | ||
200 | # resolution steps for administrators. | ||
201 | sed -i '/\$$OpenBSD:/d' \ | ||
202 | debian/openssh-client/etc/ssh/moduli \ | ||
203 | debian/openssh-client/etc/ssh/ssh_config | ||
204 | |||
205 | # Build architecture-independent files here. | ||
206 | binary-indep: binary-ssh binary-ssh-krb5 | ||
207 | |||
208 | # Build architecture-dependent files here. | ||
209 | binary-arch: binary-openssh-client binary-openssh-server | ||
210 | binary-arch: binary-ssh-askpass-gnome | ||
211 | binary-arch: binary-openssh-client-udeb binary-openssh-server-udeb | ||
212 | |||
213 | binary-openssh-client: DH_OPTIONS=-popenssh-client | ||
214 | binary-openssh-client: build install | ||
215 | dh_testdir | ||
216 | dh_testroot | ||
217 | dh_installdebconf | ||
218 | dh_installdocs OVERVIEW README README.dns README.tun debian/faq.html debian/README.compromised-keys | ||
219 | dh_installchangelogs ChangeLog ChangeLog.gssapi | ||
220 | install -m644 debian/openssh-client.lintian debian/openssh-client/usr/share/lintian/overrides/openssh-client | ||
221 | dh_strip | ||
222 | dh_compress | ||
223 | dh_fixperms | ||
224 | chmod u+s debian/openssh-client/usr/lib/openssh/ssh-keysign | ||
225 | dh_installdeb | ||
226 | test ! -e debian/ssh/etc/ssh/ssh_prng_cmds \ | ||
227 | || echo "/etc/ssh/ssh_prng_cmds" >> debian/openssh-client/DEBIAN/conffiles | ||
228 | perl -i debian/substitute-conffile.pl \ | ||
229 | ETC_SSH_MODULI debian/openssh-client/etc/ssh/moduli \ | ||
230 | ETC_SSH_SSH_CONFIG debian/openssh-client/etc/ssh/ssh_config \ | ||
231 | debian/openssh-client/DEBIAN/preinst | ||
232 | dh_shlibdeps | ||
233 | dh_gencontrol | ||
234 | dh_md5sums | ||
235 | dh_builddeb | ||
236 | |||
237 | binary-openssh-server: DH_OPTIONS=-popenssh-server | ||
238 | binary-openssh-server: build install | ||
239 | dh_testdir | ||
240 | dh_testroot | ||
241 | dh_installdebconf | ||
242 | dh_installdocs | ||
243 | mv debian/openssh-server/usr/share/doc/openssh-server debian/openssh-server/usr/share/doc/openssh-client | ||
244 | rm -f debian/openssh-server/usr/share/doc/openssh-client/copyright | ||
245 | dh_installpam --name sshd | ||
246 | dh_link | ||
247 | dh_strip | ||
248 | dh_compress | ||
249 | dh_fixperms | ||
250 | dh_installdeb | ||
251 | perl -i debian/substitute-conffile.pl \ | ||
252 | ETC_DEFAULT_SSH debian/openssh-server/etc/default/ssh \ | ||
253 | ETC_INIT_D_SSH debian/openssh-server/etc/init.d/ssh \ | ||
254 | ETC_PAM_D_SSH debian/openssh-server/etc/pam.d/ssh \ | ||
255 | debian/openssh-server/DEBIAN/preinst | ||
256 | dh_shlibdeps | ||
257 | dh_gencontrol | ||
258 | dh_md5sums | ||
259 | dh_builddeb | ||
260 | |||
261 | binary-ssh: DH_OPTIONS=-pssh | ||
262 | binary-ssh: build install | ||
263 | dh_testdir | ||
264 | dh_testroot | ||
265 | dh_installdocs | ||
266 | mv debian/ssh/usr/share/doc/ssh debian/ssh/usr/share/doc/openssh-client | ||
267 | rm -f debian/ssh/usr/share/doc/openssh-client/copyright | ||
268 | dh_link | ||
269 | dh_compress | ||
270 | dh_fixperms | ||
271 | dh_installdeb | ||
272 | dh_gencontrol | ||
273 | dh_md5sums | ||
274 | dh_builddeb | ||
275 | |||
276 | binary-ssh-krb5: DH_OPTIONS=-pssh-krb5 | ||
277 | binary-ssh-krb5: build install | ||
278 | dh_testdir | ||
279 | dh_testroot | ||
280 | dh_installdocs | ||
281 | dh_installchangelogs ChangeLog ChangeLog.gssapi | ||
282 | dh_link | ||
283 | dh_compress | ||
284 | dh_fixperms | ||
285 | dh_installdeb | ||
286 | dh_gencontrol | ||
287 | dh_md5sums | ||
288 | dh_builddeb | ||
289 | |||
290 | binary-ssh-askpass-gnome: DH_OPTIONS=-pssh-askpass-gnome | ||
291 | binary-ssh-askpass-gnome: build install | ||
292 | dh_testdir | ||
293 | dh_testroot | ||
294 | dh_installdocs | ||
295 | dh_installexamples debian/ssh-askpass-gnome.desktop | ||
296 | dh_installchangelogs ChangeLog ChangeLog.gssapi | ||
297 | dh_strip | ||
298 | dh_compress | ||
299 | dh_fixperms | ||
300 | dh_installdeb | ||
301 | dh_shlibdeps | ||
302 | dh_gencontrol | ||
303 | dh_md5sums | ||
304 | dh_builddeb | ||
305 | |||
306 | binary-openssh-client-udeb: DH_OPTIONS=-popenssh-client-udeb | ||
307 | binary-openssh-client-udeb: build install | ||
308 | dh_testdir | ||
309 | dh_testroot | ||
310 | dh_strip | ||
311 | dh_compress | ||
312 | dh_fixperms | ||
313 | dh_installdeb | ||
314 | dh_shlibdeps | ||
315 | dh_gencontrol | ||
316 | dh_md5sums | ||
317 | dh_builddeb | ||
318 | |||
319 | binary-openssh-server-udeb: DH_OPTIONS=-popenssh-server-udeb | ||
320 | binary-openssh-server-udeb: build install | ||
321 | dh_testdir | ||
322 | dh_testroot | ||
323 | dh_strip | ||
324 | dh_compress | ||
325 | dh_fixperms | ||
326 | dh_installdeb | ||
327 | dh_shlibdeps | ||
328 | dh_gencontrol | ||
329 | dh_md5sums | ||
330 | dh_builddeb | ||
331 | |||
332 | binary: binary-indep binary-arch | ||
333 | |||
334 | debian/faq.html: | ||
335 | wget -O - http://www.openssh.org/faq.html | \ | ||
336 | sed 's,\(href="\)\(txt/\|[^":]*\.html\),\1http://www.openssh.org/\2,g' \ | ||
337 | > debian/faq.html | ||
338 | |||
339 | debian/moduli.5: | ||
340 | wget -q -O - 'http://www.openbsd.org/cgi-bin/cvsweb/~checkout~/src/share/man/man5/moduli.5?content-type=text/plain' | \ | ||
341 | sed 's,/etc/moduli,/etc/ssh/moduli,g; s/\$$Mdocdate\$$/$(shell date +'%B %-d %Y')/' \ | ||
342 | > debian/moduli.5 | ||
343 | |||
344 | .PHONY: build clean binary-indep binary-arch binary install | ||
345 | .PHONY: build-deb build-udeb | ||
346 | .PHONY: binary-openssh-client binary-openssh-server binary-ssh | ||
347 | .PHONY: binary-ssh-krb5 binary-ssh-askpass-gnome | ||
348 | .PHONY: binary-openssh-client-udeb binary-openssh-server-udeb | ||
diff --git a/debian/source.lintian-overrides b/debian/source.lintian-overrides new file mode 100644 index 000000000..5ddb25600 --- /dev/null +++ b/debian/source.lintian-overrides | |||
@@ -0,0 +1,2 @@ | |||
1 | # .desktop file intentionally not installed | ||
2 | openssh source: desktop-file-but-no-dh_desktop-call | ||
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..0ffa45024 --- /dev/null +++ b/debian/ssh-askpass-gnome.dirs | |||
@@ -0,0 +1,3 @@ | |||
1 | usr/lib/openssh | ||
2 | usr/share/man/man1 | ||
3 | 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/tests/.cvsignore b/debian/tests/.cvsignore new file mode 100644 index 000000000..d0383c1d3 --- /dev/null +++ b/debian/tests/.cvsignore | |||
@@ -0,0 +1,4 @@ | |||
1 | key1 | ||
2 | key1.pub | ||
3 | key2 | ||
4 | key2.pub | ||
diff --git a/debian/tests/Makefile b/debian/tests/Makefile new file mode 100644 index 000000000..666ed8227 --- /dev/null +++ b/debian/tests/Makefile | |||
@@ -0,0 +1,12 @@ | |||
1 | test: getpid.so | ||
2 | chmod +x keygen-test | ||
3 | ./keygen-test | ||
4 | |||
5 | getpid.o: getpid.c | ||
6 | gcc -fPIC -c $< -o $@ | ||
7 | |||
8 | getpid.so: getpid.o | ||
9 | gcc -shared -o $@ $< | ||
10 | |||
11 | clean: | ||
12 | rm -f getpid.o getpid.so key1 key1.pub key2 key2.pub | ||
diff --git a/debian/tests/getpid.c b/debian/tests/getpid.c new file mode 100644 index 000000000..c9e35b87e --- /dev/null +++ b/debian/tests/getpid.c | |||
@@ -0,0 +1,39 @@ | |||
1 | /* | ||
2 | * Compile: | ||
3 | |||
4 | gcc -fPIC -c getpid.c -o getpid.o | ||
5 | gcc -shared -o getpid.so getpid.o | ||
6 | |||
7 | * Use: | ||
8 | |||
9 | FORCE_PID=1234 LD_PRELOAD=./getpid.so bash | ||
10 | |||
11 | # | ||
12 | # Copyright (C) 2001-2008 Kees Cook | ||
13 | # kees@outflux.net, http://outflux.net/ | ||
14 | # | ||
15 | # This program is free software; you can redistribute it and/or | ||
16 | # modify it under the terms of the GNU General Public License | ||
17 | # as published by the Free Software Foundation; either version 2 | ||
18 | # of the License, or (at your option) any later version. | ||
19 | # | ||
20 | # This program is distributed in the hope that it will be useful, | ||
21 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
22 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
23 | # GNU General Public License for more details. | ||
24 | # | ||
25 | # You should have received a copy of the GNU General Public License | ||
26 | # along with this program; if not, write to the Free Software | ||
27 | # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | ||
28 | # http://www.gnu.org/copyleft/gpl.html | ||
29 | |||
30 | */ | ||
31 | |||
32 | #include <sys/types.h> | ||
33 | #include <unistd.h> | ||
34 | #include <stdlib.h> | ||
35 | |||
36 | pid_t getpid(void) | ||
37 | { | ||
38 | return atoi(getenv("FORCE_PID")); | ||
39 | } | ||
diff --git a/debian/tests/keygen-test b/debian/tests/keygen-test new file mode 100755 index 000000000..02b7c761a --- /dev/null +++ b/debian/tests/keygen-test | |||
@@ -0,0 +1,12 @@ | |||
1 | #! /bin/sh | ||
2 | |||
3 | rm -f key1 key1.pub key2 key2.pub | ||
4 | LD_PRELOAD="$(pwd)/getpid.so" FORCE_PID=1234 \ | ||
5 | ../../build-deb/ssh-keygen -N '' -f key1 >/dev/null | ||
6 | LD_PRELOAD="$(pwd)/getpid.so" FORCE_PID=1234 \ | ||
7 | ../../build-deb/ssh-keygen -N '' -f key2 >/dev/null | ||
8 | if cmp -s key1 key2; then | ||
9 | echo "Generated two identical keys!" >&2 | ||
10 | exit 1 | ||
11 | fi | ||
12 | exit 0 | ||
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 | ||