/[smeserver]/rpms/initscripts/sme8/initscripts.spec
ViewVC logotype

Diff of /rpms/initscripts/sme8/initscripts.spec

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

Revision 1.5 by slords, Tue Jun 24 16:35:25 2008 UTC Revision 1.12 by slords, Thu Mar 4 16:31:07 2010 UTC
# Line 1  Line 1 
1    # $Id$
2    
3  Summary: The inittab file and the /etc/init.d scripts.  Summary: The inittab file and the /etc/init.d scripts.
4  Name: initscripts  Name: initscripts
5  Version: 8.45.19.EL  Version: 8.45.30
6  License: GPL  # ppp-watch is GPLv2+, everything else is GPLv2
7    License: GPLv2 and GPLv2+
8  Group: System Environment/Base  Group: System Environment/Base
9  Release: 1%{?dist}.1  Release: 2%{?dist}.2
10  Source: initscripts-%{version}.tar.bz2  Source: initscripts-%{version}.tar.bz2
11  Patch1: initscripts-centos-branding.patch  Patch1: initscripts-8.45.29-ctc.patch
12    Patch100: initscripts-centos-branding.patch
13  URL: http://fedora.redhat.com/projects/additional-projects/initscripts/  Patch1000: initscripts-8.45.25-smepatches.patch
14    Patch1001: initscripts-8.45.30-smefixtypo.patch
15    # git source repository
16    URL: http://git.fedorahosted.org/git/initscripts.git
17  BuildRoot: /%{_tmppath}/%{name}-%{version}-%{release}-root  BuildRoot: /%{_tmppath}/%{name}-%{version}-%{release}-root
18  Requires: mingetty, /bin/awk, /bin/sed, mktemp, e2fsprogs >= 1.15  Requires: mingetty, /bin/awk, /bin/sed, mktemp, e2fsprogs >= 1.15
19  Requires: /sbin/sysctl, syslog  Requires: /sbin/sysctl, syslog
# Line 38  deactivate most network interfaces. Line 44  deactivate most network interfaces.
44  %prep  %prep
45  %setup -q  %setup -q
46  %patch1 -p1  %patch1 -p1
47    %patch100 -p1
48    %patch1000 -p1
49    %patch1001 -p1
50    
51  %build  %build
52  make  make
# Line 52  make ROOT=$RPM_BUILD_ROOT SUPERUSER=`id Line 61  make ROOT=$RPM_BUILD_ROOT SUPERUSER=`id
61  rm -f \  rm -f \
62   $RPM_BUILD_ROOT/etc/sysconfig/network-scripts/ifup-ctc \   $RPM_BUILD_ROOT/etc/sysconfig/network-scripts/ifup-ctc \
63   $RPM_BUILD_ROOT/etc/sysconfig/network-scripts/ifup-iucv \   $RPM_BUILD_ROOT/etc/sysconfig/network-scripts/ifup-iucv \
64     $RPM_BUILD_ROOT/etc/udev/rules.d/54-cu3088-fix.rules \
65   $RPM_BUILD_ROOT/etc/udev/rules.d/55-ccw.rules \   $RPM_BUILD_ROOT/etc/udev/rules.d/55-ccw.rules \
66   $RPM_BUILD_ROOT/lib/udev/ccw_init   $RPM_BUILD_ROOT/lib/udev/ccw_init
67  %else  %else
# Line 72  chmod 600 /var/log/btmp Line 82  chmod 600 /var/log/btmp
82  /sbin/chkconfig --add netfs  /sbin/chkconfig --add netfs
83  /sbin/chkconfig --add network  /sbin/chkconfig --add network
84  /sbin/chkconfig --add netconsole  /sbin/chkconfig --add netconsole
85    /sbin/chkconfig --add rawdevices
86    
87    
88  %preun  %preun
89  if [ $1 = 0 ]; then  if [ $1 = 0 ]; then
90    /sbin/chkconfig --del netfs    /sbin/chkconfig --del netfs
91    /sbin/chkconfig --del network    /sbin/chkconfig --del network
92    /sbin/chkconfig --del netconsole    /sbin/chkconfig --del netconsole
93      /sbin/chkconfig --del rawdevices
94  fi  fi
95    
96  %triggerun -- initscripts < 7.62  %triggerun -- initscripts < 7.62
97  /sbin/chkconfig --del random  /sbin/chkconfig --del random
 /sbin/chkconfig --del rawdevices  
