[anaconda] - Set installer environment hostname for sw raid LABELs (#640743) (rvykydal) - Device destroy action

Christopher Edward Lumens clumens at fedoraproject.org
Wed Dec 8 18:49:47 UTC 2010


commit ac1f74e50d15c88f38f1264a9a56b7a72f148e39
Author: Chris Lumens <clumens at redhat.com>
Date:   Wed Dec 8 13:49:36 2010 -0500

    - Set installer environment hostname for sw raid LABELs (#640743) (rvykydal)
    - Device destroy actions can only require other destroy actions. (#651589)
      (dlehman)
    - Use wipefs from util-linux-ng instead of dd to wipe old sigs. (dlehman)
    - Add cleanup-only mode to DeviceTree.populate. (dlehman)
    - Add unit tests for storage.partitioning.getNextPartitionType. (dlehman)
    - Only try logging to tty3 if we have permission to do so. (dlehman)
    - Enable network when getting .treeinfo (#632526) (rvykydal)
    - Fix default of network --device option to match rhel5 (#647462). (rvykydal)
    - Do not backtrace if repo is specified through kickstart only (#659781).
      (akozumpl)
    - Restore list-harddrives output to what users expect (#654436) (dcantrell)
    - Permit ext4 and ext2 for /boot on s390x (#638734) (dcantrell)
    - Check for ARPHRD_ETHER and ARPHRD_SLIP types in getDevices (#596826)
      (dcantrell)
    - Preserve and otherwise ignore noauto fstab entries. (#660017) (dlehman)
    - Fix "logvol --percent=" (#651445, jruemker). (clumens)
    - Add chroot command to bash_history. (pjones)
    - support for partial offload in udev_*_iscsi() functions. (akozumpl)
    - iscsi: partial offload drivers. (akozumpl)
    - analog: put it under /usr/bin so it's on the path in an installed system.
      (akozumpl)
    - Remove commented out broken code from LoopDevice.status. (dlehman)
    - Don't traceback when the action list is empty. (#657891) (dlehman)
    - Remove unused udev_device_is_{multipath,dmraid}_partition functions.
      (dlehman)
    - Set dm-uuid for anaconda disk image devices from devicetree. (dlehman)
    - Remove some unnecessarily hard-coded "/dev/mapper" strings. (dlehman)
    - Put the backend logger's config file in /tmp. (dlehman)
    - Move handling of /proc/bus/usb and /selinux into storage. (dlehman)
    - swapoff -a is only needed for livecd, so only do it for livecd. (dlehman)
    - Unlink backend logger config file when stopping logger. (dlehman)
    - Make FileDevice.path more consistent. (dlehman)
    - Add support for detecting already-active lvm. (dlehman)
    - Fix addUdevDevice so we can actually handle already-in-tree devices.
      (dlehman)
    - Make it possible to ignore md-fwraid member disks. (dlehman)
    - Revert rpmdb symlink hack. (dlehman)
    - Remove some unused code from storage.devicelibs.dm. (dlehman)
    - Add support for installing onto block device image files. (dlehman)
    - Generalize some of the device-mapper partition handling. (dlehman)
    - Add support for loop devices. (dlehman)
    - Add support for linear device-mapper devices. (dlehman)
    - Fix PartitionDevice.path to work with device-mapper disks. (dlehman)
    - There's no need to pass exclusiveDisks to doPartitioning separately.
      (dlehman)
    - Move storage device scanning parameters into a separate class. (dlehman)
    - Don't ignore %packages if --default is given (#621349, dcantrell). (clumens)
    - Don't traceback when displaying %post error messages (#654074). (clumens)
    - Display a warning message on TAINT_HARDWARE_UNSUPPORTED (#623140). (clumens)
    - If getting .treeinfo fails, try treeinfo (#635065). (clumens)
    - instPath -> rootPath (clumens)
    - Add rdate, tty, which to install image (mgracik)
    - Don't add --enablefingerprint unless fprintd-pam is installed (#656434).
      (clumens)

 .gitignore    |    1 +
 anaconda.spec |   61 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
 sources       |    2 +-
 3 files changed, 62 insertions(+), 2 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 839e4e1..6e62bb5 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,3 +5,4 @@ anaconda-15.2.tar.bz2
 /anaconda-15.6.tar.bz2
 /anaconda-15.7.tar.bz2
 /anaconda-15.8.tar.bz2
+/anaconda-15.9.tar.bz2
diff --git a/anaconda.spec b/anaconda.spec
index 1074126..063849a 100644
--- a/anaconda.spec
+++ b/anaconda.spec
@@ -2,7 +2,7 @@
 
 Summary: Graphical system installer
 Name:    anaconda
-Version: 15.8
+Version: 15.9
 Release: 1%{?dist}
 License: GPLv2+
 Group:   Applications/System
@@ -216,6 +216,8 @@ update-desktop-database &> /dev/null || :
 %{_libdir}/python*/site-packages/pyanaconda/*
 %{_libdir}/python*/site-packages/log_picker/*
 %{_libdir}/anaconda*
+%{_bindir}/analog
+%{_bindir}/anaconda-image-cleanup
 %ifarch %livearches
 %{_bindir}/liveinst
 %{_sbindir}/liveinst
@@ -227,6 +229,63 @@ update-desktop-database &> /dev/null || :
 %endif
 
 %changelog
+* Wed Dec 08 2010 Chris Lumens <clumens at redhat.com> - 15.9-1
+- Set installer environment hostname for sw raid LABELs (#640743) (rvykydal)
+- Device destroy actions can only require other destroy actions. (#651589)
+  (dlehman)
+- Use wipefs from util-linux-ng instead of dd to wipe old sigs. (dlehman)
+- Add cleanup-only mode to DeviceTree.populate. (dlehman)
+- Add unit tests for storage.partitioning.getNextPartitionType. (dlehman)
+- Only try logging to tty3 if we have permission to do so. (dlehman)
+- Enable network when getting .treeinfo (#632526) (rvykydal)
+- Fix default of network --device option to match rhel5 (#647462). (rvykydal)
+- Do not backtrace if repo is specified through kickstart only (#659781).
+  (akozumpl)
+- Restore list-harddrives output to what users expect (#654436) (dcantrell)
+- Permit ext4 and ext2 for /boot on s390x (#638734) (dcantrell)
+- Check for ARPHRD_ETHER and ARPHRD_SLIP types in getDevices (#596826)
+  (dcantrell)
+- Preserve and otherwise ignore noauto fstab entries. (#660017) (dlehman)
+- Fix "logvol --percent=" (#651445, jruemker). (clumens)
+- Add chroot command to bash_history. (pjones)
+- support for partial offload in udev_*_iscsi() functions. (akozumpl)
+- iscsi: partial offload drivers. (akozumpl)
+- analog: put it under /usr/bin so it's on the path in an installed system.
+  (akozumpl)
+- Remove commented out broken code from LoopDevice.status. (dlehman)
+- Don't traceback when the action list is empty. (#657891) (dlehman)
+- Remove unused udev_device_is_{multipath,dmraid}_partition functions.
+  (dlehman)
+- Set dm-uuid for anaconda disk image devices from devicetree. (dlehman)
+- Remove some unnecessarily hard-coded "/dev/mapper" strings. (dlehman)
+- Put the backend logger's config file in /tmp. (dlehman)
+- Move handling of /proc/bus/usb and /selinux into storage. (dlehman)
+- swapoff -a is only needed for livecd, so only do it for livecd. (dlehman)
+- Unlink backend logger config file when stopping logger. (dlehman)
+- Make FileDevice.path more consistent. (dlehman)
+- Add support for detecting already-active lvm. (dlehman)
+- Fix addUdevDevice so we can actually handle already-in-tree devices.
+  (dlehman)
+- Make it possible to ignore md-fwraid member disks. (dlehman)
+- Revert rpmdb symlink hack. (dlehman)
+- Remove some unused code from storage.devicelibs.dm. (dlehman)
+- Add support for installing onto block device image files. (dlehman)
+- Generalize some of the device-mapper partition handling. (dlehman)
+- Add support for loop devices. (dlehman)
+- Add support for linear device-mapper devices. (dlehman)
+- Fix PartitionDevice.path to work with device-mapper disks. (dlehman)
+- There's no need to pass exclusiveDisks to doPartitioning separately.
+  (dlehman)
+- Move storage device scanning parameters into a separate class. (dlehman)
+- Don't ignore %packages if --default is given (#621349, dcantrell). (clumens)
+- Don't traceback when displaying %post error messages (#654074). (clumens)
+- Display a warning message on TAINT_HARDWARE_UNSUPPORTED (#623140). (clumens)
+- If getting .treeinfo fails, try treeinfo (#635065). (clumens)
+- instPath -> rootPath (clumens)
+- Add rdate, tty, which to install image (mgracik)
+- Don't add --enablefingerprint unless fprintd-pam is installed (#656434).
+  (clumens)
+
 * Tue Nov 30 2010 Chris Lumens <clumens at redhat.com> - 15.8-1
 - Ignore immutable disks in clearPartitions (#657115) (bcl)
 - Add biosdevname to installer environment (Matt_Domsch)
diff --git a/sources b/sources
index b6b3317..a592cf0 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-ca42179e2981c15f7d7c8492cbc21f66  anaconda-15.8.tar.bz2
+f3a83dc1de1e01676921419b39b1430a  anaconda-15.9.tar.bz2


More information about the scm-commits mailing list