Compare commits

...

12 Commits
master ... f8

Author SHA1 Message Date
Fedora Release Engineering 43f87ef172 dist-git conversion 2010-07-29 05:41:29 +00:00
Bill Nottingham 70ea3aeabb Fix typo that causes a failure to update the common directory. (releng #2781) 2009-11-26 01:27:34 +00:00
Peter Jones 13d9d22081 - Fix path for swapoff in fix for #357401 . 2007-11-01 22:07:44 +00:00
Jeremy Katz 6cd8dbb95f * Wed Oct 31 2007 Jeremy Katz <katzj@redhat.com> - 11.3.0.50-1
- Fix creating users in kickstart (#358901)
2007-10-31 04:13:46 +00:00
Jeremy Katz cbb8d0517b * Tue Oct 30 2007 Jeremy Katz <katzj@redhat.com> - 11.3.0.49-1
- Fix language display (#358411)
- Avoid dmraid traceback with live installs over previously existing
  install (#357401)
2007-10-30 20:33:55 +00:00
Jeremy Katz ae45f095e3 * Sun Oct 28 2007 Jeremy Katz <katzj@redhat.com> - 11.3.0.48-1
- Fix docs location (#356021)
- Live images don't have xfsprogs by default, so look for xfsprogs before
  allowing xfs as a filesystem (#355351)
- Don't show bridge devices (#354561)
2007-10-29 02:16:36 +00:00
Bill Nottingham a30d52d734 update to new version 2007-10-26 19:00:16 +00:00
Jeremy Katz c66338a7e0 * Thu Oct 25 2007 Jeremy Katz <katzj@redhat.com> - 11.3.0.46-1
- Fix mirrorlist used to be the fedora8 one
- Ignore sg devices (#330930)
- Add kdepim to multilib upgrade blacklist (#339981)
- Fix retries (clumens, #330641)
2007-10-25 20:14:59 +00:00
Jeremy Katz b0083a9ed4 * Tue Oct 23 2007 Jeremy Katz <katzj@redhat.com> 11.3.0.45-1
- A few liveinst cleanups
- Fix writing out of ipv6 network config (dcantrell, #328931)
- Disable betanag
- Don't traceback when offering the chance to retry a
  failed mirror (clumens, #349371)
2007-10-24 03:13:28 +00:00
Jeremy Katz 88b034cefb * Mon Oct 22 2007 Jeremy Katz <katzj@redhat.com> 11.3.0.44-1
- Fix warning about arch changes on upgrade (#222424)
- Fix phantom kernels on upgrade (#325871)
- Add some kde packages to the multilib upgrade blacklist (#339981)
- Require policycoreutils (clumens, #343861)
- Fix typo leading to traceback (clumens)
- Fix processing of ks=nfs (clumens)
- Memory freeing cleanups (pjones)
2007-10-23 01:27:08 +00:00
Jeremy Katz b32d3099ee * Sun Oct 21 2007 Jeremy Katz <katzj@redhat.com> 11.3.0.43-1
- Fix closing of some fds (pjones)
- Fix ip address used in a few cases (clumens, #336761)
- Filter out non-useful networking devices from being
  displayed (clumens, #338461)
- Fix a quoting bug with pxelinux (#248170)
- Label lost+found (pjones, #335621)
- Update udev rules to not match wmaster (notting)
- gptsync update (pjones)
- Detect invalid harddrives given to bootloader --driveorder (#33861)
2007-10-21 19:27:32 +00:00
Jesse Keating 362396c119 Initialize branch F-8 for anaconda 2007-10-20 03:58:42 +00:00
7 changed files with 74 additions and 5 deletions

View File

@ -1 +0,0 @@
anaconda-11.3.0.42.tar.bz2

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
anaconda-11.3.0.50.tar.bz2

View File

@ -4,7 +4,7 @@ NAME := anaconda
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
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
endef
MAKEFILE_COMMON := $(shell $(find-makefile-common))

View File

@ -0,0 +1,12 @@
diff -up anaconda-11.3.0.50/liveinst/liveinst.sh.swapoff-path anaconda-11.3.0.50/liveinst/liveinst.sh
--- anaconda-11.3.0.50/liveinst/liveinst.sh.swapoff-path 2007-11-01 18:01:52.000000000 -0400
+++ anaconda-11.3.0.50/liveinst/liveinst.sh 2007-11-01 18:02:11.000000000 -0400
@@ -37,7 +37,7 @@ if [ -x /usr/sbin/setenforce -a -e /seli
/usr/sbin/setenforce 0
fi
-/usr/sbin/swapoff -a
+/sbin/swapoff -a
/sbin/lvm vgchange -an --ignorelockingfailure
if [ -x /usr/bin/hal-lock -a -e /var/lock/subsys/haldaemon ]; then

View File

@ -2,13 +2,14 @@
Summary: Graphical system installer
Name: anaconda
Version: 11.3.0.42
Release: 1
Version: 11.3.0.50
Release: 2
License: GPLv2
Group: Applications/System
URL: http://fedoraproject.org/wiki/Anaconda
Source0: anaconda-%{version}.tar.bz2
Patch0: anaconda-11.3.0.50-swapoff-path.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@ -73,6 +74,7 @@ BuildRequires: zlib-devel
BuildRequires: desktop-file-utils
%endif
Requires: policycoreutils
Requires: rpm-python >= %{rpmpythonver}
Requires: rhpl >= %{rhplver}
Requires: booty
@ -146,6 +148,7 @@ an md5sum implanted into an ISO9660 image.
%prep
%setup -q
%patch0 -p1
%build
%{__make} depend
@ -214,6 +217,59 @@ desktop-file-install --vendor="" --dir=%{buildroot}%{_datadir}/applications %{bu
/sbin/chkconfig --del reconfig >/dev/null 2>&1 || :
%changelog
* Thu Nov 01 2007 Peter Jones <pjones@redhat.com> - 11.3.0.50-2
- Fix path for swapoff in fix for #357401 .
* Wed Oct 31 2007 Jeremy Katz <katzj@redhat.com> - 11.3.0.50-1
- Fix creating users in kickstart (#358901)
* Tue Oct 30 2007 Jeremy Katz <katzj@redhat.com> - 11.3.0.49-1
- Fix language display (#358411)
- Avoid dmraid traceback with live installs over previously existing
install (#357401)
* Sun Oct 28 2007 Jeremy Katz <katzj@redhat.com> - 11.3.0.48-1
- Fix docs location (#356021)
- Live images don't have xfsprogs by default, so look for xfsprogs before
allowing xfs as a filesystem (#355351)
- Don't show bridge devices (#354561)
* Fri Oct 26 2007 Bill Nottingham <notting@redhat.com> - 11.3.0.47-1
- fix live install (#354571)
* Thu Oct 25 2007 Jeremy Katz <katzj@redhat.com> - 11.3.0.46-1
- Fix mirrorlist used to be the fedora8 one
- Ignore sg devices (#330930)
- Add kdepim to multilib upgrade blacklist (#339981)
- Fix retries (clumens, #330641)
* Tue Oct 23 2007 Jeremy Katz <katzj@redhat.com> 11.3.0.45-1
- A few liveinst cleanups
- Fix writing out of ipv6 network config (dcantrell, #328931)
- Disable betanag
- Don't traceback when offering the chance to retry a
failed mirror (clumens, #349371)
* Mon Oct 22 2007 Jeremy Katz <katzj@redhat.com> 11.3.0.44-1
- Fix warning about arch changes on upgrade (#222424)
- Fix phantom kernels on upgrade (#325871)
- Add some kde packages to the multilib upgrade blacklist (#339981)
- Require policycoreutils (clumens, #343861)
- Fix typo leading to traceback (clumens)
- Fix processing of ks=nfs (clumens)
- Memory freeing cleanups (pjones)
* Sun Oct 21 2007 Jeremy Katz <katzj@redhat.com> 11.3.0.43-1
- Fix closing of some fds (pjones)
- Fix ip address used in a few cases (clumens, #336761)
- Filter out non-useful networking devices from being
displayed (clumens, #338461)
- Fix a quoting bug with pxelinux (#248170)
- Label lost+found (pjones, #335621)
- Update udev rules to not match wmaster (notting)
- gptsync update (pjones)
- Detect invalid harddrives given to bootloader --driveorder (#33861)
* Wed Oct 17 2007 Peter Jones <pjones@redhat.com> 11.3.0.42-1
- Don't include 'sound-and-video' in 'Office and Productivity' since the
former is enabled by default, and including it here causes disabling OaP

1
branch Normal file
View File

@ -0,0 +1 @@
F-8

View File

@ -1 +1 @@
1dbfe28250f80db4b959ffe9f331c369 anaconda-11.3.0.42.tar.bz2
963c8e1d1485c60755f6792816ed228d anaconda-11.3.0.50.tar.bz2