paul | 8f75498 | 2003-01-20 04:55:51 +0000 | [diff] [blame] | 1 | # conditionals |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2 | %define with_snmp 0 |
paul | 788cdc6 | 2003-01-18 00:22:08 +0000 | [diff] [blame] | 3 | %define with_vtysh 1 |
| 4 | %define with_ospf_te 1 |
| 5 | %define with_nssa 1 |
| 6 | %define with_opaque_lsa 1 |
| 7 | %define with_tcp_zebra 0 |
| 8 | %define with_vtysh 1 |
| 9 | %define with_pam 1 |
| 10 | %define with_ipv6 1 |
paul | 55ea381 | 2003-04-07 08:14:11 +0000 | [diff] [blame] | 11 | %define with_ospfclient 1 |
| 12 | %define with_ospfapi 1 |
paul | 8f75498 | 2003-01-20 04:55:51 +0000 | [diff] [blame] | 13 | %define with_multipath 64 |
paul | 30b9d89 | 2003-01-18 22:57:15 +0000 | [diff] [blame] | 14 | |
| 15 | # path defines |
paul | 788cdc6 | 2003-01-18 00:22:08 +0000 | [diff] [blame] | 16 | %define _sysconfdir /etc/zebra |
paul | 8f75498 | 2003-01-20 04:55:51 +0000 | [diff] [blame] | 17 | %define zeb_src %{_builddir}/%{name}-%{version} |
| 18 | %define zeb_rh_src %{zeb_src}/redhat |
| 19 | %define zeb_docs %{zeb_src}/doc |
paul | 788cdc6 | 2003-01-18 00:22:08 +0000 | [diff] [blame] | 20 | |
paul | e062685 | 2003-03-18 14:11:36 +0000 | [diff] [blame] | 21 | # defines for configure |
| 22 | %define _libexecdir %{_exec_prefix}/libexec/zebra |
| 23 | %define _includedir %{_prefix}/include/zebra |
| 24 | %define _libdir %{_exec_prefix}/%{_lib}/zebra |
paul | 55ea381 | 2003-04-07 08:14:11 +0000 | [diff] [blame] | 25 | %define _localstatedir %{_prefix}/var/run |
paul | e062685 | 2003-03-18 14:11:36 +0000 | [diff] [blame] | 26 | |
paul | 788cdc6 | 2003-01-18 00:22:08 +0000 | [diff] [blame] | 27 | Summary: Routing daemon |
| 28 | Name: zebra |
paul | 6382b6f | 2003-05-20 00:17:45 +0000 | [diff] [blame] | 29 | Version: @VERSION@ |
| 30 | Release: @CONFDATE@ |
paul | 788cdc6 | 2003-01-18 00:22:08 +0000 | [diff] [blame] | 31 | License: GPL |
| 32 | Group: System Environment/Daemons |
| 33 | Source0: ftp://ftp.zebra.org/pub/zebra/%{name}-%{version}.tar.gz |
paul | 788cdc6 | 2003-01-18 00:22:08 +0000 | [diff] [blame] | 34 | URL: http://www.zebra.org/ |
| 35 | %if %with_snmp |
paul | e062685 | 2003-03-18 14:11:36 +0000 | [diff] [blame] | 36 | #BuildRequires: ucd-snmp-devel |
paul | 788cdc6 | 2003-01-18 00:22:08 +0000 | [diff] [blame] | 37 | Prereq: ucd-snmp |
| 38 | %endif |
paul | d7ccae2 | 2003-01-18 00:24:00 +0000 | [diff] [blame] | 39 | %if %with_vtysh |
paul | 30b9d89 | 2003-01-18 22:57:15 +0000 | [diff] [blame] | 40 | BuildRequires: readline readline-devel ncurses ncurses-devel |
paul | d7ccae2 | 2003-01-18 00:24:00 +0000 | [diff] [blame] | 41 | Prereq: readline ncurses |
| 42 | %endif |
| 43 | BuildRequires: texinfo tetex autoconf openssl-devel pam-devel patch |
paul | 788cdc6 | 2003-01-18 00:22:08 +0000 | [diff] [blame] | 44 | # Initscripts > 5.60 is required for IPv6 support |
paul | 30b9d89 | 2003-01-18 22:57:15 +0000 | [diff] [blame] | 45 | Prereq: initscripts >= 5.60 |
| 46 | Prereq: openssl ncurses readline pam |
paul | 788cdc6 | 2003-01-18 00:22:08 +0000 | [diff] [blame] | 47 | Prereq: /sbin/install-info |
| 48 | Provides: routingdaemon |
| 49 | BuildRoot: %{_tmppath}/%{name}-%{version}-root |
| 50 | Obsoletes: bird gated mrt |
| 51 | |
| 52 | %description |
| 53 | GNU Zebra is a free software that manages TCP/IP based routing |
| 54 | protocol. It takes multi-server and multi-thread approach to resolve |
| 55 | the current complexity of the Internet. |
| 56 | |
| 57 | GNU Zebra supports BGP4, BGP4+, OSPFv2, OSPFv3, RIPv1, RIPv2, and RIPng. |
| 58 | |
| 59 | GNU Zebra is intended to be used as a Route Server and a Route |
| 60 | Reflector. It is not a toolkit, it provides full routing power under |
| 61 | a new architecture. GNU Zebra is unique in design in that it has a |
| 62 | process for each protocol. |
| 63 | |
paul | 448ed4a | 2003-03-01 15:43:28 +0000 | [diff] [blame] | 64 | %package contrib |
| 65 | Summary: contrib tools for zebra |
| 66 | Group: System Environment/Daemons |
| 67 | |
| 68 | %description contrib |
| 69 | Contributed/3rd party tools which may be of use with zebra. |
| 70 | |
paul | e062685 | 2003-03-18 14:11:36 +0000 | [diff] [blame] | 71 | %package devel |
| 72 | Summary: Header and object files for zebra development |
| 73 | Group: System Environment/Daemons |
| 74 | |
| 75 | %description devel |
| 76 | The zebra-devel package contains the header and object files neccessary for |
| 77 | developing OSPF-API and zebra applications. |
| 78 | |
paul | 788cdc6 | 2003-01-18 00:22:08 +0000 | [diff] [blame] | 79 | %prep |
| 80 | %setup -q |
paul | 788cdc6 | 2003-01-18 00:22:08 +0000 | [diff] [blame] | 81 | |
| 82 | %build |
paul | e062685 | 2003-03-18 14:11:36 +0000 | [diff] [blame] | 83 | ./update-autotools |
paul | 788cdc6 | 2003-01-18 00:22:08 +0000 | [diff] [blame] | 84 | %configure \ |
| 85 | --with-cflags="-O2" \ |
| 86 | --enable-netlink \ |
| 87 | %if %with_ipv6 |
| 88 | --enable-ipv6 \ |
| 89 | %endif |
| 90 | %if %with_snmp |
| 91 | --enable-snmp \ |
| 92 | %endif |
| 93 | %if %with_multipath |
| 94 | --enable-multipath=%with_multipath \ |
| 95 | %endif |
| 96 | %if %with_tcp_zebra |
| 97 | --enable-tcp-zebra \ |
| 98 | %endif |
| 99 | %if %with_nssa |
| 100 | --enable-nssa \ |
| 101 | %endif |
| 102 | %if %with_opaque_lsa |
| 103 | --enable-opaque-lsa \ |
| 104 | %endif |
| 105 | %if %with_ospf_te |
| 106 | --enable-ospf-te \ |
| 107 | %endif |
| 108 | %if %with_vtysh |
| 109 | --enable-vtysh \ |
| 110 | %endif |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 111 | %if %with_ospfclient |
| 112 | --enable-ospfclient=yes \ |
| 113 | %else |
| 114 | --enable-ospfclient=no\ |
| 115 | %endif |
| 116 | %if %with_ospfapi |
| 117 | --enable-ospfapi=yes \ |
| 118 | %else |
| 119 | --enable-ospfapi=no \ |
| 120 | %endif |
paul | 788cdc6 | 2003-01-18 00:22:08 +0000 | [diff] [blame] | 121 | %if %with_pam |
| 122 | --with-libpam |
| 123 | %endif |
| 124 | |
| 125 | pushd vtysh |
| 126 | make %{?_smp_mflags} rebuild |
| 127 | popd |
| 128 | |
| 129 | make %{?_smp_mflags} MAKEINFO="makeinfo --no-split" |
| 130 | |
| 131 | pushd doc |
| 132 | texi2html zebra.texi |
| 133 | popd |
| 134 | |
| 135 | %install |
| 136 | rm -rf $RPM_BUILD_ROOT |
| 137 | |
| 138 | install -d $RPM_BUILD_ROOT/etc/{rc.d/init.d,sysconfig,logrotate.d,pam.d} \ |
| 139 | $RPM_BUILD_ROOT/var/log/zebra $RPM_BUILD_ROOT%{_infodir} |
| 140 | |
| 141 | make install \ |
| 142 | DESTDIR=$RPM_BUILD_ROOT |
| 143 | |
paul | 8f75498 | 2003-01-20 04:55:51 +0000 | [diff] [blame] | 144 | install %{zeb_rh_src}/zebra.init $RPM_BUILD_ROOT/etc/rc.d/init.d/zebra |
| 145 | install %{zeb_rh_src}/bgpd.init $RPM_BUILD_ROOT/etc/rc.d/init.d/bgpd |
paul | d7ccae2 | 2003-01-18 00:24:00 +0000 | [diff] [blame] | 146 | %if %with_ipv6 |
paul | 8f75498 | 2003-01-20 04:55:51 +0000 | [diff] [blame] | 147 | install %{zeb_rh_src}/ospf6d.init $RPM_BUILD_ROOT/etc/rc.d/init.d/ospf6d |
| 148 | install %{zeb_rh_src}/ripngd.init $RPM_BUILD_ROOT/etc/rc.d/init.d/ripngd |
paul | d7ccae2 | 2003-01-18 00:24:00 +0000 | [diff] [blame] | 149 | %endif |
paul | 8f75498 | 2003-01-20 04:55:51 +0000 | [diff] [blame] | 150 | install %{zeb_rh_src}/ospfd.init $RPM_BUILD_ROOT/etc/rc.d/init.d/ospfd |
| 151 | install %{zeb_rh_src}/ripd.init $RPM_BUILD_ROOT/etc/rc.d/init.d/ripd |
| 152 | install -m644 %{zeb_rh_src}/zebra.pam $RPM_BUILD_ROOT/etc/pam.d/zebra |
| 153 | install -m644 %{zeb_rh_src}/zebra.logrotate $RPM_BUILD_ROOT/etc/logrotate.d/zebra |
paul | 788cdc6 | 2003-01-18 00:22:08 +0000 | [diff] [blame] | 154 | |
paul | 788cdc6 | 2003-01-18 00:22:08 +0000 | [diff] [blame] | 155 | %post |
paul | 30b9d89 | 2003-01-18 22:57:15 +0000 | [diff] [blame] | 156 | # zebra_spec_add_service <service name> <port/proto> <comment> |
paul | 788cdc6 | 2003-01-18 00:22:08 +0000 | [diff] [blame] | 157 | # e.g. zebra_spec_add_service zebrasrv 2600/tcp "zebra service" |
| 158 | |
| 159 | zebra_spec_add_service () |
| 160 | { |
| 161 | # Add port /etc/services entry if it isn't already there |
| 162 | if [ -f /etc/services ] && ! grep -q "^$1[^a-zA-Z0-9]" /etc/services ; then |
| 163 | echo "$1 $2 # $3" >> /etc/services |
| 164 | fi |
| 165 | } |
| 166 | |
| 167 | zebra_spec_add_service zebrasrv 2600/tcp "zebra service" |
| 168 | zebra_spec_add_service zebra 2601/tcp "zebra vty" |
| 169 | zebra_spec_add_service ripd 2602/tcp "RIPd vty" |
paul | d7ccae2 | 2003-01-18 00:24:00 +0000 | [diff] [blame] | 170 | %if %with_ipv6 |
paul | 788cdc6 | 2003-01-18 00:22:08 +0000 | [diff] [blame] | 171 | zebra_spec_add_service ripngd 2603/tcp "RIPngd vty" |
paul | d7ccae2 | 2003-01-18 00:24:00 +0000 | [diff] [blame] | 172 | %endif |
paul | 788cdc6 | 2003-01-18 00:22:08 +0000 | [diff] [blame] | 173 | zebra_spec_add_service ospfd 2604/tcp "OSPFd vty" |
| 174 | zebra_spec_add_service bgpd 2605/tcp "BGPd vty" |
paul | d7ccae2 | 2003-01-18 00:24:00 +0000 | [diff] [blame] | 175 | %if %with_ipv6 |
paul | 788cdc6 | 2003-01-18 00:22:08 +0000 | [diff] [blame] | 176 | zebra_spec_add_service ospf6d 2606/tcp "OSPF6d vty" |
paul | d7ccae2 | 2003-01-18 00:24:00 +0000 | [diff] [blame] | 177 | %endif |
paul | 788cdc6 | 2003-01-18 00:22:08 +0000 | [diff] [blame] | 178 | |
| 179 | /sbin/chkconfig --add zebra |
| 180 | /sbin/chkconfig --add ripd |
paul | d7ccae2 | 2003-01-18 00:24:00 +0000 | [diff] [blame] | 181 | %if %with_ipv6 |
paul | 788cdc6 | 2003-01-18 00:22:08 +0000 | [diff] [blame] | 182 | /sbin/chkconfig --add ripngd |
paul | 788cdc6 | 2003-01-18 00:22:08 +0000 | [diff] [blame] | 183 | /sbin/chkconfig --add ospf6d |
paul | d7ccae2 | 2003-01-18 00:24:00 +0000 | [diff] [blame] | 184 | %endif |
paul | 30b9d89 | 2003-01-18 22:57:15 +0000 | [diff] [blame] | 185 | /sbin/chkconfig --add ospfd |
paul | 788cdc6 | 2003-01-18 00:22:08 +0000 | [diff] [blame] | 186 | /sbin/chkconfig --add bgpd |
| 187 | |
| 188 | /sbin/install-info %{_infodir}/zebra.info.gz %{_infodir}/dir |
| 189 | |
| 190 | # Create dummy files if they don't exist so basic functions can be used. |
| 191 | if [ ! -e %{_sysconfdir}/zebra.conf ]; then |
| 192 | echo "hostname `hostname`" > %{_sysconfdir}/zebra.conf |
| 193 | chmod 640 %{_sysconfdir}/zebra.conf |
| 194 | fi |
| 195 | if [ ! -e %{_sysconfdir}/vtysh.conf ]; then |
| 196 | touch %{_sysconfdir}/vtysh.conf |
| 197 | chmod 640 %{_sysconfdir}/vtysh.conf |
| 198 | fi |
| 199 | |
| 200 | %postun |
| 201 | if [ "$1" -ge "1" ]; then |
| 202 | /etc/rc.d/init.d/zebra condrestart >/dev/null 2>&1 |
| 203 | /etc/rc.d/init.d/ripd condrestart >/dev/null 2>&1 |
paul | d7ccae2 | 2003-01-18 00:24:00 +0000 | [diff] [blame] | 204 | %if %with_ipv6 |
paul | 788cdc6 | 2003-01-18 00:22:08 +0000 | [diff] [blame] | 205 | /etc/rc.d/init.d/ripngd condrestart >/dev/null 2>&1 |
paul | d7ccae2 | 2003-01-18 00:24:00 +0000 | [diff] [blame] | 206 | %endif |
paul | 788cdc6 | 2003-01-18 00:22:08 +0000 | [diff] [blame] | 207 | /etc/rc.d/init.d/ospfd condrestart >/dev/null 2>&1 |
paul | d7ccae2 | 2003-01-18 00:24:00 +0000 | [diff] [blame] | 208 | %if %with_ipv6 |
paul | 788cdc6 | 2003-01-18 00:22:08 +0000 | [diff] [blame] | 209 | /etc/rc.d/init.d/ospf6d condrestart >/dev/null 2>&1 |
paul | d7ccae2 | 2003-01-18 00:24:00 +0000 | [diff] [blame] | 210 | %endif |
paul | 788cdc6 | 2003-01-18 00:22:08 +0000 | [diff] [blame] | 211 | /etc/rc.d/init.d/bgpd condrestart >/dev/null 2>&1 |
| 212 | fi |
| 213 | /sbin/install-info --delete %{_infodir}/zebra.info.gz %{_infodir}/dir |
| 214 | |
| 215 | %preun |
| 216 | if [ "$1" = "0" ]; then |
| 217 | /sbin/chkconfig --del zebra |
| 218 | /sbin/chkconfig --del ripd |
paul | d7ccae2 | 2003-01-18 00:24:00 +0000 | [diff] [blame] | 219 | %if %with_ipv6 |
paul | 788cdc6 | 2003-01-18 00:22:08 +0000 | [diff] [blame] | 220 | /sbin/chkconfig --del ripngd |
paul | d7ccae2 | 2003-01-18 00:24:00 +0000 | [diff] [blame] | 221 | %endif |
paul | 788cdc6 | 2003-01-18 00:22:08 +0000 | [diff] [blame] | 222 | /sbin/chkconfig --del ospfd |
paul | d7ccae2 | 2003-01-18 00:24:00 +0000 | [diff] [blame] | 223 | %if %with_ipv6 |
paul | 788cdc6 | 2003-01-18 00:22:08 +0000 | [diff] [blame] | 224 | /sbin/chkconfig --del ospf6d |
paul | d7ccae2 | 2003-01-18 00:24:00 +0000 | [diff] [blame] | 225 | %endif |
paul | 788cdc6 | 2003-01-18 00:22:08 +0000 | [diff] [blame] | 226 | /sbin/chkconfig --del bgpd |
| 227 | fi |
| 228 | |
| 229 | %clean |
| 230 | #rm -rf $RPM_BUILD_ROOT |
| 231 | |
| 232 | %files |
| 233 | %defattr(-,root,root) |
paul | 448ed4a | 2003-03-01 15:43:28 +0000 | [diff] [blame] | 234 | %doc */*.sample* AUTHORS COPYING |
paul | 8f75498 | 2003-01-20 04:55:51 +0000 | [diff] [blame] | 235 | %doc doc/zebra.html |
paul | 30b9d89 | 2003-01-18 22:57:15 +0000 | [diff] [blame] | 236 | %doc doc/mpls |
paul | 8f75498 | 2003-01-20 04:55:51 +0000 | [diff] [blame] | 237 | %doc ChangeLog INSTALL NEWS README REPORTING-BUGS SERVICES TODO |
paul | 788cdc6 | 2003-01-18 00:22:08 +0000 | [diff] [blame] | 238 | %dir %attr(750,root,root) %{_sysconfdir} |
| 239 | %dir %attr(750,root,root) /var/log/zebra |
| 240 | %dir %attr(755,root,root) /usr/share/info |
| 241 | %{_infodir}/*info* |
| 242 | %{_mandir}/man*/* |
| 243 | %{_sbindir}/* |
paul | d7ccae2 | 2003-01-18 00:24:00 +0000 | [diff] [blame] | 244 | %if %with_vtysh |
paul | 788cdc6 | 2003-01-18 00:22:08 +0000 | [diff] [blame] | 245 | %{_bindir}/* |
paul | d7ccae2 | 2003-01-18 00:24:00 +0000 | [diff] [blame] | 246 | %endif |
paul | 788cdc6 | 2003-01-18 00:22:08 +0000 | [diff] [blame] | 247 | %config /etc/zebra/* |
| 248 | %config /etc/rc.d/init.d/* |
| 249 | %config(noreplace) /etc/pam.d/zebra |
| 250 | %config(noreplace) %attr(640,root,root) /etc/logrotate.d/* |
| 251 | |
paul | 448ed4a | 2003-03-01 15:43:28 +0000 | [diff] [blame] | 252 | %files contrib |
| 253 | %defattr(-,root,root) |
| 254 | %doc tools |
| 255 | |
paul | e062685 | 2003-03-18 14:11:36 +0000 | [diff] [blame] | 256 | %files devel |
| 257 | %defattr(-,root,root) |
| 258 | %dir %{_libdir}/* |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 259 | %dir %{_includedir}/ospfd/* |
| 260 | %if %with_ospfapi |
paul | e062685 | 2003-03-18 14:11:36 +0000 | [diff] [blame] | 261 | %dir %{_includedir}/ospfapi/* |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 262 | %endif |
paul | e062685 | 2003-03-18 14:11:36 +0000 | [diff] [blame] | 263 | |
paul | 788cdc6 | 2003-01-18 00:22:08 +0000 | [diff] [blame] | 264 | %changelog |
paul | e062685 | 2003-03-18 14:11:36 +0000 | [diff] [blame] | 265 | * Mon Mar 18 2003 Paul Jakma <paul@dishone.st> |
| 266 | - Fix mem leak in 'show thread cpu' |
| 267 | - Ralph Keller's OSPF-API |
| 268 | - Amir: Fix configure.ac for net-snmp |
| 269 | |
paul | 448ed4a | 2003-03-01 15:43:28 +0000 | [diff] [blame] | 270 | * Sat Mar 1 2003 Paul Jakma <paul@dishone.st> |
| 271 | - ospfd IOS prefix to interface matching for 'network' statement |
| 272 | - temporary fix for PtP and IPv6 |
| 273 | - sync to zebra.org CVS |
| 274 | |
paul | 8f75498 | 2003-01-20 04:55:51 +0000 | [diff] [blame] | 275 | * Mon Jan 20 2003 Paul Jakma <paul@dishone.st> |
| 276 | - update to latest cvs |
| 277 | - Yon's "show thread cpu" patch - 17217 |
| 278 | - walk up tree - 17218 |
| 279 | - ospfd NSSA fixes - 16681 |
| 280 | - ospfd nsm fixes - 16824 |
| 281 | - ospfd OLSA fixes and new feature - 16823 |
| 282 | - KAME and ifindex fixes - 16525 |
| 283 | - spec file changes to allow redhat files to be in tree |
| 284 | |
paul | d7ccae2 | 2003-01-18 00:24:00 +0000 | [diff] [blame] | 285 | * Sat Dec 28 2002 Alexander Hoogerhuis <alexh@ihatent.com> |
| 286 | - Added conditionals for building with(out) IPv6, vtysh, RIP, BGP |
| 287 | - Fixed up some build requirements (patch) |
| 288 | - Added conditional build requirements for vtysh / snmp |
| 289 | - Added conditional to %files for %_bindir depending on vtysh |
| 290 | |
paul | 788cdc6 | 2003-01-18 00:22:08 +0000 | [diff] [blame] | 291 | * Mon Nov 11 2002 Paul Jakma <paulj@alphyra.ie> |
| 292 | - update to latest CVS |
| 293 | - add Greg Troxel's md5 buffer copy/dup fix |
| 294 | - add RIPv1 fix |
| 295 | - add Frank's multicast flag fix |
| 296 | |
| 297 | * Wed Oct 09 2002 Paul Jakma <paulj@alphyra.ie> |
| 298 | - update to latest CVS |
| 299 | - timestamped crypt_seqnum patch |
| 300 | - oi->on_write_q fix |
| 301 | |
| 302 | * Mon Sep 30 2002 Paul Jakma <paulj@alphyra.ie> |
| 303 | - update to latest CVS |
| 304 | - add vtysh 'write-config (integrated|daemon)' patch |
| 305 | - always 'make rebuild' in vtysh/ to catch new commands |
| 306 | |
| 307 | * Fri Sep 13 2002 Paul Jakma <paulj@alphyra.ie> |
| 308 | - update to 0.93b |
| 309 | |
| 310 | * Wed Sep 11 2002 Paul Jakma <paulj@alphyra.ie> |
| 311 | - update to latest CVS |
| 312 | - add "/sbin/ip route flush proto zebra" to zebra RH init on startup |
| 313 | |
| 314 | * Sat Aug 24 2002 Paul Jakma <paulj@alphyra.ie> |
| 315 | - update to current CVS |
| 316 | - add OSPF point to multipoint patch |
| 317 | - add OSPF bugfixes |
| 318 | - add BGP hash optimisation patch |
| 319 | |
| 320 | * Fri Jun 14 2002 Paul Jakma <paulj@alphyra.ie> |
| 321 | - update to 0.93-pre1 / CVS |
| 322 | - add link state detection support |
| 323 | - add generic PtP and RFC3021 support |
| 324 | - various bug fixes |
| 325 | |
| 326 | * Thu Aug 09 2001 Elliot Lee <sopwith@redhat.com> 0.91a-6 |
| 327 | - Fix bug #51336 |
| 328 | |
| 329 | * Wed Aug 1 2001 Trond Eivind Glomsrød <teg@redhat.com> 0.91a-5 |
| 330 | - Use generic initscript strings instead of initscript specific |
| 331 | ( "Starting foo: " -> "Starting $prog:" ) |
| 332 | |
| 333 | * Fri Jul 27 2001 Elliot Lee <sopwith@redhat.com> 0.91a-4 |
| 334 | - Bump the release when rebuilding into the dist. |
| 335 | |
| 336 | * Tue Feb 6 2001 Tim Powers <timp@redhat.com> |
| 337 | - built for Powertools |
| 338 | |
| 339 | * Sun Feb 4 2001 Pekka Savola <pekkas@netcore.fi> |
| 340 | - Hacked up from PLD Linux 0.90-1, Mandrake 0.90-1mdk and one from zebra.org. |
| 341 | - Update to 0.91a |
| 342 | - Very heavy modifications to init.d/*, .spec, pam, i18n, logrotate, etc. |
| 343 | - Should be quite Red Hat'isque now. |