Compare commits

...
Sign in to create a new pull request.

14 commits

Author SHA1 Message Date
Fedora Release Engineering
07aab6ceb6 dist-git conversion 2010-07-28 18:17:54 +00:00
Bill Nottingham
78f59e1031 Fix typo from bad import script. (releng #2781) 2009-10-28 02:54:39 +00:00
Bill Nottingham
b02682589d 8.76.4-1 2008-10-14 21:05:00 +00:00
Bill Nottingham
877f27961e 8.76.3-1 2008-08-29 17:02:31 +00:00
Bill Nottingham
cea6dcf53f commit correct spec 2008-05-15 16:23:16 +00:00
Bill Nottingham
149236d7b5 8.76.2-1 2008-05-15 16:21:28 +00:00
Bill Nottingham
6d20cb392e 8.76.1-1 2008-05-07 17:56:41 +00:00
Bill Nottingham
7da9af911c 8.76-1 2008-05-02 17:58:41 +00:00
Bill Nottingham
749a44c6e7 8.75-1 2008-05-02 17:32:46 +00:00
Bill Nottingham
83bed6c840 8.74-1 2008-04-29 15:55:38 +00:00
Bill Nottingham
08bdb6a60c 8.73-1 2008-04-25 21:25:18 +00:00
Bill Nottingham
76f693db90 8.72-1 2008-04-24 19:56:54 +00:00
Bill Nottingham
655ebbb9bd 8.71-1 2008-04-23 19:36:56 +00:00
Jesse Keating
510050c11f Initialize branch F-9 for initscripts 2008-04-20 22:52:17 +00:00
5 changed files with 52 additions and 26 deletions

View file

@ -1 +0,0 @@
initscripts-8.70.tar.bz2

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
initscripts-8.76.4.tar.bz2

View file

@ -1,21 +0,0 @@
# Makefile for source rpm: initscripts
# $Id$
NAME := initscripts
SPECFILE = $(firstword $(wildcard *.spec))
define find-makefile-common
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
endef
MAKEFILE_COMMON := $(shell $(find-makefile-common))
ifeq ($(MAKEFILE_COMMON),)
# attempt a checkout
define checkout-makefile-common
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
endef
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
endif
include $(MAKEFILE_COMMON)

View file

@ -2,7 +2,7 @@
Summary: The inittab file and the /etc/init.d scripts
Name: initscripts
Version: 8.70
Version: 8.76.4
# ppp-watch is GPLv2+, everything else is GPLv2
License: GPLv2 and GPLv2+
Group: System Environment/Base
@ -17,7 +17,8 @@ Requires: module-init-tools
Requires: util-linux >= 2.10s-11, mount >= 2.11l
Requires: bash >= 3.0
%if with_upstart
Requires: upstart, event-compat-sysv
Requires: upstart
Obsoletes: event-compat-sysv
%else
Requires: SysVinit >= 2.85-38
%endif
@ -60,8 +61,11 @@ make ROOT=$RPM_BUILD_ROOT SUPERUSER=`id -un` SUPERGROUP=`id -gn` mandir=%{_mandi
%if with_upstart
mv -f $RPM_BUILD_ROOT/etc/inittab.upstart $RPM_BUILD_ROOT/etc/inittab
rm -f $RPM_BUILD_ROOT/etc/rc.d/rc1.d/S99single
rm -f $RPM_BUILD_ROOT/etc/rc.d/init.d/single
%else
mv -f $RPM_BUILD_ROOT/etc/inittab.sysv $RPM_BUILD_ROOT/etc/inittab
rm -rf $RPM_BUILD_ROOT/etc/event.d
%endif
rm -f $RPM_BUILD_ROOT/etc/inittab.*
@ -170,7 +174,9 @@ rm -rf $RPM_BUILD_ROOT
%dir /etc/rwtab.d
/etc/statetab
%dir /etc/statetab.d
%if with_upstart
%config(noreplace) /etc/event.d/*
%endif
/etc/udev/rules.d/*
%config /etc/X11/prefdm
%config(noreplace) /etc/inittab
@ -225,13 +231,54 @@ rm -rf $RPM_BUILD_ROOT
%dir /etc/NetworkManager/dispatcher.d
/etc/NetworkManager/dispatcher.d/00-netreport
/etc/NetworkManager/dispatcher.d/05-netfs
%doc sysconfig.txt sysvinitfiles ChangeLog static-routes-ipv6 ipv6-tunnel.howto ipv6-6to4.howto changes.ipv6 COPYING
%doc sysconfig.txt sysvinitfiles ChangeLog static-routes-ipv6 ipv6-tunnel.howto ipv6-6to4.howto changes.ipv6 COPYING README-event.d
/var/lib/stateless
%ghost %attr(0600,root,utmp) /var/log/btmp
%ghost %attr(0664,root,utmp) /var/log/wtmp
%ghost %attr(0664,root,utmp) /var/run/utmp
%changelog
* Tue Oct 14 2008 Bill Nottingham <notting@redhat.com> - 8.76.4-1
- use 0.0.0.0/0, not 0/0, in calls to /sbin/ip (#460580)
- fix setting of console font/map (#458362, <ak@sensi.org>)
- explicitly run mdadm on boot to catch degraded arrays. (<dledford@redhat.com>)
- check more correctly whether rhgb actually starts. (#462763)
* Fri Aug 29 2008 Bill Nottingham <notting@redhat.com> - 8.76.3-1
- rc.sysinit: Don't use -L in find (#458652, #458504, CVE-2008-3524)
- fix clock rules to properly handle old-style RTC devices (#447019)
- rc.sysinit: ix typo, and don't restorecon on swap, etc. partitions (#448886)
* Thu May 15 2008 Bill Nottingham <notting@redhat.com> - 8.76.2-1
- Don't unmount sysfs in halt. (#446292)
* Wed May 14 2008 Peter Jones <pjones@redhat.com>
- init.d/functions: fix resolve_dm_raid() for older dmraid configs
* Wed May 7 2008 Bill Nottingham <notting@redhat.com> - 8.76.1-1
- NMDispatcher/05-netfs: fix check for default route (#445509)
* Fri May 2 2008 Bill Nottingham <notting@redhat.com> - 8.76-1
- fix tcsh syntax error (#444998)
- remove debugging cruft from rcS-sulogin
* Tue Apr 29 2008 Bill Nottingham <notting@redhat.com> - 8.74-1
- use full path to /sbin/ip in NetworkManagerDispatcher script (#444378)
- lang.{sh,csh}: read only user customization if LANG is already set (#372151)
* Fri Apr 25 2008 Bill Nottingham <notting@redhat.com> - 8.73-1
- move event-compat-sysv events here, obsolete it
- fix ctrl-alt-del during rc.sysinit (#444050)
- fix 'telinit X' from single-user mode (#444001)
* Thu Apr 24 2008 Bill Nottingham <notting@redhat.com> - 8.72-1
- don't have a S99single when using upstart (#444001, indirectly)
* Wed Apr 23 2008 Bill Nottingham <notting@redhat.com> - 8.71-1
- adjust to gdm using LANG instead of GDM_LANG (#372151, <rstrode@redhat.com>)
- rework netfs' check for networking availability to properly handle both network
and NetworkManager
* Tue Apr 15 2008 Bill Nottingham <notting@redhat.com> - 8.70-1
- find is now in /bin. Use it. (#192991, #239914, #244941, #442178)
- require event-compat-sysv for now (#442291)

View file

@ -1 +1 @@
e3cd9677b7e1103c0217f2455b9400a2 initscripts-8.70.tar.bz2
6b0e3f006ae54c9364c1394e32ec95af initscripts-8.76.4.tar.bz2