- use a dracut shutdown hook to eject media (#787461) (bcl)
- add dracut shutdown eject hook function (#787461) (bcl) - The createSuggested methods have changed name (#791204, #795058). (clumens) - iscsi: no discovery on each target login (#752066) (rvykydal) - Use libpwquality to check root password strength (#755883) (mgracik) - Generate repo= ks command only for repos added by user (#738577) (rvykydal) - Fix a typo (#794504). (clumens) - Add support for network --device=link in stage2 kickstart (#790332) (rvykydal) - Don't set the pmbr bootable flag on Macs, whether booted via EFI or not (mjg) - Don't set GPT HFS+ partitions as bootable (mjg) - Mark HFS+ as fsckable (mjg) - Set default lang and create default locale files early (wwoods) - Generate connection UUID in inital ifcfg files created by anaconda (#705328) (rvykydal) - Take in change of a binary name (brcm_iscsiuio -> iscsiuio) (#731761) (rvykydal) - Add 'traceback' boot option for python-meh and libreport testing (vpodzime) - fix setattr in set_cmdline_bool (pschindl) - Add _mounttype to HFSPlus (mjg) - Add support for UEFI Mac installs (mjg) - Add support for HFS+ partitions (mjg) - Remove networking configuration steps from linuxrc.s390 (#783227) (dcantrell) - Clear partitions' metadata when 'clearpart --initlabel' used. (#783841) (dlehman) - Fix support for detecting existing mirrored lvs. (#734128) (dlehman) - Don't put partitions into device.map (pjones) - fix potential EFIGRUB infinite loop (bcl) - finish ROOT_PATH changes in bootloader (#789169) (bcl) - Be more verbose about upgrade failures (#735060) (bcl) - log tracebacks from importing formats (bcl) - Skip setting PMBR boot flag on EFI (#754850) (mjg)
This commit is contained in:
parent
ff82e98e3f
commit
bd4c935ff4
1
.gitignore
vendored
1
.gitignore
vendored
@ -40,3 +40,4 @@ anaconda-15.2.tar.bz2
|
|||||||
/anaconda-17.5.tar.bz2
|
/anaconda-17.5.tar.bz2
|
||||||
/anaconda-17.6.tar.bz2
|
/anaconda-17.6.tar.bz2
|
||||||
/anaconda-18.0.tar.bz2
|
/anaconda-18.0.tar.bz2
|
||||||
|
/anaconda-18.1.tar.bz2
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Summary: Graphical system installer
|
Summary: Graphical system installer
|
||||||
Name: anaconda
|
Name: anaconda
|
||||||
Version: 18.0
|
Version: 18.1
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
Group: Applications/System
|
Group: Applications/System
|
||||||
@ -125,7 +125,7 @@ Requires: lvm2
|
|||||||
Requires: util-linux >= 2.15.1
|
Requires: util-linux >= 2.15.1
|
||||||
Requires: system-config-keyboard >= %{sckeyboardver}
|
Requires: system-config-keyboard >= %{sckeyboardver}
|
||||||
Requires: dbus-python
|
Requires: dbus-python
|
||||||
Requires: cracklib-python
|
Requires: python-pwquality
|
||||||
Requires: python-bugzilla
|
Requires: python-bugzilla
|
||||||
Requires: python-nss
|
Requires: python-nss
|
||||||
Requires: tigervnc-server-minimal
|
Requires: tigervnc-server-minimal
|
||||||
@ -135,6 +135,7 @@ Requires: zenity
|
|||||||
%endif
|
%endif
|
||||||
Requires: createrepo >= %{createrepover}
|
Requires: createrepo >= %{createrepover}
|
||||||
Requires: squashfs-tools
|
Requires: squashfs-tools
|
||||||
|
Requires: hfsplus-tools
|
||||||
Requires: genisoimage >= %{genisoimagever}
|
Requires: genisoimage >= %{genisoimagever}
|
||||||
Requires: GConf2 >= %{gconfversion}
|
Requires: GConf2 >= %{gconfversion}
|
||||||
%ifarch %{ix86} x86_64
|
%ifarch %{ix86} x86_64
|
||||||
@ -155,6 +156,9 @@ Requires: fcoe-utils >= %{fcoeutilsver}
|
|||||||
%ifarch %{sparc}
|
%ifarch %{sparc}
|
||||||
Requires: elftoaout piggyback
|
Requires: elftoaout piggyback
|
||||||
%endif
|
%endif
|
||||||
|
%ifarch x86_64
|
||||||
|
Requires: mactel-boot
|
||||||
|
%endif
|
||||||
Obsoletes: anaconda-images <= 10
|
Obsoletes: anaconda-images <= 10
|
||||||
Provides: anaconda-images = %{version}-%{release}
|
Provides: anaconda-images = %{version}-%{release}
|
||||||
Obsoletes: anaconda-runtime < %{version}-%{release}
|
Obsoletes: anaconda-runtime < %{version}-%{release}
|
||||||
@ -232,6 +236,40 @@ update-desktop-database &> /dev/null || :
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Feb 20 2012 Brian C. Lane <bcl@redhat.com> - 18.1-1
|
||||||
|
- use a dracut shutdown hook to eject media (#787461) (bcl)
|
||||||
|
- add dracut shutdown eject hook function (#787461) (bcl)
|
||||||
|
- The createSuggested methods have changed name (#791204, #795058). (clumens)
|
||||||
|
- iscsi: no discovery on each target login (#752066) (rvykydal)
|
||||||
|
- Use libpwquality to check root password strength (#755883) (mgracik)
|
||||||
|
- Generate repo= ks command only for repos added by user (#738577) (rvykydal)
|
||||||
|
- Fix a typo (#794504). (clumens)
|
||||||
|
- Add support for network --device=link in stage2 kickstart (#790332)
|
||||||
|
(rvykydal)
|
||||||
|
- Don't set the pmbr bootable flag on Macs, whether booted via EFI or not (mjg)
|
||||||
|
- Don't set GPT HFS+ partitions as bootable (mjg)
|
||||||
|
- Mark HFS+ as fsckable (mjg)
|
||||||
|
- Set default lang and create default locale files early (wwoods)
|
||||||
|
- Generate connection UUID in inital ifcfg files created by anaconda (#705328)
|
||||||
|
(rvykydal)
|
||||||
|
- Take in change of a binary name (brcm_iscsiuio -> iscsiuio) (#731761)
|
||||||
|
(rvykydal)
|
||||||
|
- Add 'traceback' boot option for python-meh and libreport testing (vpodzime)
|
||||||
|
- fix setattr in set_cmdline_bool (pschindl)
|
||||||
|
- Add _mounttype to HFSPlus (mjg)
|
||||||
|
- Add support for UEFI Mac installs (mjg)
|
||||||
|
- Add support for HFS+ partitions (mjg)
|
||||||
|
- Remove networking configuration steps from linuxrc.s390 (#783227) (dcantrell)
|
||||||
|
- Clear partitions' metadata when 'clearpart --initlabel' used. (#783841)
|
||||||
|
(dlehman)
|
||||||
|
- Fix support for detecting existing mirrored lvs. (#734128) (dlehman)
|
||||||
|
- Don't put partitions into device.map (pjones)
|
||||||
|
- fix potential EFIGRUB infinite loop (bcl)
|
||||||
|
- finish ROOT_PATH changes in bootloader (#789169) (bcl)
|
||||||
|
- Be more verbose about upgrade failures (#735060) (bcl)
|
||||||
|
- log tracebacks from importing formats (bcl)
|
||||||
|
- Skip setting PMBR boot flag on EFI (#754850) (mjg)
|
||||||
|
|
||||||
* Thu Feb 09 2012 Brian C. Lane <bcl@redhat.com> - 18.0-1
|
* Thu Feb 09 2012 Brian C. Lane <bcl@redhat.com> - 18.0-1
|
||||||
- Set ONBOOT=yes for FCoE devices (#755147) (rvykydal)
|
- Set ONBOOT=yes for FCoE devices (#755147) (rvykydal)
|
||||||
- Add details to transifex.doc for branching (bcl)
|
- Add details to transifex.doc for branching (bcl)
|
||||||
|
Loading…
Reference in New Issue
Block a user