98  exit 0  exit 0
99    
100  %clean  %clean
# Line 106  rm -rf $RPM_BUILD_ROOT Line 118  rm -rf $RPM_BUILD_ROOT
118  %dir /etc/sysconfig/networking/devices  %dir /etc/sysconfig/networking/devices
119  %dir /etc/sysconfig/networking/profiles  %dir /etc/sysconfig/networking/profiles
120  %dir /etc/sysconfig/networking/profiles/default  %dir /etc/sysconfig/networking/profiles/default
121    %config(noreplace) /etc/sysconfig/rawdevices
122  %config /etc/sysconfig/network-scripts/network-functions  %config /etc/sysconfig/network-scripts/network-functions
123  %config /etc/sysconfig/network-scripts/network-functions-ipv6  %config /etc/sysconfig/network-scripts/network-functions-ipv6
124  %config /etc/sysconfig/network-scripts/init.ipv6-global  %config /etc/sysconfig/network-scripts/init.ipv6-global
# Line 199  rm -rf $RPM_BUILD_ROOT Line 212  rm -rf $RPM_BUILD_ROOT
212  %ghost %attr(0664,root,utmp) /var/run/utmp  %ghost %attr(0664,root,utmp) /var/run/utmp
213    
214  %changelog  %changelog
215  * Wed May 28 2008 Karanbir Singh <kbsingh@centos.org> 8.45.19.EL-1.el5.centos  * Thu Dec 17 2009 Filippo Carletti <filippo.carletti@gmail.com> 8.45.30-2.sme.2
216  - Remove upstream Branding  - Fix typo in /sbin/service patch (Federico Simoncelli) [SME: 5674]
217    
218    * Mon Oct 26 2009 Shad L. Lords <slords@mail.com> 8.45.30-2.sme.1
219    - Exit with zero exit status for services not listed in configuration
220      database to avoid failures in post scriptlets [SME: 1653]
221    - Merge in SME Server /sbin/e-smith/service wrapper so that only
222      initscripts which exist in run-level 7 can be run. This ensures
223      that the supervised service is run, if one exists, and protects
224      against running "service httpd restart" [SME: 61, 1495]
225    
226    * Mon Sep 28 2009 Karanbir Singh <kbsingh@centos.org> 8.45.30-2.el5.centos
227    - Roll in CentOS Branding
228    
229    * Sat Jul 13 2009 Harald Hoyer <harald@redhat.com> 8.45.30-2
230    - fix raw path in initscript (#472891)
231    - remove deprecation comments (#472891)
232    - Resolves: rhbz#472891
233    
234    * Tue Jul 07 2009 Phil Knirsch <pknirsch@redhat.com> 8.45.29-3
235    - Final fixes for IP address validation (#464268)
236    - Added required 54-cu3088-fix.rules udev rules file (#475721)
237    - Resolves: #464268,#475721
238    
239    * Tue Jun 16 2009 Harald Hoyer <harald@redhat.com> 8.45.29-1
240    - cleanup /var/run/libvirt (#505600)
241    - Resolves: rhbz#505600
242    
243    * Thu May 14 2009 Harald Hoyer <harald@redhat.com> 8.45.28-1
244    - fixed "Determine reboot/halt via existing INIT_HALT environment variable. (#475006)
245    - Resolves: rhbz#475006
246    
247    * Wed May 06 2009 Harald Hoyer <harald@redhat.com> 8.45.27-1
248    - undeprecate rawdevices (#472891)
249    - Resolves: rhbz#472891
250    
251    * Mon May 04 2009 Harald Hoyer <harald@redhat.com> 8.45.26-1
252    - add md activation before lvm/device-mapper in netfs (#480627)
253    - fixed SUBCHANNEL grep for s390
254    - Move the bridge member handling later in the ifdown sequence (#463325, Sean E. Millichamp <sean@bruenor.org>)
255    - Allow changing of VLAN type even if the module is already loaded. (#495053, <pietro@bertera.it>)
256    - add gfs2 to rc.sysinit mount (#494963)
257    - support ETHTOOL_OPTS on bridge devices (#493255, <bbaetz@acm.org>)
258    - Add vlan support for s390 HSI interfaces. (#490584)
259    - Don't re-init an existing device, it causes errors. (#484411, <jpayne@redhat.com>)
260    - Remove arp_ip_target on ifdown for bonding devices. (#483711)
261    - Don't unmount the nfsd filesystem when unmounting nfs client mounts. (#481794, <sprabhu@redhat.com>)
262    - Bring up ipsec interfaces last. (#481733)
263    - Break deadlock by explicitly handling alias for CTC and IUCV (#475721)
264    - Determine reboot/halt via existing INIT_HALT environment variable. (#475006)
265    - Add some docs on BONDING_OPTS. (#472480)
266    - Don't say that we're shutting off crypto if we aren't actually doing it. (#471944)
267    - remove empty bridges (#463325)
268    - Add a address check capability for IPv4 and IPv6 addresses. (#464268)
269    - fail if HWADDR specified in ifcfg is not present in the system (#487718)
270    - fix ifdown of vlan iface which is a bridge member (#481557)
271    - add proper return codes for /etc/init.d/network (#481002)
272    - fixed brigde setup (bug #463014)
273    - Add an option for consoletype to always return 0. (#453798, <notting@redhat.com>)
274    - Use the pidfile before running pidof in status(). (#440658)
275    - Allow passing of arguments to dhcp6c (#437949, <pekkas@netcore.fi>)
276    - Remove /.suspended as well on boot (#270861)
277    - Allow use of either ESP only or AH only (#251494, <stijn.tintel@x-tend.be>)
278    - Resolves: rhbz#251494,rhbz#270861,rhbz#437949,rhbz#440658,rhbz#453798,
279                rhbz#463014,rhbz#463325,rhbz#464268,rhbz#471944,rhbz#472480,
280                rhbz#475006,rhbz#475721,rhbz#475770,rhbz#480627,rhbz#481002,
281                rhbz#481557,rhbz#481733,rhbz#481794,rhbz#483711,rhbz#484411,
282                rhbz#487718,rhbz#490584,rhbz#493255,rhbz#494963,rhbz#495053
283    
284    * Wed Nov 12 2008 Harald Hoyer <harald@redhat.com> 8.45.25-1
285    - fixed SUBCHANNEL grep statement (bug #459044)
286    - Resolves: rhbz#459044
287    
288    * Wed Nov 12 2008 Harald Hoyer <harald@redhat.com> 8.45.24-1
289    - fixed SUBCHANNEL grep statement (bug #459044)
290    - Resolves: rhbz#459044
291    
292    * Wed Nov 12 2008 Harald Hoyer <harald@redhat.com> 8.45.23-1
293    - fixed SUBCHANNEL grep statement (bug #459044)
294    - Resolves: rhbz#459044
295    
296    * Mon Nov 10 2008 Harald Hoyer <harald@redhat.com> 8.45.22-1
297    - refined SUBCHANNEL grep statement (bug #459044)
298    - blkid has a -l option to pick a single device. Use it. (#470027)
299    - don't mkswap on halt (#469823)
300    - fixed bonding arp_ip_target handling (#467954) (Darcy Sherwood)
301    - Resolves: rhbz#459044, rhbz#470027, rhbz#469823, rhbz#467954
302    
303    * Tue Oct 14 2008 Harald Hoyer <harald@redhat.com> 8.45.21-1
304    - mount encrypted logical volumes during boot (#466115, Bill Nottingham)
305    - Resolves: #466115
306    
307    * Tue Sep 16 2008 Harald Hoyer <harald@redhat.com> 8.45.20-1
308    - changes to init scripts to better support stateless (#433702, <ahecox@redhat.com>)
309    - call logger with full path (#447928, Mihai Vintila)
310    - add a udevsettle before mounting _netdev devices (#452866, <bmr@redhat.com>)
311    - reduce device initialization overhead for ccw devices (#437110, Glen Johnson)
312    - Resolves: rhbz#433702 rhbz#452866 rhbz#447928 rhbz#437110
313    
314  * Mon Mar  3 2008 Bill Nottingham <notting@redhat.com> 8.45.19.EL-1  * Mon Mar  3 2008 Bill Nottingham <notting@redhat.com> 8.45.19.EL-1
315  - also skip network shutdown if there is a '_rnetdev' root device (part of #435358, <pjones@redhat.com>)  - also skip network shutdown if there is a '_rnetdev' root device (part of #435358, <pjones@redhat.com>)


Legend:
Removed lines/characters  
Changed lines/characters
  Added lines/characters

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed