diff options
author | Damien Miller <djm@mindrot.org> | 1999-11-23 10:11:29 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 1999-11-23 10:11:29 +1100 |
commit | 294df785b8f67a5890d1e49ba883d530cdfb534c (patch) | |
tree | 60e56078288ec6b1109aa9aaf0cd0d856eb460f7 /packages/redhat | |
parent | 24e83aa312616f07995241c1529291a3e01ae3bf (diff) |
- Added SuSE package files from Chris Saia <csaia@wtower.com>
- Restructured package-related files under packages/
- Added generic PAM config
Diffstat (limited to 'packages/redhat')
-rw-r--r-- | packages/redhat/openssh.spec | 185 | ||||
-rwxr-xr-x | packages/redhat/sshd.init | 50 | ||||
-rw-r--r-- | packages/redhat/sshd.pam | 7 |
3 files changed, 242 insertions, 0 deletions
diff --git a/packages/redhat/openssh.spec b/packages/redhat/openssh.spec new file mode 100644 index 000000000..870ffd8a3 --- /dev/null +++ b/packages/redhat/openssh.spec | |||
@@ -0,0 +1,185 @@ | |||
1 | Summary: OpenSSH free Secure Shell (SSH) implementation | ||
2 | Name: openssh | ||
3 | Version: 1.2pre14 | ||
4 | Release: 1 | ||
5 | Packager: Damien Miller <djm@ibs.com.au> | ||
6 | Source0: openssh-%{version}.tar.gz | ||
7 | Copyright: BSD | ||
8 | Group: Applications/Internet | ||
9 | BuildRoot: /tmp/openssh-%{version}-buildroot | ||
10 | Obsoletes: ssh | ||
11 | |||
12 | %package clients | ||
13 | Summary: OpenSSH Secure Shell protocol clients | ||
14 | Requires: openssh | ||
15 | Group: System Environment/Daemons | ||
16 | Obsoletes: ssh-clients | ||
17 | |||
18 | %package server | ||
19 | Summary: OpenSSH Secure Shell protocol server (sshd) | ||
20 | Requires: openssh chkconfig >= 0.9 | ||
21 | Group: System Environment/Daemons | ||
22 | Obsoletes: ssh-server | ||
23 | |||
24 | %package askpass | ||
25 | Summary: OpenSSH GNOME passphrase dialog | ||
26 | Group: Applications/Internet | ||
27 | Requires: openssh | ||
28 | Obsoletes: ssh-extras | ||
29 | Obsoletes: ssh-askpass | ||
30 | |||
31 | %description | ||
32 | Ssh (Secure Shell) a program for logging into a remote machine and for | ||
33 | executing commands in a remote machine. It is intended to replace | ||
34 | rlogin and rsh, and provide secure encrypted communications between | ||
35 | two untrusted hosts over an insecure network. X11 connections and | ||
36 | arbitrary TCP/IP ports can also be forwarded over the secure channel. | ||
37 | |||
38 | OpenSSH is OpenBSD's rework of the last free version of SSH, bringing it | ||
39 | up to date in terms of security and features, as well as removing all | ||
40 | patented algorithms to seperate libraries (OpenSSL). | ||
41 | |||
42 | This package includes the core files necessary for both the OpenSSH | ||
43 | client and server. To make this package useful, you should also | ||
44 | install openssh-clients, openssh-server, or both. | ||
45 | |||
46 | %description clients | ||
47 | Ssh (Secure Shell) a program for logging into a remote machine and for | ||
48 | executing commands in a remote machine. It is intended to replace | ||
49 | rlogin and rsh, and provide secure encrypted communications between | ||
50 | two untrusted hosts over an insecure network. X11 connections and | ||
51 | arbitrary TCP/IP ports can also be forwarded over the secure channel. | ||
52 | |||
53 | OpenSSH is OpenBSD's rework of the last free version of SSH, bringing it | ||
54 | up to date in terms of security and features, as well as removing all | ||
55 | patented algorithms to seperate libraries (OpenSSL). | ||
56 | |||
57 | This package includes the clients necessary to make encrypted connections | ||
58 | to SSH servers. | ||
59 | |||
60 | %description server | ||
61 | Ssh (Secure Shell) a program for logging into a remote machine and for | ||
62 | executing commands in a remote machine. It is intended to replace | ||
63 | rlogin and rsh, and provide secure encrypted communications between | ||
64 | two untrusted hosts over an insecure network. X11 connections and | ||
65 | arbitrary TCP/IP ports can also be forwarded over the secure channel. | ||
66 | |||
67 | OpenSSH is OpenBSD's rework of the last free version of SSH, bringing it | ||
68 | up to date in terms of security and features, as well as removing all | ||
69 | patented algorithms to seperate libraries (OpenSSL). | ||
70 | |||
71 | This package contains the secure shell daemon. The sshd is the server | ||
72 | part of the secure shell protocol and allows ssh clients to connect to | ||
73 | your host. | ||
74 | |||
75 | %description askpass | ||
76 | Ssh (Secure Shell) a program for logging into a remote machine and for | ||
77 | executing commands in a remote machine. It is intended to replace | ||
78 | rlogin and rsh, and provide secure encrypted communications between | ||
79 | two untrusted hosts over an insecure network. X11 connections and | ||
80 | arbitrary TCP/IP ports can also be forwarded over the secure channel. | ||
81 | |||
82 | OpenSSH is OpenBSD's rework of the last free version of SSH, bringing it | ||
83 | up to date in terms of security and features, as well as removing all | ||
84 | patented algorithms to seperate libraries (OpenSSL). | ||
85 | |||
86 | This package contains the GNOME passphrase dialog. | ||
87 | |||
88 | %changelog | ||
89 | * Mon Nov 15 1999 Damien Miller <djm@mindrot.org> | ||
90 | - Split subpackages further based on patch from jim knoble <jmknoble@pobox.com> | ||
91 | * Sat Nov 13 1999 Damien Miller <djm@mindrot.org> | ||
92 | - Added 'Obsoletes' directives | ||
93 | * Tue Nov 09 1999 Damien Miller <djm@ibs.com.au> | ||
94 | - Use make install | ||
95 | - Subpackages | ||
96 | * Mon Nov 08 1999 Damien Miller <djm@ibs.com.au> | ||
97 | - Added links for slogin | ||
98 | - Fixed perms on manpages | ||
99 | * Sat Oct 30 1999 Damien Miller <djm@ibs.com.au> | ||
100 | - Renamed init script | ||
101 | * Fri Oct 29 1999 Damien Miller <djm@ibs.com.au> | ||
102 | - Back to old binary names | ||
103 | * Thu Oct 28 1999 Damien Miller <djm@ibs.com.au> | ||
104 | - Use autoconf | ||
105 | - New binary names | ||
106 | * Wed Oct 27 1999 Damien Miller <djm@ibs.com.au> | ||
107 | - Initial RPMification, based on Jan "Yenya" Kasprzak's <kas@fi.muni.cz> spec. | ||
108 | |||
109 | %prep | ||
110 | |||
111 | %setup | ||
112 | |||
113 | %build | ||
114 | |||
115 | CFLAGS="$RPM_OPT_FLAGS" \ | ||
116 | ./configure --prefix=/usr --sysconfdir=/etc/ssh --with-gnome-askpass | ||
117 | |||
118 | make | ||
119 | |||
120 | %install | ||
121 | rm -rf $RPM_BUILD_ROOT | ||
122 | make install prefix="$RPM_BUILD_ROOT/usr" | ||
123 | |||
124 | install -d $RPM_BUILD_ROOT/etc/ssh | ||
125 | install -d $RPM_BUILD_ROOT/etc/pam.d/ | ||
126 | install -d $RPM_BUILD_ROOT/etc/rc.d/init.d | ||
127 | install -m644 packages/redhat/sshd.pam $RPM_BUILD_ROOT/etc/pam.d/sshd | ||
128 | install -m755 packages/redhat/sshd.init $RPM_BUILD_ROOT/etc/rc.d/init.d/sshd | ||
129 | install -m600 ssh_config $RPM_BUILD_ROOT/etc/ssh/ssh_config | ||
130 | install -m600 sshd_config $RPM_BUILD_ROOT/etc/ssh/sshd_config | ||
131 | |||
132 | %clean | ||
133 | rm -rf $RPM_BUILD_ROOT | ||
134 | |||
135 | %post server | ||
136 | /sbin/chkconfig --add sshd | ||
137 | if [ ! -f /etc/ssh/ssh_host_key -o ! -s /etc/ssh/ssh_host_key ]; then | ||
138 | /usr/bin/ssh-keygen -b 1024 -f /etc/ssh/ssh_host_key -N '' >&2 | ||
139 | fi | ||
140 | if test -r /var/run/sshd.pid | ||
141 | then | ||
142 | /etc/rc.d/init.d/sshd restart >&2 | ||
143 | fi | ||
144 | |||
145 | %preun server | ||
146 | if [ "$1" = 0 ] | ||
147 | then | ||
148 | /etc/rc.d/init.d/sshd stop >&2 | ||
149 | /sbin/chkconfig --del sshd | ||
150 | fi | ||
151 | |||
152 | %files | ||
153 | %defattr(-,root,root) | ||
154 | %doc ChangeLog OVERVIEW COPYING.Ylonen README README.Ylonen INSTALL UPGRADING | ||
155 | %attr(0755,root,root) /usr/bin/ssh-keygen | ||
156 | %attr(0755,root,root) /usr/bin/scp | ||
157 | %attr(0644,root,root) /usr/man/man1/ssh-keygen.1 | ||
158 | %attr(0644,root,root) /usr/man/man1/scp.1 | ||
159 | %attr(0755,root,root) %dir /etc/ssh | ||
160 | |||
161 | %files clients | ||
162 | %defattr(-,root,root) | ||
163 | %attr(4755,root,root) /usr/bin/ssh | ||
164 | %attr(0755,root,root) /usr/bin/ssh-agent | ||
165 | %attr(0755,root,root) /usr/bin/ssh-add | ||
166 | %attr(0644,root,root) /usr/man/man1/ssh.1 | ||
167 | %attr(0644,root,root) /usr/man/man1/ssh-agent.1 | ||
168 | %attr(0644,root,root) /usr/man/man1/ssh-add.1 | ||
169 | %attr(0644,root,root) %config(noreplace) /etc/ssh/ssh_config | ||
170 | %attr(-,root,root) /usr/bin/slogin | ||
171 | %attr(-,root,root) /usr/man/man1/slogin.1 | ||
172 | |||
173 | %files server | ||
174 | %defattr(-,root,root) | ||
175 | %attr(0755,root,root) /usr/sbin/sshd | ||
176 | %attr(0644,root,root) /usr/man/man8/sshd.8 | ||
177 | %attr(0600,root,root) %config(noreplace) /etc/ssh/sshd_config | ||
178 | %attr(0600,root,root) %config(noreplace) /etc/pam.d/sshd | ||
179 | %attr(0755,root,root) %config /etc/rc.d/init.d/sshd | ||
180 | |||
181 | %files askpass | ||
182 | %defattr(-,root,root) | ||
183 | %attr(0755,root,root) /usr/libexec/ssh/ssh-askpass | ||
184 | %attr(0755,root,root) %dir /usr/libexec/ssh | ||
185 | |||
diff --git a/packages/redhat/sshd.init b/packages/redhat/sshd.init new file mode 100755 index 000000000..5e9194899 --- /dev/null +++ b/packages/redhat/sshd.init | |||
@@ -0,0 +1,50 @@ | |||
1 | #!/bin/bash | ||
2 | |||
3 | # Init file for OpenSSH server daemon | ||
4 | # | ||
5 | # chkconfig: 2345 55 25 | ||
6 | # description: OpenSSH server daemon | ||
7 | # | ||
8 | # processname: sshd | ||
9 | # config: /etc/ssh/ssh_host_key | ||
10 | # config: /etc/ssh/ssh_host_key.pub | ||
11 | # config: /etc/ssh/ssh_random_seed | ||
12 | # config: /etc/ssh/sshd_config | ||
13 | # pidfile: /var/run/sshd.pid | ||
14 | |||
15 | # source function library | ||
16 | . /etc/rc.d/init.d/functions | ||
17 | |||
18 | RETVAL=0 | ||
19 | |||
20 | case "$1" in | ||
21 | start) | ||
22 | echo -n "Starting sshd: " | ||
23 | if [ ! -f /var/run/sshd.pid ] ; then | ||
24 | /usr/sbin/sshd && success "sshd startup" || failure "sshd startup" | ||
25 | RETVAL=$? | ||
26 | fi | ||
27 | echo | ||
28 | ;; | ||
29 | stop) | ||
30 | echo -n "Shutting down sshd: " | ||
31 | if [ -f /var/run/sshd.pid ] ; then | ||
32 | killproc sshd | ||
33 | fi | ||
34 | echo | ||
35 | ;; | ||
36 | restart) | ||
37 | $0 stop | ||
38 | $0 start | ||
39 | RETVAL=$? | ||
40 | ;; | ||
41 | status) | ||
42 | status sshd | ||
43 | RETVAL=$? | ||
44 | ;; | ||
45 | *) | ||
46 | echo "Usage: sshd {start|stop|restart|status}" | ||
47 | exit 1 | ||
48 | esac | ||
49 | |||
50 | exit $RETVAL | ||
diff --git a/packages/redhat/sshd.pam b/packages/redhat/sshd.pam new file mode 100644 index 000000000..2a7d1fbd7 --- /dev/null +++ b/packages/redhat/sshd.pam | |||
@@ -0,0 +1,7 @@ | |||
1 | #%PAM-1.0 | ||
2 | auth required /lib/security/pam_pwdb.so shadow | ||
3 | auth required /lib/security/pam_nologin.so | ||
4 | account required /lib/security/pam_pwdb.so | ||
5 | password required /lib/security/pam_cracklib.so | ||
6 | password required /lib/security/pam_pwdb.so shadow nullok use_authtok | ||
7 | session required /lib/security/pam_pwdb.so | ||