blob: 680906cf3e874fbf898646f54f9887f1342f7944 [file] [log] [blame]
Damien Millerea437422009-10-02 11:49:03 +10001%define ver 5.3p1
Damien Miller9fc475f2004-02-24 16:00:02 +11002%define rel 1
Damien Millercfe4a892002-05-10 12:19:23 +10003
4# OpenSSH privilege separation requires a user & group ID
5%define sshd_uid 74
6%define sshd_gid 74
Damien Miller36884401999-12-26 12:26:21 +11007
8# Version of ssh-askpass
Damien Millerbccb5a92001-09-28 20:03:25 +10009%define aversion 1.2.4.1
Damien Miller36884401999-12-26 12:26:21 +110010
Damien Miller5a119bc2000-07-12 14:34:11 +100011# Do we want to disable building of x11-askpass? (1=yes 0=no)
12%define no_x11_askpass 0
13
14# Do we want to disable building of gnome-askpass? (1=yes 0=no)
15%define no_gnome_askpass 0
16
Damien Miller3e292fa2001-03-12 14:47:30 +110017# Do we want to link against a static libcrypto? (1=yes 0=no)
18%define static_libcrypto 0
19
Damien Millerf2bd06c2001-09-18 15:33:07 +100020# Do we want smartcard support (1=yes 0=no)
21%define scard 0
22
Damien Miller005d4562002-09-05 16:53:20 +100023# Use GTK2 instead of GNOME in gnome-ssh-askpass
Damien Miller5efd4302003-03-20 11:05:10 +110024%define gtk2 1
Damien Miller005d4562002-09-05 16:53:20 +100025
Damien Millercfe4a892002-05-10 12:19:23 +100026# Is this build for RHL 6.x?
27%define build6x 0
Damien Miller070ca312001-02-12 09:34:17 +110028
Damien Miller53baddb2002-06-21 16:42:41 +100029# Do we want kerberos5 support (1=yes 0=no)
30%define kerberos5 1
31
Damien Miller070ca312001-02-12 09:34:17 +110032# Reserve options to override askpass settings with:
33# rpm -ba|--rebuild --define 'skip_xxx 1'
34%{?skip_x11_askpass:%define no_x11_askpass 1}
35%{?skip_gnome_askpass:%define no_gnome_askpass 1}
36
Damien Miller968c8d22003-09-19 16:58:21 +100037# Add option to build without GTK2 for older platforms with only GTK+.
38# RedHat <= 7.2 and Red Hat Advanced Server 2.1 are examples.
39# rpm -ba|--rebuild --define 'no_gtk2 1'
40%{?no_gtk2:%define gtk2 0}
41
Damien Millercfe4a892002-05-10 12:19:23 +100042# Is this a build for RHL 6.x or earlier?
43%{?build_6x:%define build6x 1}
44
45# If this is RHL 6.x, the default configuration has sysconfdir in /usr/etc.
46%if %{build6x}
47%define _sysconfdir /etc
Damien Millercfe4a892002-05-10 12:19:23 +100048%endif
Damien Miller070ca312001-02-12 09:34:17 +110049
Damien Miller3e292fa2001-03-12 14:47:30 +110050# Options for static OpenSSL link:
51# rpm -ba|--rebuild --define "static_openssl 1"
52%{?static_openssl:%define static_libcrypto 1}
53
Damien Millerf2bd06c2001-09-18 15:33:07 +100054# Options for Smartcard support: (needs libsectok and openssl-engine)
55# rpm -ba|--rebuild --define "smartcard 1"
56%{?smartcard:%define scard 1}
57
Damien Millercfe4a892002-05-10 12:19:23 +100058# Is this a build for the rescue CD (without PAM, with MD5)? (1=yes 0=no)
59%define rescue 0
60%{?build_rescue:%define rescue 1}
Ben Lindstrom379f2052001-02-23 04:55:46 +000061
Damien Miller04d06282002-06-21 17:11:02 +100062# Turn off some stuff for resuce builds
63%if %{rescue}
64%define kerberos5 0
65%endif
66
Damien Millercfe4a892002-05-10 12:19:23 +100067Summary: The OpenSSH implementation of SSH protocol versions 1 and 2.
Damien Millerd4a8b7e1999-10-27 13:42:43 +100068Name: openssh
Damien Millercfe4a892002-05-10 12:19:23 +100069Version: %{ver}
70%if %{rescue}
71Release: %{rel}rescue
72%else
73Release: %{rel}
Damien Miller969c07e2000-11-06 13:06:43 +110074%endif
Damien Millercfe4a892002-05-10 12:19:23 +100075URL: http://www.openssh.com/portable.html
76Source0: ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-%{version}.tar.gz
Darren Tucker0ffe6382004-05-27 09:59:31 +100077Source1: http://www.jmknoble.net/software/x11-ssh-askpass/x11-ssh-askpass-%{aversion}.tar.gz
Damien Miller0c217b72001-09-15 21:01:41 +100078License: BSD
Damien Millerd4a8b7e1999-10-27 13:42:43 +100079Group: Applications/Internet
Ben Lindstrom65981152001-02-24 00:05:29 +000080BuildRoot: %{_tmppath}/%{name}-%{version}-buildroot
Damien Millerc6d5ce81999-11-15 16:01:07 +110081Obsoletes: ssh
Damien Millercfe4a892002-05-10 12:19:23 +100082%if %{build6x}
83PreReq: initscripts >= 5.00
84%else
85PreReq: initscripts >= 5.20
86%endif
Damien Millera92a5892003-04-09 19:41:25 +100087BuildPreReq: perl, openssl-devel, tcp_wrappers
Damien Millercfe4a892002-05-10 12:19:23 +100088BuildPreReq: /bin/login
Damien Miller6b097922002-09-04 17:19:04 +100089%if ! %{build6x}
Damien Millercfe4a892002-05-10 12:19:23 +100090BuildPreReq: glibc-devel, pam
91%else
Damien Millerf2728092003-09-17 07:24:25 +100092BuildPreReq: /usr/include/security/pam_appl.h
Damien Millercfe4a892002-05-10 12:19:23 +100093%endif
Damien Miller0c217b72001-09-15 21:01:41 +100094%if ! %{no_x11_askpass}
95BuildPreReq: XFree86-devel
96%endif
Damien Millerab8d1922000-08-08 16:53:28 +100097%if ! %{no_gnome_askpass}
Damien Millerd0875622002-09-30 11:09:54 +100098BuildPreReq: pkgconfig
Damien Miller5a119bc2000-07-12 14:34:11 +100099%endif
Damien Millerf49035a2002-06-26 19:42:52 +1000100%if %{kerberos5}
101BuildPreReq: krb5-devel
102BuildPreReq: krb5-libs
103%endif
Damien Miller36682061999-11-15 17:19:24 +1100104
105%package clients
Damien Miller0c217b72001-09-15 21:01:41 +1000106Summary: OpenSSH clients.
Damien Millerff649d82000-10-16 13:35:19 +1100107Requires: openssh = %{version}-%{release}
Damien Millerab8d1922000-08-08 16:53:28 +1000108Group: Applications/Internet
Damien Millerc6d5ce81999-11-15 16:01:07 +1100109Obsoletes: ssh-clients
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000110
Damien Miller3f51bf51999-11-09 14:46:02 +1100111%package server
Damien Miller0c217b72001-09-15 21:01:41 +1000112Summary: The OpenSSH server daemon.
Damien Miller3f51bf51999-11-09 14:46:02 +1100113Group: System Environment/Daemons
Damien Millerc6d5ce81999-11-15 16:01:07 +1100114Obsoletes: ssh-server
Damien Millerff649d82000-10-16 13:35:19 +1100115PreReq: openssh = %{version}-%{release}, chkconfig >= 0.9
Damien Millercfe4a892002-05-10 12:19:23 +1000116%if ! %{build6x}
Ben Lindstrom65981152001-02-24 00:05:29 +0000117Requires: /etc/pam.d/system-auth
118%endif
Damien Miller3f51bf51999-11-09 14:46:02 +1100119
120%package askpass
Damien Miller0c217b72001-09-15 21:01:41 +1000121Summary: A passphrase dialog for OpenSSH and X.
Damien Miller36884401999-12-26 12:26:21 +1100122Group: Applications/Internet
Damien Millerff649d82000-10-16 13:35:19 +1100123Requires: openssh = %{version}-%{release}
Damien Miller36884401999-12-26 12:26:21 +1100124Obsoletes: ssh-extras
Damien Miller36884401999-12-26 12:26:21 +1100125
Damien Miller36884401999-12-26 12:26:21 +1100126%package askpass-gnome
Damien Miller0c217b72001-09-15 21:01:41 +1000127Summary: A passphrase dialog for OpenSSH, X, and GNOME.
Damien Miller3f51bf51999-11-09 14:46:02 +1100128Group: Applications/Internet
Damien Millerff649d82000-10-16 13:35:19 +1100129Requires: openssh = %{version}-%{release}
Damien Miller36682061999-11-15 17:19:24 +1100130Obsoletes: ssh-extras
Damien Miller3f51bf51999-11-09 14:46:02 +1100131
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000132%description
Damien Millercfe4a892002-05-10 12:19:23 +1000133SSH (Secure SHell) is a program for logging into and executing
134commands on a remote machine. SSH is intended to replace rlogin and
135rsh, and to provide secure encrypted communications between two
136untrusted hosts over an insecure network. X11 connections and
137arbitrary TCP/IP ports can also be forwarded over the secure channel.
138
139OpenSSH is OpenBSD's version of the last free version of SSH, bringing
140it up to date in terms of security and features, as well as removing
141all patented algorithms to separate libraries.
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000142
Damien Miller36682061999-11-15 17:19:24 +1100143This package includes the core files necessary for both the OpenSSH
Damien Miller0c217b72001-09-15 21:01:41 +1000144client and server. To make this package useful, you should also
Damien Miller36682061999-11-15 17:19:24 +1100145install openssh-clients, openssh-server, or both.
146
147%description clients
Damien Millercfe4a892002-05-10 12:19:23 +1000148OpenSSH is a free version of SSH (Secure SHell), a program for logging
149into and executing commands on a remote machine. This package includes
150the clients necessary to make encrypted connections to SSH servers.
151You'll also need to install the openssh package on OpenSSH clients.
Damien Miller3f51bf51999-11-09 14:46:02 +1100152
153%description server
Damien Millercfe4a892002-05-10 12:19:23 +1000154OpenSSH is a free version of SSH (Secure SHell), a program for logging
155into and executing commands on a remote machine. This package contains
156the secure shell daemon (sshd). The sshd daemon allows SSH clients to
157securely connect to your SSH server. You also need to have the openssh
158package installed.
Damien Miller3f51bf51999-11-09 14:46:02 +1100159
Damien Miller36884401999-12-26 12:26:21 +1100160%description askpass
Damien Millercfe4a892002-05-10 12:19:23 +1000161OpenSSH is a free version of SSH (Secure SHell), a program for logging
162into and executing commands on a remote machine. This package contains
163an X11 passphrase dialog for OpenSSH.
Damien Miller36884401999-12-26 12:26:21 +1100164
Damien Millerf6adfa91999-12-26 13:08:15 +1100165%description askpass-gnome
Damien Millercfe4a892002-05-10 12:19:23 +1000166OpenSSH is a free version of SSH (Secure SHell), a program for logging
167into and executing commands on a remote machine. This package contains
168an X11 passphrase dialog for OpenSSH and the GNOME GUI desktop
169environment.
Damien Miller3f51bf51999-11-09 14:46:02 +1100170
Damien Millerff649d82000-10-16 13:35:19 +1100171%prep
172
Damien Miller969c07e2000-11-06 13:06:43 +1100173%if ! %{no_x11_askpass}
Damien Millerff649d82000-10-16 13:35:19 +1100174%setup -q -a 1
Damien Miller969c07e2000-11-06 13:06:43 +1100175%else
176%setup -q
177%endif
Damien Millerff649d82000-10-16 13:35:19 +1100178
179%build
Damien Millercfe4a892002-05-10 12:19:23 +1000180%if %{rescue}
181CFLAGS="$RPM_OPT_FLAGS -Os"; export CFLAGS
Damien Miller1c613242001-10-30 22:03:51 +1100182%endif
183
Damien Miller84938142004-01-23 16:30:03 +1100184%if %{kerberos5}
185K5DIR=`rpm -ql krb5-devel | grep include/krb5.h | sed 's,\/include\/krb5.h,,'`
186echo K5DIR=$K5DIR
187%endif
188
Damien Millerff649d82000-10-16 13:35:19 +1100189%configure \
Damien Millercfe4a892002-05-10 12:19:23 +1000190 --sysconfdir=%{_sysconfdir}/ssh \
Damien Millerff649d82000-10-16 13:35:19 +1100191 --libexecdir=%{_libexecdir}/openssh \
Damien Miller7948d932001-09-18 15:12:10 +1000192 --datadir=%{_datadir}/openssh \
Damien Millerff649d82000-10-16 13:35:19 +1100193 --with-tcp-wrappers \
Damien Millercfe4a892002-05-10 12:19:23 +1000194 --with-rsh=%{_bindir}/rsh \
Damien Millerb7cb9692002-05-13 13:26:57 +1000195 --with-default-path=/usr/local/bin:/bin:/usr/bin \
196 --with-superuser-path=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin \
Damien Millerd81c02d2002-05-13 13:30:17 +1000197 --with-privsep-path=%{_var}/empty/sshd \
Darren Tuckerdfe6d912003-10-07 17:40:56 +1000198 --with-md5-passwords \
Damien Millercfe4a892002-05-10 12:19:23 +1000199%if %{scard}
200 --with-smartcard \
201%endif
Damien Millercfe4a892002-05-10 12:19:23 +1000202%if %{rescue}
Darren Tuckerdfe6d912003-10-07 17:40:56 +1000203 --without-pam \
Damien Millercfe4a892002-05-10 12:19:23 +1000204%else
Damien Miller53baddb2002-06-21 16:42:41 +1000205 --with-pam \
Damien Millercfe4a892002-05-10 12:19:23 +1000206%endif
Damien Miller53baddb2002-06-21 16:42:41 +1000207%if %{kerberos5}
Damien Miller84938142004-01-23 16:30:03 +1100208 --with-kerberos5=$K5DIR \
Damien Millerc7d6d552002-06-21 17:12:24 +1000209%endif
Damien Millerff649d82000-10-16 13:35:19 +1100210
Damien Millerb7cb9692002-05-13 13:26:57 +1000211
Damien Miller3e292fa2001-03-12 14:47:30 +1100212%if %{static_libcrypto}
Damien Millercfe4a892002-05-10 12:19:23 +1000213perl -pi -e "s|-lcrypto|%{_libdir}/libcrypto.a|g" Makefile
Damien Miller3e292fa2001-03-12 14:47:30 +1100214%endif
215
Damien Millerff649d82000-10-16 13:35:19 +1100216make
217
218%if ! %{no_x11_askpass}
219pushd x11-ssh-askpass-%{aversion}
Damien Millercfe4a892002-05-10 12:19:23 +1000220%configure --libexecdir=%{_libexecdir}/openssh
Damien Miller01ebad02001-09-17 15:07:23 +1000221xmkmf -a
Damien Millerff649d82000-10-16 13:35:19 +1100222make
223popd
224%endif
225
Damien Miller005d4562002-09-05 16:53:20 +1000226# Define a variable to toggle gnome1/gtk2 building. This is necessary
227# because RPM doesn't handle nested %if statements.
228%if %{gtk2}
229 gtk2=yes
230%else
231 gtk2=no
232%endif
233
234%if ! %{no_gnome_askpass}
235pushd contrib
236if [ $gtk2 = yes ] ; then
Damien Millerd0875622002-09-30 11:09:54 +1000237 make gnome-ssh-askpass2
238 mv gnome-ssh-askpass2 gnome-ssh-askpass
Damien Miller005d4562002-09-05 16:53:20 +1000239else
Damien Millerd0875622002-09-30 11:09:54 +1000240 make gnome-ssh-askpass1
241 mv gnome-ssh-askpass1 gnome-ssh-askpass
Damien Miller005d4562002-09-05 16:53:20 +1000242fi
243popd
244%endif
245
Damien Millerff649d82000-10-16 13:35:19 +1100246%install
247rm -rf $RPM_BUILD_ROOT
Damien Millercfe4a892002-05-10 12:19:23 +1000248mkdir -p -m755 $RPM_BUILD_ROOT%{_sysconfdir}/ssh
249mkdir -p -m755 $RPM_BUILD_ROOT%{_libexecdir}/openssh
Damien Millerb7cb9692002-05-13 13:26:57 +1000250mkdir -p -m755 $RPM_BUILD_ROOT%{_var}/empty/sshd
Damien Millerff649d82000-10-16 13:35:19 +1100251
Damien Millercfe4a892002-05-10 12:19:23 +1000252make install DESTDIR=$RPM_BUILD_ROOT
Damien Millerff649d82000-10-16 13:35:19 +1100253
254install -d $RPM_BUILD_ROOT/etc/pam.d/
255install -d $RPM_BUILD_ROOT/etc/rc.d/init.d
256install -d $RPM_BUILD_ROOT%{_libexecdir}/openssh
Damien Millercfe4a892002-05-10 12:19:23 +1000257%if %{build6x}
258install -m644 contrib/redhat/sshd.pam.old $RPM_BUILD_ROOT/etc/pam.d/sshd
Ben Lindstrom008e2912001-02-23 04:45:15 +0000259%else
Damien Millercfe4a892002-05-10 12:19:23 +1000260install -m644 contrib/redhat/sshd.pam $RPM_BUILD_ROOT/etc/pam.d/sshd
Damien Miller070ca312001-02-12 09:34:17 +1100261%endif
Damien Millerff649d82000-10-16 13:35:19 +1100262install -m755 contrib/redhat/sshd.init $RPM_BUILD_ROOT/etc/rc.d/init.d/sshd
263
264%if ! %{no_x11_askpass}
Damien Miller73bb0582001-02-25 09:36:29 +1100265install -s x11-ssh-askpass-%{aversion}/x11-ssh-askpass $RPM_BUILD_ROOT%{_libexecdir}/openssh/x11-ssh-askpass
Damien Millercfe4a892002-05-10 12:19:23 +1000266ln -s x11-ssh-askpass $RPM_BUILD_ROOT%{_libexecdir}/openssh/ssh-askpass
Damien Millerff649d82000-10-16 13:35:19 +1100267%endif
268
269%if ! %{no_gnome_askpass}
Damien Miller73bb0582001-02-25 09:36:29 +1100270install -s contrib/gnome-ssh-askpass $RPM_BUILD_ROOT%{_libexecdir}/openssh/gnome-ssh-askpass
Damien Millerff649d82000-10-16 13:35:19 +1100271%endif
272
Damien Milleraeaf2be2002-09-30 11:39:22 +1000273%if ! %{scard}
274 rm -f $RPM_BUILD_ROOT/usr/share/openssh/Ssh.bin
275%endif
276
Damien Miller75d3b052003-05-12 18:15:49 +1000277%if ! %{no_gnome_askpass}
Damien Millercfe4a892002-05-10 12:19:23 +1000278install -m 755 -d $RPM_BUILD_ROOT%{_sysconfdir}/profile.d/
279install -m 755 contrib/redhat/gnome-ssh-askpass.csh $RPM_BUILD_ROOT%{_sysconfdir}/profile.d/
280install -m 755 contrib/redhat/gnome-ssh-askpass.sh $RPM_BUILD_ROOT%{_sysconfdir}/profile.d/
Damien Miller75d3b052003-05-12 18:15:49 +1000281%endif
Damien Millercfe4a892002-05-10 12:19:23 +1000282
Damien Millerff649d82000-10-16 13:35:19 +1100283perl -pi -e "s|$RPM_BUILD_ROOT||g" $RPM_BUILD_ROOT%{_mandir}/man*/*
284
285%clean
286rm -rf $RPM_BUILD_ROOT
287
Damien Millercfe4a892002-05-10 12:19:23 +1000288%triggerun server -- ssh-server
289if [ "$1" != 0 -a -r /var/run/sshd.pid ] ; then
290 touch /var/run/sshd.restart
Damien Millerff649d82000-10-16 13:35:19 +1100291fi
292
Damien Millercfe4a892002-05-10 12:19:23 +1000293%triggerun server -- openssh-server < 2.5.0p1
294# Count the number of HostKey and HostDsaKey statements we have.
295gawk 'BEGIN {IGNORECASE=1}
296 /^hostkey/ || /^hostdsakey/ {sawhostkey = sawhostkey + 1}
297 END {exit sawhostkey}' /etc/ssh/sshd_config
298# And if we only found one, we know the client was relying on the old default
299# behavior, which loaded the the SSH2 DSA host key when HostDsaKey wasn't
300# specified. Now that HostKey is used for both SSH1 and SSH2 keys, specifying
301# one nullifies the default, which would have loaded both.
302if [ $? -eq 1 ] ; then
303 echo HostKey /etc/ssh/ssh_host_rsa_key >> /etc/ssh/sshd_config
304 echo HostKey /etc/ssh/ssh_host_dsa_key >> /etc/ssh/sshd_config
305fi
306
307%triggerpostun server -- ssh-server
308if [ "$1" != 0 ] ; then
309 /sbin/chkconfig --add sshd
310 if test -f /var/run/sshd.restart ; then
311 rm -f /var/run/sshd.restart
312 /sbin/service sshd start > /dev/null 2>&1 || :
313 fi
314fi
315
316%pre server
317%{_sbindir}/groupadd -r -g %{sshd_gid} sshd 2>/dev/null || :
Damien Millerb7cb9692002-05-13 13:26:57 +1000318%{_sbindir}/useradd -d /var/empty/sshd -s /bin/false -u %{sshd_uid} \
Damien Millercfe4a892002-05-10 12:19:23 +1000319 -g sshd -M -r sshd 2>/dev/null || :
320
321%post server
322/sbin/chkconfig --add sshd
323
324%postun server
325/sbin/service sshd condrestart > /dev/null 2>&1 || :
326
Damien Millerff649d82000-10-16 13:35:19 +1100327%preun server
Damien Millercfe4a892002-05-10 12:19:23 +1000328if [ "$1" = 0 ]
329then
330 /sbin/service sshd stop > /dev/null 2>&1 || :
Damien Millerff649d82000-10-16 13:35:19 +1100331 /sbin/chkconfig --del sshd
332fi
333
334%files
335%defattr(-,root,root)
Damien Miller7691e5f2009-02-21 18:03:04 +1100336%doc CREDITS ChangeLog INSTALL LICENCE OVERVIEW README* PROTOCOL* TODO WARNING*
Damien Millerff649d82000-10-16 13:35:19 +1100337%attr(0755,root,root) %{_bindir}/scp
Damien Millerff649d82000-10-16 13:35:19 +1100338%attr(0644,root,root) %{_mandir}/man1/scp.1*
Damien Millercfe4a892002-05-10 12:19:23 +1000339%attr(0755,root,root) %dir %{_sysconfdir}/ssh
340%attr(0600,root,root) %config(noreplace) %{_sysconfdir}/ssh/moduli
341%if ! %{rescue}
342%attr(0755,root,root) %{_bindir}/ssh-keygen
343%attr(0644,root,root) %{_mandir}/man1/ssh-keygen.1*
Damien Millerff649d82000-10-16 13:35:19 +1100344%attr(0755,root,root) %dir %{_libexecdir}/openssh
Damien Miller53baddb2002-06-21 16:42:41 +1000345%attr(4711,root,root) %{_libexecdir}/openssh/ssh-keysign
346%attr(0644,root,root) %{_mandir}/man8/ssh-keysign.8*
Damien Millercfe4a892002-05-10 12:19:23 +1000347%endif
Damien Miller99b8feb2001-09-18 15:37:50 +1000348%if %{scard}
Damien Miller7948d932001-09-18 15:12:10 +1000349%attr(0755,root,root) %dir %{_datadir}/openssh
350%attr(0644,root,root) %{_datadir}/openssh/Ssh.bin
Damien Millerf2bd06c2001-09-18 15:33:07 +1000351%endif
Damien Millerff649d82000-10-16 13:35:19 +1100352
353%files clients
354%defattr(-,root,root)
Damien Miller53baddb2002-06-21 16:42:41 +1000355%attr(0755,root,root) %{_bindir}/ssh
Damien Millercfe4a892002-05-10 12:19:23 +1000356%attr(0644,root,root) %{_mandir}/man1/ssh.1*
Damien Miller53baddb2002-06-21 16:42:41 +1000357%attr(0644,root,root) %{_mandir}/man5/ssh_config.5*
Damien Millercfe4a892002-05-10 12:19:23 +1000358%attr(0644,root,root) %config(noreplace) %{_sysconfdir}/ssh/ssh_config
359%attr(-,root,root) %{_bindir}/slogin
360%attr(-,root,root) %{_mandir}/man1/slogin.1*
361%if ! %{rescue}
Damien Miller7e659de2002-10-03 12:08:19 +1000362%attr(2755,root,nobody) %{_bindir}/ssh-agent
Damien Millerff649d82000-10-16 13:35:19 +1100363%attr(0755,root,root) %{_bindir}/ssh-add
Damien Miller33804262001-02-04 23:20:18 +1100364%attr(0755,root,root) %{_bindir}/ssh-keyscan
365%attr(0755,root,root) %{_bindir}/sftp
Damien Millerff649d82000-10-16 13:35:19 +1100366%attr(0644,root,root) %{_mandir}/man1/ssh-agent.1*
367%attr(0644,root,root) %{_mandir}/man1/ssh-add.1*
Damien Miller33804262001-02-04 23:20:18 +1100368%attr(0644,root,root) %{_mandir}/man1/ssh-keyscan.1*
369%attr(0644,root,root) %{_mandir}/man1/sftp.1*
Damien Millercfe4a892002-05-10 12:19:23 +1000370%endif
Damien Millerff649d82000-10-16 13:35:19 +1100371
Damien Millercfe4a892002-05-10 12:19:23 +1000372%if ! %{rescue}
Damien Millerff649d82000-10-16 13:35:19 +1100373%files server
374%defattr(-,root,root)
Damien Millerb7cb9692002-05-13 13:26:57 +1000375%dir %attr(0111,root,root) %{_var}/empty/sshd
Damien Millerff649d82000-10-16 13:35:19 +1100376%attr(0755,root,root) %{_sbindir}/sshd
377%attr(0755,root,root) %{_libexecdir}/openssh/sftp-server
378%attr(0644,root,root) %{_mandir}/man8/sshd.8*
Damien Millerf299ff82008-06-26 16:01:56 +1000379%attr(0644,root,root) %{_mandir}/man5/moduli.5*
Damien Miller53baddb2002-06-21 16:42:41 +1000380%attr(0644,root,root) %{_mandir}/man5/sshd_config.5*
Damien Millerff649d82000-10-16 13:35:19 +1100381%attr(0644,root,root) %{_mandir}/man8/sftp-server.8*
Damien Millercfe4a892002-05-10 12:19:23 +1000382%attr(0755,root,root) %dir %{_sysconfdir}/ssh
383%attr(0600,root,root) %config(noreplace) %{_sysconfdir}/ssh/sshd_config
Damien Miller12eceb22001-10-31 10:31:13 +1100384%attr(0600,root,root) %config(noreplace) /etc/pam.d/sshd
Damien Millerff649d82000-10-16 13:35:19 +1100385%attr(0755,root,root) %config /etc/rc.d/init.d/sshd
Damien Millercfe4a892002-05-10 12:19:23 +1000386%endif
Damien Millerff649d82000-10-16 13:35:19 +1100387
388%if ! %{no_x11_askpass}
389%files askpass
390%defattr(-,root,root)
391%doc x11-ssh-askpass-%{aversion}/README
392%doc x11-ssh-askpass-%{aversion}/ChangeLog
393%doc x11-ssh-askpass-%{aversion}/SshAskpass*.ad
394%attr(0755,root,root) %{_libexecdir}/openssh/ssh-askpass
395%attr(0755,root,root) %{_libexecdir}/openssh/x11-ssh-askpass
396%endif
397
398%if ! %{no_gnome_askpass}
399%files askpass-gnome
400%defattr(-,root,root)
Damien Millercfe4a892002-05-10 12:19:23 +1000401%attr(0755,root,root) %config %{_sysconfdir}/profile.d/gnome-ssh-askpass.*
Damien Millerff649d82000-10-16 13:35:19 +1100402%attr(0755,root,root) %{_libexecdir}/openssh/gnome-ssh-askpass
403%endif
404
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000405%changelog
Damien Millerdba59502003-06-02 17:43:19 +1000406* Mon Jun 2 2003 Damien Miller <djm@mindrot.org>
Damien Millera8e06ce2003-11-21 23:48:55 +1100407- Remove noip6 option. This may be controlled at run-time in client config
Damien Millerdba59502003-06-02 17:43:19 +1000408 file using new AddressFamily directive
409
Damien Miller75d3b052003-05-12 18:15:49 +1000410* Mon May 12 2003 Damien Miller <djm@mindrot.org>
411- Don't install profile.d scripts when not building with GNOME/GTK askpass
412 (patch from bet@rahul.net)
413
Damien Miller7e659de2002-10-03 12:08:19 +1000414* Wed Oct 01 2002 Damien Miller <djm@mindrot.org>
415- Install ssh-agent setgid nobody to prevent ptrace() key theft attacks
416
Damien Millerd0875622002-09-30 11:09:54 +1000417* Mon Sep 30 2002 Damien Miller <djm@mindrot.org>
418- Use contrib/ Makefile for building askpass programs
419
Damien Miller53baddb2002-06-21 16:42:41 +1000420* Fri Jun 21 2002 Damien Miller <djm@mindrot.org>
421- Merge in spec changes from seba@iq.pl (Sebastian Pachuta)
422- Add new {ssh,sshd}_config.5 manpages
423- Add new ssh-keysign program and remove setuid from ssh client
424
Damien Millercfe4a892002-05-10 12:19:23 +1000425* Fri May 10 2002 Damien Miller <djm@mindrot.org>
426- Merge in spec changes from RedHat, reorgansie a little
427- Add Privsep user, group and directory
428
429* Thu Mar 7 2002 Nalin Dahyabhai <nalin@redhat.com> 3.1p1-2
430- bump and grind (through the build system)
431
432* Thu Mar 7 2002 Nalin Dahyabhai <nalin@redhat.com> 3.1p1-1
433- require sharutils for building (mindrot #137)
434- require db1-devel only when building for 6.x (#55105), which probably won't
435 work anyway (3.1 requires OpenSSL 0.9.6 to build), but what the heck
436- require pam-devel by file (not by package name) again
437- add Markus's patch to compile with OpenSSL 0.9.5a (from
438 http://bugzilla.mindrot.org/show_bug.cgi?id=141) and apply it if we're
439 building for 6.x
440
441* Thu Mar 7 2002 Nalin Dahyabhai <nalin@redhat.com> 3.1p1-0
442- update to 3.1p1
443
444* Tue Mar 5 2002 Nalin Dahyabhai <nalin@redhat.com> SNAP-20020305
445- update to SNAP-20020305
446- drop debug patch, fixed upstream
447
448* Wed Feb 20 2002 Nalin Dahyabhai <nalin@redhat.com> SNAP-20020220
449- update to SNAP-20020220 for testing purposes (you've been warned, if there's
450 anything to be warned about, gss patches won't apply, I don't mind)
451
452* Wed Feb 13 2002 Nalin Dahyabhai <nalin@redhat.com> 3.0.2p1-3
453- add patches from Simon Wilkinson and Nicolas Williams for GSSAPI key
454 exchange, authentication, and named key support
455
456* Wed Jan 23 2002 Nalin Dahyabhai <nalin@redhat.com> 3.0.2p1-2
457- remove dependency on db1-devel, which has just been swallowed up whole
458 by gnome-libs-devel
459
460* Sun Dec 29 2001 Nalin Dahyabhai <nalin@redhat.com>
461- adjust build dependencies so that build6x actually works right (fix
462 from Hugo van der Kooij)
463
464* Tue Dec 4 2001 Nalin Dahyabhai <nalin@redhat.com> 3.0.2p1-1
465- update to 3.0.2p1
466
467* Fri Nov 16 2001 Nalin Dahyabhai <nalin@redhat.com> 3.0.1p1-1
468- update to 3.0.1p1
469
470* Tue Nov 13 2001 Nalin Dahyabhai <nalin@redhat.com>
471- update to current CVS (not for use in distribution)
472
473* Thu Nov 8 2001 Nalin Dahyabhai <nalin@redhat.com> 3.0p1-1
474- merge some of Damien Miller <djm@mindrot.org> changes from the upstream
475 3.0p1 spec file and init script
476
477* Wed Nov 7 2001 Nalin Dahyabhai <nalin@redhat.com>
478- update to 3.0p1
479- update to x11-ssh-askpass 1.2.4.1
480- change build dependency on a file from pam-devel to the pam-devel package
481- replace primes with moduli
482
483* Thu Sep 27 2001 Nalin Dahyabhai <nalin@redhat.com> 2.9p2-9
484- incorporate fix from Markus Friedl's advisory for IP-based authorization bugs
485
486* Thu Sep 13 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.9p2-8
487- Merge changes to rescue build from current sysadmin survival cd
488
489* Thu Sep 6 2001 Nalin Dahyabhai <nalin@redhat.com> 2.9p2-7
490- fix scp's server's reporting of file sizes, and build with the proper
491 preprocessor define to get large-file capable open(), stat(), etc.
492 (sftp has been doing this correctly all along) (#51827)
493- configure without --with-ipv4-default on RHL 7.x and newer (#45987,#52247)
494- pull cvs patch to fix support for /etc/nologin for non-PAM logins (#47298)
495- mark profile.d scriptlets as config files (#42337)
496- refer to Jason Stone's mail for zsh workaround for exit-hanging quasi-bug
497- change a couple of log() statements to debug() statements (#50751)
498- pull cvs patch to add -t flag to sshd (#28611)
499- clear fd_sets correctly (one bit per FD, not one byte per FD) (#43221)
500
501* Mon Aug 20 2001 Nalin Dahyabhai <nalin@redhat.com> 2.9p2-6
502- add db1-devel as a BuildPrerequisite (noted by Hans Ecke)
503
504* Thu Aug 16 2001 Nalin Dahyabhai <nalin@redhat.com>
505- pull cvs patch to fix remote port forwarding with protocol 2
506
507* Thu Aug 9 2001 Nalin Dahyabhai <nalin@redhat.com>
508- pull cvs patch to add session initialization to no-pty sessions
509- pull cvs patch to not cut off challengeresponse auth needlessly
510- refuse to do X11 forwarding if xauth isn't there, handy if you enable
511 it by default on a system that doesn't have X installed (#49263)
512
513* Wed Aug 8 2001 Nalin Dahyabhai <nalin@redhat.com>
514- don't apply patches to code we don't intend to build (spotted by Matt Galgoci)
515
516* Mon Aug 6 2001 Nalin Dahyabhai <nalin@redhat.com>
517- pass OPTIONS correctly to initlog (#50151)
518
519* Wed Jul 25 2001 Nalin Dahyabhai <nalin@redhat.com>
520- switch to x11-ssh-askpass 1.2.2
521
522* Wed Jul 11 2001 Nalin Dahyabhai <nalin@redhat.com>
523- rebuild in new environment
524
525* Mon Jun 25 2001 Nalin Dahyabhai <nalin@redhat.com>
526- disable the gssapi patch
527
528* Mon Jun 18 2001 Nalin Dahyabhai <nalin@redhat.com>
529- update to 2.9p2
530- refresh to a new version of the gssapi patch
531
532* Thu Jun 7 2001 Nalin Dahyabhai <nalin@redhat.com>
533- change Copyright: BSD to License: BSD
534- add Markus Friedl's unverified patch for the cookie file deletion problem
535 so that we can verify it
536- drop patch to check if xauth is present (was folded into cookie patch)
537- don't apply gssapi patches for the errata candidate
538- clear supplemental groups list at startup
539
540* Fri May 25 2001 Nalin Dahyabhai <nalin@redhat.com>
541- fix an error parsing the new default sshd_config
542- add a fix from Markus Friedl (via openssh-unix-dev) for ssh-keygen not
543 dealing with comments right
544
545* Thu May 24 2001 Nalin Dahyabhai <nalin@redhat.com>
546- add in Simon Wilkinson's GSSAPI patch to give it some testing in-house,
547 to be removed before the next beta cycle because it's a big departure
548 from the upstream version
549
550* Thu May 3 2001 Nalin Dahyabhai <nalin@redhat.com>
551- finish marking strings in the init script for translation
552- modify init script to source /etc/sysconfig/sshd and pass $OPTIONS to sshd
553 at startup (change merged from openssh.com init script, originally by
554 Pekka Savola)
555- refuse to do X11 forwarding if xauth isn't there, handy if you enable
556 it by default on a system that doesn't have X installed
557
558* Wed May 2 2001 Nalin Dahyabhai <nalin@redhat.com>
559- update to 2.9
560- drop various patches that came from or went upstream or to or from CVS
561
562* Wed Apr 18 2001 Nalin Dahyabhai <nalin@redhat.com>
563- only require initscripts 5.00 on 6.2 (reported by Peter Bieringer)
564
565* Sun Apr 8 2001 Preston Brown <pbrown@redhat.com>
566- remove explicit openssl requirement, fixes builddistro issue
Damien Millera8e06ce2003-11-21 23:48:55 +1100567- make initscript stop() function wait until sshd really dead to avoid
Damien Millercfe4a892002-05-10 12:19:23 +1000568 races in condrestart
569
570* Mon Apr 2 2001 Nalin Dahyabhai <nalin@redhat.com>
571- mention that challengereponse supports PAM, so disabling password doesn't
572 limit users to pubkey and rsa auth (#34378)
573- bypass the daemon() function in the init script and call initlog directly,
574 because daemon() won't start a daemon it detects is already running (like
575 open connections)
576- require the version of openssl we had when we were built
577
578* Fri Mar 23 2001 Nalin Dahyabhai <nalin@redhat.com>
579- make do_pam_setcred() smart enough to know when to establish creds and
580 when to reinitialize them
581- add in a couple of other fixes from Damien for inclusion in the errata
582
583* Thu Mar 22 2001 Nalin Dahyabhai <nalin@redhat.com>
584- update to 2.5.2p2
585- call setcred() again after initgroups, because the "creds" could actually
586 be group memberships
587
588* Tue Mar 20 2001 Nalin Dahyabhai <nalin@redhat.com>
589- update to 2.5.2p1 (includes endianness fixes in the rijndael implementation)
590- don't enable challenge-response by default until we find a way to not
591 have too many userauth requests (we may make up to six pubkey and up to
592 three password attempts as it is)
593- remove build dependency on rsh to match openssh.com's packages more closely
594
595* Sat Mar 3 2001 Nalin Dahyabhai <nalin@redhat.com>
596- remove dependency on openssl -- would need to be too precise
597
598* Fri Mar 2 2001 Nalin Dahyabhai <nalin@redhat.com>
599- rebuild in new environment
600
601* Mon Feb 26 2001 Nalin Dahyabhai <nalin@redhat.com>
602- Revert the patch to move pam_open_session.
603- Init script and spec file changes from Pekka Savola. (#28750)
604- Patch sftp to recognize '-o protocol' arguments. (#29540)
605
606* Thu Feb 22 2001 Nalin Dahyabhai <nalin@redhat.com>
607- Chuck the closing patch.
608- Add a trigger to add host keys for protocol 2 to the config file, now that
609 configuration file syntax requires us to specify it with HostKey if we
610 specify any other HostKey values, which we do.
611
612* Tue Feb 20 2001 Nalin Dahyabhai <nalin@redhat.com>
613- Redo patch to move pam_open_session after the server setuid()s to the user.
614- Rework the nopam patch to use be picked up by autoconf.
615
616* Mon Feb 19 2001 Nalin Dahyabhai <nalin@redhat.com>
617- Update for 2.5.1p1.
618- Add init script mods from Pekka Savola.
619- Tweak the init script to match the CVS contrib script more closely.
620- Redo patch to ssh-add to try to adding both identity and id_dsa to also try
621 adding id_rsa.
622
623* Fri Feb 16 2001 Nalin Dahyabhai <nalin@redhat.com>
624- Update for 2.5.0p1.
625- Use $RPM_OPT_FLAGS instead of -O when building gnome-ssh-askpass
626- Resync with parts of Damien Miller's openssh.spec from CVS, including
627 update of x11 askpass to 1.2.0.
628- Only require openssl (don't prereq) because we generate keys in the init
629 script now.
630
631* Tue Feb 13 2001 Nalin Dahyabhai <nalin@redhat.com>
632- Don't open a PAM session until we've forked and become the user (#25690).
633- Apply Andrew Bartlett's patch for letting pam_authenticate() know which
634 host the user is attempting a login from.
635- Resync with parts of Damien Miller's openssh.spec from CVS.
636- Don't expose KbdInt responses in debug messages (from CVS).
637- Detect and handle errors in rsa_{public,private}_decrypt (from CVS).
638
639* Wed Feb 7 2001 Trond Eivind Glomsrxd <teg@redhat.com>
640- i18n-tweak to initscript.
641
642* Tue Jan 23 2001 Nalin Dahyabhai <nalin@redhat.com>
643- More gettextizing.
644- Close all files after going into daemon mode (needs more testing).
645- Extract patch from CVS to handle auth banners (in the client).
646- Extract patch from CVS to handle compat weirdness.
647
648* Fri Jan 19 2001 Nalin Dahyabhai <nalin@redhat.com>
649- Finish with the gettextizing.
650
651* Thu Jan 18 2001 Nalin Dahyabhai <nalin@redhat.com>
652- Fix a bug in auth2-pam.c (#23877)
653- Gettextize the init script.
654
655* Wed Dec 20 2000 Nalin Dahyabhai <nalin@redhat.com>
656- Incorporate a switch for using PAM configs for 6.x, just in case.
657
658* Tue Dec 5 2000 Nalin Dahyabhai <nalin@redhat.com>
659- Incorporate Bero's changes for a build specifically for rescue CDs.
660
661* Wed Nov 29 2000 Nalin Dahyabhai <nalin@redhat.com>
662- Don't treat pam_setcred() failure as fatal unless pam_authenticate() has
663 succeeded, to allow public-key authentication after a failure with "none"
664 authentication. (#21268)
665
666* Tue Nov 28 2000 Nalin Dahyabhai <nalin@redhat.com>
667- Update to x11-askpass 1.1.1. (#21301)
668- Don't second-guess fixpaths, which causes paths to get fixed twice. (#21290)
669
670* Mon Nov 27 2000 Nalin Dahyabhai <nalin@redhat.com>
671- Merge multiple PAM text messages into subsequent prompts when possible when
672 doing keyboard-interactive authentication.
673
674* Sun Nov 26 2000 Nalin Dahyabhai <nalin@redhat.com>
675- Disable the built-in MD5 password support. We're using PAM.
676- Take a crack at doing keyboard-interactive authentication with PAM, and
677 enable use of it in the default client configuration so that the client
678 will try it when the server disallows password authentication.
679- Build with debugging flags. Build root policies strip all binaries anyway.
680
681* Tue Nov 21 2000 Nalin Dahyabhai <nalin@redhat.com>
682- Use DESTDIR instead of %%makeinstall.
683- Remove /usr/X11R6/bin from the path-fixing patch.
684
685* Mon Nov 20 2000 Nalin Dahyabhai <nalin@redhat.com>
686- Add the primes file from the latest snapshot to the main package (#20884).
687- Add the dev package to the prereq list (#19984).
688- Remove the default path and mimic login's behavior in the server itself.
689
690* Fri Nov 17 2000 Nalin Dahyabhai <nalin@redhat.com>
691- Resync with conditional options in Damien Miller's .spec file for an errata.
692- Change libexecdir from %%{_libexecdir}/ssh to %%{_libexecdir}/openssh.
693
694* Tue Nov 7 2000 Nalin Dahyabhai <nalin@redhat.com>
695- Update to OpenSSH 2.3.0p1.
696- Update to x11-askpass 1.1.0.
697- Enable keyboard-interactive authentication.
698
699* Mon Oct 30 2000 Nalin Dahyabhai <nalin@redhat.com>
700- Update to ssh-askpass-x11 1.0.3.
701- Change authentication related messages to be private (#19966).
702
703* Tue Oct 10 2000 Nalin Dahyabhai <nalin@redhat.com>
704- Patch ssh-keygen to be able to list signatures for DSA public key files
705 it generates.
706
707* Thu Oct 5 2000 Nalin Dahyabhai <nalin@redhat.com>
708- Add BuildPreReq on /usr/include/security/pam_appl.h to be sure we always
709 build PAM authentication in.
710- Try setting SSH_ASKPASS if gnome-ssh-askpass is installed.
711- Clean out no-longer-used patches.
712- Patch ssh-add to try to add both identity and id_dsa, and to error only
713 when neither exists.
714
715* Mon Oct 2 2000 Nalin Dahyabhai <nalin@redhat.com>
716- Update x11-askpass to 1.0.2. (#17835)
717- Add BuildPreReqs for /bin/login and /usr/bin/rsh so that configure will
718 always find them in the right place. (#17909)
719- Set the default path to be the same as the one supplied by /bin/login, but
720 add /usr/X11R6/bin. (#17909)
721- Try to handle obsoletion of ssh-server more cleanly. Package names
722 are different, but init script name isn't. (#17865)
723
724* Wed Sep 6 2000 Nalin Dahyabhai <nalin@redhat.com>
725- Update to 2.2.0p1. (#17835)
726- Tweak the init script to allow proper restarting. (#18023)
727
728* Wed Aug 23 2000 Nalin Dahyabhai <nalin@redhat.com>
729- Update to 20000823 snapshot.
730- Change subpackage requirements from %%{version} to %%{version}-%%{release}
731- Back out the pipe patch.
732
733* Mon Jul 17 2000 Nalin Dahyabhai <nalin@redhat.com>
734- Update to 2.1.1p4, which includes fixes for config file parsing problems.
735- Move the init script back.
736- Add Damien's quick fix for wackiness.
737
738* Wed Jul 12 2000 Nalin Dahyabhai <nalin@redhat.com>
739- Update to 2.1.1p3, which includes fixes for X11 forwarding and strtok().
740
741* Thu Jul 6 2000 Nalin Dahyabhai <nalin@redhat.com>
742- Move condrestart to server postun.
743- Move key generation to init script.
744- Actually use the right patch for moving the key generation to the init script.
745- Clean up the init script a bit.
746
747* Wed Jul 5 2000 Nalin Dahyabhai <nalin@redhat.com>
748- Fix X11 forwarding, from mail post by Chan Shih-Ping Richard.
749
750* Sun Jul 2 2000 Nalin Dahyabhai <nalin@redhat.com>
751- Update to 2.1.1p2.
752- Use of strtok() considered harmful.
753
754* Sat Jul 1 2000 Nalin Dahyabhai <nalin@redhat.com>
755- Get the build root out of the man pages.
756
757* Thu Jun 29 2000 Nalin Dahyabhai <nalin@redhat.com>
758- Add and use condrestart support in the init script.
759- Add newer initscripts as a prereq.
760
761* Tue Jun 27 2000 Nalin Dahyabhai <nalin@redhat.com>
762- Build in new environment (release 2)
763- Move -clients subpackage to Applications/Internet group
764
765* Fri Jun 9 2000 Nalin Dahyabhai <nalin@redhat.com>
766- Update to 2.2.1p1
767
768* Sat Jun 3 2000 Nalin Dahyabhai <nalin@redhat.com>
769- Patch to build with neither RSA nor RSAref.
770- Miscellaneous FHS-compliance tweaks.
771- Fix for possibly-compressed man pages.
772
Damien Millerddaffa42000-03-15 12:31:18 +1100773* Wed Mar 15 2000 Damien Miller <djm@ibs.com.au>
774- Updated for new location
775- Updated for new gnome-ssh-askpass build
Damien Millercfe4a892002-05-10 12:19:23 +1000776
Damien Miller36884401999-12-26 12:26:21 +1100777* Sun Dec 26 1999 Damien Miller <djm@mindrot.org>
778- Added Jim Knoble's <jmknoble@pobox.com> askpass
Damien Millercfe4a892002-05-10 12:19:23 +1000779
Damien Miller36682061999-11-15 17:19:24 +1100780* Mon Nov 15 1999 Damien Miller <djm@mindrot.org>
781- Split subpackages further based on patch from jim knoble <jmknoble@pobox.com>
Damien Millercfe4a892002-05-10 12:19:23 +1000782
Damien Miller38c60881999-11-13 13:09:31 +1100783* Sat Nov 13 1999 Damien Miller <djm@mindrot.org>
Damien Millerc6d5ce81999-11-15 16:01:07 +1100784- Added 'Obsoletes' directives
Damien Millercfe4a892002-05-10 12:19:23 +1000785
Damien Miller742d2cb1999-11-09 14:28:26 +1100786* Tue Nov 09 1999 Damien Miller <djm@ibs.com.au>
787- Use make install
Damien Miller3f51bf51999-11-09 14:46:02 +1100788- Subpackages
Damien Millercfe4a892002-05-10 12:19:23 +1000789
Damien Miller356a0b01999-11-08 15:30:59 +1100790* Mon Nov 08 1999 Damien Miller <djm@ibs.com.au>
791- Added links for slogin
792- Fixed perms on manpages
Damien Millercfe4a892002-05-10 12:19:23 +1000793
Damien Miller2bbb9d01999-10-30 09:46:20 +1000794* Sat Oct 30 1999 Damien Miller <djm@ibs.com.au>
795- Renamed init script
Damien Millercfe4a892002-05-10 12:19:23 +1000796
Damien Miller070f7a11999-10-29 10:29:29 +1000797* Fri Oct 29 1999 Damien Miller <djm@ibs.com.au>
798- Back to old binary names
Damien Millercfe4a892002-05-10 12:19:23 +1000799
Damien Miller06230761999-10-28 14:03:14 +1000800* Thu Oct 28 1999 Damien Miller <djm@ibs.com.au>
801- Use autoconf
802- New binary names
Damien Millercfe4a892002-05-10 12:19:23 +1000803
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000804* Wed Oct 27 1999 Damien Miller <djm@ibs.com.au>
805- Initial RPMification, based on Jan "Yenya" Kasprzak's <kas@fi.muni.cz> spec.