Compare commits

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

4 commits

Author SHA1 Message Date
Bill Nottingham
1b3b4ff3f9 9.34.4-1 2012-11-15 17:14:43 -05:00
Bill Nottingham
5d10181e6e 9.34.3-1 2012-07-06 09:19:36 -04:00
Bill Nottingham
ca3e201d46 9.34.2-1 2012-03-12 14:11:50 -04:00
Bill Nottingham
ba7984db6c 9.34.1-1 2012-03-09 13:13:57 -05:00
4 changed files with 32 additions and 29 deletions

3
.gitignore vendored
View file

@ -1,2 +1 @@
/initscripts-9.33.tar.bz2
/initscripts-9.34.tar.bz2
/initscripts-9.34.4.tar.bz2

View file

@ -1,18 +0,0 @@
commit 807a7f34cd58c537d8b361694d0a4bad23d8aff9
Author: Bill Nottingham <notting@redhat.com>
Date: Tue Oct 25 15:32:53 2011 -0400
Don't write to stderr that's not there (or a socket, or whatever, #746263)
diff --git a/service b/service
index 6f17934..2e2d4ea 100755
--- a/service
+++ b/service
@@ -69,6 +69,6 @@ done
if [ -f "${SERVICEDIR}/${SERVICE}" ]; then
env -i PATH="$PATH" TERM="$TERM" SYSTEMCTL_IGNORE_DEPENDENCIES=${SYSTEMCTL_IGNORE_DEPENDENCIES} SYSTEMCTL_SKIP_REDIRECT=${SYSTEMCTL_SKIP_REDIRECT} "${SERVICEDIR}/${SERVICE}" ${OPTIONS}
else
- echo $"Redirecting to /bin/systemctl ${OPTIONS} ${SERVICE}.service" >/dev/stderr
+ [ -c /dev/stderr ] && echo $"Redirecting to /bin/systemctl ${OPTIONS} ${SERVICE}.service" >/dev/stderr
exec /bin/systemctl ${OPTIONS} ${SERVICE}.service
fi

View file

@ -4,14 +4,13 @@
Summary: The inittab file and the /etc/init.d scripts
Name: initscripts
Version: 9.34
Version: 9.34.4
# ppp-watch is GPLv2+, everything else is GPLv2
License: GPLv2 and GPLv2+
Group: System Environment/Base
Release: 2%{?dist}
Release: 1%{?dist}
URL: http://fedorahosted.org/releases/i/n/initscripts/
Source: http://fedorahosted.org/releases/i/n/initscripts/initscripts-%{version}.tar.bz2
Patch: 807a7f3.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
Requires: mingetty, /bin/awk, /bin/sed, mktemp
Requires: /sbin/sysctl
@ -91,7 +90,6 @@ Currently, this consists of various memory checking code.
%prep
%setup -q
%patch -p1
%build
make
@ -264,7 +262,6 @@ rm -rf $RPM_BUILD_ROOT
/sbin/fstab-decode
/sbin/genhostid
/sbin/getkey
/sbin/securetty
/sbin/sushell
%attr(2755,root,root) /sbin/netreport
/lib/udev/rules.d/*
@ -273,6 +270,7 @@ rm -rf $RPM_BUILD_ROOT
/sbin/service
/sbin/ppp-watch
%{_mandir}/man*/*
%exclude %{_mandir}/man*/securetty*
%dir %attr(775,root,root) /var/run/netreport
%dir /etc/ppp
%dir /etc/ppp/peers
@ -294,6 +292,7 @@ rm -rf $RPM_BUILD_ROOT
%ghost %verify(not md5 size mtime) %config(noreplace,missingok) /etc/crypttab
%dir /etc/tmpfiles.d
/etc/tmpfiles.d/initscripts.conf
%dir /usr/libexec/initscripts/legacy-actions
%files legacy
%defattr(-,root,root)
@ -311,6 +310,8 @@ rm -rf $RPM_BUILD_ROOT
/lib/udev/rules.d/*
/lib/udev/console_init
/lib/udev/console_check
/sbin/securetty
%{_mandir}/man*/securetty*
%files -n debugmode
%defattr(-,root,root)
@ -318,10 +319,32 @@ rm -rf $RPM_BUILD_ROOT
/etc/profile.d/debug*
%changelog
* Tue Oct 25 2011 Bill Nottingham <notting@redhat.com> - 9.34-2
* Thu Nov 15 2012 Bill Nottingham <notting@redhat.com> - 9.34.4-1
- disable MALLOC_CHECK_ in debugmode, it's not thread-safe (#853175)
- use iwconfig instead of sysfs to check for wireless devices for kernel 3.6 (#875328)
* Fri Jul 6 2012 Bill Nottingham <notting@redhat.com> - 9.34.3-1
- assorted documentation cleanups
- service: add support for legacy custom actions packaged in
/usr/libexec/initscripts/legacy-actions/<script>/<action>
* Mon Mar 12 2012 Bill Nottingham <notting@redhat.com> - 9.34.2-1
- ifup-aliases: fix IFS usage mangling of device names (#802119)
- ifup/ifdown: fix typo (#802055, <lubek@users.sourceforge.net>)
* Fri Mar 9 2012 Bill Nottingham <notting@redhat.com> - 9.34.1-1
- sysconfig.txt: clean up section on disabling IPv6
- ifup: allow for ifup-$TYPE/ifdown-$TYPE
- fedora-readonly.service: drop StandardInput=tty (#785662)
- sysconfig.txt: document additional ETHTOOL_OPTS enhancements (<raghusiddarth@gmail.com>)
- don't use ifconfig in ifup-aliases (#721010, 588993, based on <tgummels@redhat.com>)
- fedora-storage-init: handle dmraid sets with spaces (#728795, <lnykryn@redhat.com>)
- fedora-readonly: don't exit with an error if SEinux isn't active. (#768628)
- fedora-wait-storage: drop stdin/stdout/stderr (#735867)
* Tue Oct 25 2011 Bill Nottingham <notting@redhat.com> - 9.34-1
- read locale.conf if it exists (#706756)
- ifdown: fix logic error with removing arp_ip_target (#745681)
- service: don't write to stderr that's not there (#746263)
* Wed Oct 12 2011 Bill Nottingham <notting@redhat.com> - 9.33-1
- netconsole: only use the first ARP response (#744309, <doug.knight@karmix.org>)

View file

@ -1,2 +1 @@
02badee8515a3fddf853bd6316c16ced initscripts-9.33.tar.bz2
b0c99414b92dc6d87bef7d9f762c567c initscripts-9.34.tar.bz2
5727c751393e6a371abb599f663dafe9 initscripts-9.34.4.tar.bz2