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

Diff of /rpms/initscripts/sme9/initscripts.spec

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

Revision 1.1.2.1 by slords, Sat Mar 9 03:27:52 2013 UTC Revision 1.10 by vip-ire, Thu Jul 9 19:55:24 2015 UTC
# Line 2  Line 2 
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: 9.03.38  Version: 9.03.46
6  # ppp-watch is GPLv2+, everything else is GPLv2  # ppp-watch is GPLv2+, everything else is GPLv2
7  License: GPLv2 and GPLv2+  License: GPLv2 and GPLv2+
8  Group: System Environment/Base  Group: System Environment/Base
9  Release: 1%{?dist}  Release: 3%{?dist}.1
10  URL: http://fedorahosted.org/releases/i/n/initscripts/  URL: http://fedorahosted.org/releases/i/n/initscripts/
11  Source: http://fedorahosted.org/releases/i/n/initscripts/initscripts-%{version}.tar.bz2  Source: http://fedorahosted.org/releases/i/n/initscripts/initscripts-%{version}.tar.bz2
 Patch1000: centos-initscripts.patch  
12  BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root  BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
13  Requires: mingetty, /bin/awk, /bin/sed, mktemp  Requires: mingetty, /bin/awk, /bin/sed, mktemp
14  Requires: /sbin/sysctl  Requires: /sbin/sysctl
# Line 20  Requires: util-linux-ng >= 2.16 Line 19  Requires: util-linux-ng >= 2.16
19  Requires: bash >= 3.0  Requires: bash >= 3.0
20  Requires: sysvinit-tools >= 2.87  Requires: sysvinit-tools >= 2.87
21  %if with_upstart  %if with_upstart
22  Requires: upstart >= 0.6.0  Requires: upstart >= 0.6.5-11
23  %else  %else
24  Requires: SysVinit >= 2.85-38  Requires: SysVinit >= 2.85-38
25  %endif  %endif
# Line 48  Requires(post): /sbin/chkconfig, coreuti Line 47  Requires(post): /sbin/chkconfig, coreuti
47  Requires(preun): /sbin/chkconfig  Requires(preun): /sbin/chkconfig
48  BuildRequires: glib2-devel popt-devel gettext pkgconfig  BuildRequires: glib2-devel popt-devel gettext pkgconfig
49    
50    Patch1: 0001-ifup-also-set-multicast_snooping-after-the-bridge-is.patch
51    Patch1000: centos-initscripts.patch
52    Patch2000: initscripts-9.03.31-runlevel7.patch
53    Patch2001: initscripts-9.03.40-dmesg.patch
54    Patch2002: initscripts-9.03.40-slapd_alias_ldap.patch
55    Patch2003: initscripts-9.03.46-dont_run_plymouth_if_disabled.patch
56    
57  %description  %description
58  The initscripts package contains the basic system scripts used to boot  The initscripts package contains the basic system scripts used to boot
59  your Red Hat or Fedora system, change runlevels, and shut the system down  your SME Server system, change runlevels, and shut the system down
60  cleanly.  Initscripts also contains the scripts that activate and  cleanly.  Initscripts also contains the scripts that activate and
61  deactivate most network interfaces.  deactivate most network interfaces.
62    
# Line 67  Currently, this consists of various memo Line 73  Currently, this consists of various memo
73    
74  %prep  %prep
75  %setup -q  %setup -q
76    %patch1 -p1
77  %patch1000 -p1  %patch1000 -p1
78    %patch2000 -p1
79    %patch2001 -p1
80    %patch2002 -p1
81    %patch2003 -p1
82    
83  %build  %build
84  make  make
# Line 108  chmod 600 /var/log/btmp Line 119  chmod 600 /var/log/btmp
119  /sbin/chkconfig --add network  /sbin/chkconfig --add network
120  /sbin/chkconfig --add netconsole  /sbin/chkconfig --add netconsole
121    
122  if [ ! -f /var/lib/random-seed ] ; then  if [ ! -f /var/lib/random-seed -a -e /dev/urandom ] ; then
123          dd if=/dev/urandom of=/var/lib/random-seed count=1 bs=512 2>/dev/null          dd if=/dev/urandom of=/var/lib/random-seed count=1 bs=4096 2>/dev/null
124          chmod 600 /var/lib/random-seed          chmod 600 /var/lib/random-seed
125  fi  fi
126    
# Line 218  rm -rf $RPM_BUILD_ROOT Line 229  rm -rf $RPM_BUILD_ROOT
229  /lib/udev/rename_device  /lib/udev/rename_device
230  /lib/udev/console_init  /lib/udev/console_init
231  /lib/udev/console_check  /lib/udev/console_check
232    /lib/udev/udev-kvm-check
233  /sbin/service  /sbin/service
234  /sbin/ppp-watch  /sbin/ppp-watch
235  %{_mandir}/man*/*  %{_mandir}/man*/*
# Line 239  rm -rf $RPM_BUILD_ROOT Line 251  rm -rf $RPM_BUILD_ROOT
251  %ghost %attr(0600,root,utmp) /var/log/btmp  %ghost %attr(0600,root,utmp) /var/log/btmp
252  %ghost %attr(0664,root,utmp) /var/log/wtmp  %ghost %attr(0664,root,utmp) /var/log/wtmp
253  %ghost %attr(0664,root,utmp) /var/run/utmp  %ghost %attr(0664,root,utmp) /var/run/utmp
254    %ghost %attr(0644,root,root) /etc/sysconfig/kvm
255    
256  %files -n debugmode  %files -n debugmode
257  %defattr(-,root,root)  %defattr(-,root,root)
# Line 246  rm -rf $RPM_BUILD_ROOT Line 259  rm -rf $RPM_BUILD_ROOT
259  /etc/profile.d/debug*  /etc/profile.d/debug*
260    
261  %changelog  %changelog
262  * Thu Feb 21 2013 Johnny Hughes <johnny@centos.org> 9.03.38-1.el6.centos  * Thu Jul 9 2015 Daniel Berteaud <daniel@firewall-services.com> - 9.03.46-3.sme.1
263    - Don't try to run plymouth if disabled [SME: 8375]
264      Code from Charlie Brady
265    
266    * Thu Jul 9 2015 Daniel Berteaud <daniel@firewall-services.com> - 9.03.46-2.sme.1
267    - Rebase on upstream 9.03.46 [SME: 8658]
268    
269    * Tue Nov  4 2014 Johnny Hughes <johnny@centos.org> - 9.03.46-1.1
270  - Roll in CentOS Branding  - Roll in CentOS Branding
271    
272    * Fri Oct 24 2014 Lukáš Nykrýn <lnykryn@redhat.com> - 9.03.46-1.1
273    - ifup: also set multicast_snooping after the bridge is up
274    
275    * Tue Jul 22 2014 Lukáš Nykrýn <lnykryn@redhat.com> - 9.03.46-1
276    - ifup,vlan: fix typo
277    
278    * Tue Jul 08 2014 Lukáš Nykrýn <lnykryn@redhat.com> - 9.03.45-1
279    - ifup,vlan: fix typo
280    
281    * Wed Jun 18 2014 Lukáš Nykrýn - 9.03.44-1
282    - init.d/functions: fix typo in pid_dir
283    
284    * Tue Jun 10 2014 Lukáš Nykrýn - 9.03.43-1
285    - ifup-aliases: arpcheck - check for parent operstate and carrier
286    - ifdown: don't wait for aliases
287    - hotplug: don't call ifup when new vlan appears
288    - ifup-wireless: add support for wowlan (second part)
289    - readonly-root: remount rpc_pipefs if readonly-root is used
290    
291    * Fri Jun 06 2014 Lukáš Nykrýn <lnykryn@redhat.com> - 9.03.42-1
292    - ipcalc: -c allow netmask
293    - ipcalc: parse prefix more safely
294    - vi.po: fix parentheses
295    - network-functions: handle BONDING_OPTS better
296    - custom naming for VLAN devices
297    - bonding: match whole name of interface
298    - network-functions: ETHTOOL_DELAY introduction patch
299    - ifup-wireless: add support for wowlan
300    - Remove NETWORKING_IPV6 from sysconfig.txt (#918622)
301    - bridging: add possibility to set prio and ageing
302    
303    * Wed Apr 30 2014 Lukáš Nykrýn <lnykryn@redhat.com> - 9.03.41-1
304    - netfs: implicitly handle glusterfs as a network filesystemd
305    - init.d/functions: check parent dir of pid file for accessibility
306    - ifup-eth: some options for bridge can be applied after the bridge is up
307    - rc.sysinit: apply sysctl settings before starting udev
308    - ifup: add possibility to specify value for -w parameter of arping
309    - ifup-tunnel: call ifup-ipv6 in the end
310    - pids_var_run: handle '(deleted)'
311    - require correct version of upstart
312    - rc.sysinit: use 'vgchange --ignoreskippedcluster'
313    - during install do not create /var/lib/random-seed if /dev/urandom does not exist
314    - rc.sysinit: increase the saved random-seed to 4K (#1023471)
315    - umount-loop: make sure that we don't kill our own process
316    - umount-loop: don't use xargs
317    - ifup-eth: remove ipx relic (#1028135)
318    - init.d/functions: add -b optin to status and killproc (#1047948)
319    - remove duplicit then
320    
321    * Thu Oct 10 2013 Lukas Nykryn <lnykryn@redhat.com> - 9.03.40-1
322    - sync disks before halt (#1006294)
323    - provide KVM guest count and limit info message (#1014731)
324    - add ability to disable LVM activation on boot (#1015065)
325    
326    * Fri Aug 09 2013 Lukáš Nykrýn <lnykryn@redhat.com> - 9.03.39-1
327    - remount /proc to set attributes from fstab #984003
328    - print something when arping is detecting colliding ip addresses
329    - try dhcpv6 after v4 failed
330    - Allow dhclient configuration files for DHCPv6 as well. (#815676)
331    - ifdown: don't call nmcli on interface that is alread down
332    - call flush addresses with scope global
333    - init: inform users about .override files in .conf files
334    - netfs: do not force NFS exports to be mounted before _netdev mounts
335    - set net.ipv6.conf..autoconf in ifup-ipv6
336    - mention rule6 files
337    - securetty: check if the device is in the file before attempting to write to it
338    - Process rule6-* for sit devices (#840009)
339    - Killproc -d should parse same values as sleep
340    - Make killproc more granular when delay is passed. (#428029, <xjakub@fi.muni.cz>)
341    - bonding: set master up before slaves
342    - Fix greps to correctly handle comments and quotation (#915659)
343    
344  * Wed Jan 09 2013 Lukáš Nykrýn <lnykryn@redhat.com> - 9.03.38-1  * Wed Jan 09 2013 Lukáš Nykrýn <lnykryn@redhat.com> - 9.03.38-1
345  - call ip link up on master after slaves are up (#893395)  - call ip link up on master after slaves are up (#893395)
346    


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