|
|
|
|
@@ -1,33 +1,44 @@
|
|
|
|
|
# -*- rpm-spec -*-
|
|
|
|
|
|
|
|
|
|
%if "%{fedora}" >= "8"
|
|
|
|
|
%define with_polkit 1
|
|
|
|
|
%define with_proxy no
|
|
|
|
|
%else
|
|
|
|
|
%define with_polkit 0
|
|
|
|
|
%define with_proxy yes
|
|
|
|
|
%define with_xen 0%{!?_without_xen:1}
|
|
|
|
|
%define with_xen_proxy 0%{!?_without_xen_proxy:1}
|
|
|
|
|
%define with_qemu 0%{!?_without_qemu:1}
|
|
|
|
|
%define with_openvz 0%{!?_without_openvz:1}
|
|
|
|
|
%define with_lxc 0%{!?_without_lxc:1}
|
|
|
|
|
%define with_sasl 0%{!?_without_sasl:1}
|
|
|
|
|
%define with_avahi 0%{!?_without_avahi:1}
|
|
|
|
|
%define with_polkit 0%{!?_without_polkit:0}
|
|
|
|
|
%define with_python 0%{!?_without_python:1}
|
|
|
|
|
%define with_libvirtd 0%{!?_without_libvirtd:1}
|
|
|
|
|
|
|
|
|
|
# Xen is available only on i386 x86_64 ia64
|
|
|
|
|
%ifnarch i386 i686 x86_64 ia64
|
|
|
|
|
%define with_xen 0
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%if ! %{with_xen}
|
|
|
|
|
%define with_xen_proxy 0
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%if "%{fedora}"
|
|
|
|
|
%ifarch ppc64
|
|
|
|
|
%define with_qemu 0
|
|
|
|
|
%else
|
|
|
|
|
%define with_qemu 1
|
|
|
|
|
%endif
|
|
|
|
|
%else
|
|
|
|
|
%define with_qemu 0
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%if 0%{fedora} >= 8
|
|
|
|
|
%define with_polkit 0%{!?_without_polkit:1}
|
|
|
|
|
%define with_xen_proxy 0
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
Summary: Library providing a simple API virtualization
|
|
|
|
|
Name: libvirt
|
|
|
|
|
Version: 0.4.1
|
|
|
|
|
Release: 2%{?dist}%{?extra_release}
|
|
|
|
|
License: LGPL
|
|
|
|
|
Version: 0.4.6
|
|
|
|
|
Release: 1%{?dist}%{?extra_release}
|
|
|
|
|
License: LGPLv2+
|
|
|
|
|
Group: Development/Libraries
|
|
|
|
|
Source: libvirt-%{version}.tar.gz
|
|
|
|
|
Patch0: libvirt-0.4.1-qemud1.patch
|
|
|
|
|
Patch1: libvirt-0.4.1-qemud2.patch
|
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
|
|
|
|
|
URL: http://libvirt.org/
|
|
|
|
|
BuildRequires: python python-devel
|
|
|
|
|
Requires: libxml2
|
|
|
|
|
@@ -39,21 +50,25 @@ Requires: iptables
|
|
|
|
|
# So remote clients can access libvirt over SSH tunnel
|
|
|
|
|
# (client invokes 'nc' against the UNIX socket on the server)
|
|
|
|
|
Requires: nc
|
|
|
|
|
%if %{with_sasl}
|
|
|
|
|
Requires: cyrus-sasl
|
|
|
|
|
# Not technically required, but makes 'out-of-box' config
|
|
|
|
|
# work correctly & doesn't have onerous dependencies
|
|
|
|
|
Requires: cyrus-sasl-md5
|
|
|
|
|
%endif
|
|
|
|
|
%if %{with_polkit}
|
|
|
|
|
Requires: PolicyKit >= 0.6
|
|
|
|
|
%endif
|
|
|
|
|
# For mount/umount in FS driver
|
|
|
|
|
BuildRequires: util-linux
|
|
|
|
|
# PPC64 has no Xen nor QEmu, try to build anyway
|
|
|
|
|
%ifnarch ppc64
|
|
|
|
|
# For showmount in FS driver (netfs discovery)
|
|
|
|
|
BuildRequires: nfs-utils
|
|
|
|
|
Requires: nfs-utils
|
|
|
|
|
%if %{with_qemu}
|
|
|
|
|
# From QEMU RPMs
|
|
|
|
|
Requires: /usr/bin/qemu-img
|
|
|
|
|
%else
|
|
|
|
|
%if %{with_xen}
|
|
|
|
|
# From Xen RPMs
|
|
|
|
|
Requires: /usr/sbin/qcow-create
|
|
|
|
|
%endif
|
|
|
|
|
@@ -64,33 +79,37 @@ Requires: lvm2
|
|
|
|
|
Requires: iscsi-initiator-utils
|
|
|
|
|
# For disk driver
|
|
|
|
|
Requires: parted
|
|
|
|
|
%ifarch i386 x86_64 ia64
|
|
|
|
|
%if %{with_xen}
|
|
|
|
|
BuildRequires: xen-devel
|
|
|
|
|
%endif
|
|
|
|
|
BuildRequires: libxml2-devel
|
|
|
|
|
BuildRequires: xhtml1-dtds
|
|
|
|
|
BuildRequires: readline-devel
|
|
|
|
|
BuildRequires: ncurses-devel
|
|
|
|
|
BuildRequires: gettext
|
|
|
|
|
BuildRequires: gnutls-devel
|
|
|
|
|
%if %{with_avahi}
|
|
|
|
|
BuildRequires: avahi-devel
|
|
|
|
|
%endif
|
|
|
|
|
BuildRequires: libselinux-devel
|
|
|
|
|
BuildRequires: dnsmasq
|
|
|
|
|
BuildRequires: bridge-utils
|
|
|
|
|
%if %{with_qemu}
|
|
|
|
|
BuildRequires: qemu
|
|
|
|
|
%endif
|
|
|
|
|
%if %{with_sasl}
|
|
|
|
|
BuildRequires: cyrus-sasl-devel
|
|
|
|
|
%endif
|
|
|
|
|
%if %{with_polkit}
|
|
|
|
|
BuildRequires: PolicyKit-devel >= 0.6
|
|
|
|
|
%endif
|
|
|
|
|
# For mount/umount in FS driver
|
|
|
|
|
BuildRequires: util-linux
|
|
|
|
|
# PPC64 has no Xen nor QEmu, try to build anyway
|
|
|
|
|
%ifnarch ppc64
|
|
|
|
|
%if %{with_qemu}
|
|
|
|
|
# From QEMU RPMs
|
|
|
|
|
BuildRequires: /usr/bin/qemu-img
|
|
|
|
|
%else
|
|
|
|
|
%if %{with_xen}
|
|
|
|
|
# From Xen RPMs
|
|
|
|
|
BuildRequires: /usr/sbin/qcow-create
|
|
|
|
|
%endif
|
|
|
|
|
@@ -115,7 +134,7 @@ Summary: Libraries, includes, etc. to compile with the libvirt library
|
|
|
|
|
Group: Development/Libraries
|
|
|
|
|
Requires: libvirt = %{version}
|
|
|
|
|
Requires: pkgconfig
|
|
|
|
|
%ifarch i386 x86_64 ia64
|
|
|
|
|
%if %{with_xen}
|
|
|
|
|
Requires: xen-devel
|
|
|
|
|
%endif
|
|
|
|
|
Obsoletes: libvir-devel
|
|
|
|
|
@@ -124,6 +143,7 @@ Obsoletes: libvir-devel
|
|
|
|
|
Includes and documentations for the C library providing an API to use
|
|
|
|
|
the virtualization capabilities of recent versions of Linux (and other OSes).
|
|
|
|
|
|
|
|
|
|
%if %{with_python}
|
|
|
|
|
%package python
|
|
|
|
|
Summary: Python bindings for the libvirt library
|
|
|
|
|
Group: Development/Libraries
|
|
|
|
|
@@ -135,35 +155,61 @@ The libvirt-python package contains a module that permits applications
|
|
|
|
|
written in the Python programming language to use the interface
|
|
|
|
|
supplied by the libvirt library to use the virtualization capabilities
|
|
|
|
|
of recent versions of Linux (and other OSes).
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
|
%setup -q
|
|
|
|
|
%patch0 -p1
|
|
|
|
|
%patch1 -p1
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
# Xen is available only on i386 x86_64 ia64
|
|
|
|
|
%ifarch i386 i686 x86_64 ia64
|
|
|
|
|
%configure --with-init-script=redhat \
|
|
|
|
|
--with-qemud-pid-file=%{_localstatedir}/run/libvirt_qemud.pid \
|
|
|
|
|
--with-remote-file=%{_localstatedir}/run/libvirtd.pid \
|
|
|
|
|
--with-xen-proxy=%{with_proxy}
|
|
|
|
|
%else
|
|
|
|
|
%ifnarch ppc64
|
|
|
|
|
%configure --without-xen \
|
|
|
|
|
--with-init-script=redhat \
|
|
|
|
|
--with-qemud-pid-file=%{_localstatedir}/run/libvirt_qemud.pid \
|
|
|
|
|
--with-remote-file=%{_localstatedir}/run/libvirtd.pid
|
|
|
|
|
%else
|
|
|
|
|
%configure --without-xen \
|
|
|
|
|
--without-qemu \
|
|
|
|
|
--with-init-script=redhat \
|
|
|
|
|
--with-qemud-pid-file=%{_localstatedir}/run/libvirt_qemud.pid \
|
|
|
|
|
--with-remote-file=%{_localstatedir}/run/libvirtd.pid
|
|
|
|
|
%endif
|
|
|
|
|
%if ! %{with_xen}
|
|
|
|
|
%define _without_xen --without-xen
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
make
|
|
|
|
|
%if ! %{with_qemu}
|
|
|
|
|
%define _without_qemu --without-qemu
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%if ! %{with_openvz}
|
|
|
|
|
%define _without_openvz --without-openvz
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%if ! %{with_lxc}
|
|
|
|
|
%define _without_lxc --without-lxc
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%if ! %{with_sasl}
|
|
|
|
|
%define _without_sasl --without-sasl
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%if ! %{with_avahi}
|
|
|
|
|
%define _without_avahi --without-avahi
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%if ! %{with_polkit}
|
|
|
|
|
%define _without_polkit --without-polkit
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%if ! %{with_python}
|
|
|
|
|
%define _without_python --without-python
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%if ! %{with_libvirtd}
|
|
|
|
|
%define _without_libvirtd --without-libvirtd
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%configure %{?_without_xen} \
|
|
|
|
|
%{?_without_qemu} \
|
|
|
|
|
%{?_without_openvz} \
|
|
|
|
|
%{?_without_lxc} \
|
|
|
|
|
%{?_without_sasl} \
|
|
|
|
|
%{?_without_avahi} \
|
|
|
|
|
%{?_without_polkit} \
|
|
|
|
|
%{?_without_python} \
|
|
|
|
|
%{?_without_libvirtd} \
|
|
|
|
|
--with-init-script=redhat \
|
|
|
|
|
--with-qemud-pid-file=%{_localstatedir}/run/libvirt_qemud.pid \
|
|
|
|
|
--with-remote-file=%{_localstatedir}/run/libvirtd.pid
|
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
|
rm -fr %{buildroot}
|
|
|
|
|
@@ -176,7 +222,12 @@ rm -f $RPM_BUILD_ROOT%{_libdir}/*.a
|
|
|
|
|
rm -f $RPM_BUILD_ROOT%{_libdir}/python*/site-packages/*.la
|
|
|
|
|
rm -f $RPM_BUILD_ROOT%{_libdir}/python*/site-packages/*.a
|
|
|
|
|
install -d -m 0755 $RPM_BUILD_ROOT%{_localstatedir}/run/libvirt/
|
|
|
|
|
# Default dir for disk images defined in SELinux policy
|
|
|
|
|
install -d -m 0755 $RPM_BUILD_ROOT%{_localstatedir}/lib/libvirt/images/
|
|
|
|
|
# Default dir for kernel+initrd images defnied in SELinux policy
|
|
|
|
|
install -d -m 0755 $RPM_BUILD_ROOT%{_localstatedir}/lib/libvirt/boot/
|
|
|
|
|
|
|
|
|
|
%if %{with_qemu}
|
|
|
|
|
# We don't want to install /etc/libvirt/qemu/networks in the main %files list
|
|
|
|
|
# because if the admin wants to delete the default network completely, we don't
|
|
|
|
|
# want to end up re-incarnating it on every RPM upgrade.
|
|
|
|
|
@@ -187,14 +238,24 @@ rm -f $RPM_BUILD_ROOT%{_sysconfdir}/libvirt/qemu/networks/default.xml
|
|
|
|
|
rm -f $RPM_BUILD_ROOT%{_sysconfdir}/libvirt/qemu/networks/autostart/default.xml
|
|
|
|
|
# Strip auto-generated UUID - we need it generated per-install
|
|
|
|
|
sed -i -e "/<uuid>/d" $RPM_BUILD_ROOT%{_datadir}/libvirt/networks/default.xml
|
|
|
|
|
%endif
|
|
|
|
|
%find_lang %{name}
|
|
|
|
|
|
|
|
|
|
%if ! %{with_python}
|
|
|
|
|
rm -rf $RPM_BUILD_ROOT%{_datadir}/doc/libvirt-python-%{version}
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%if ! %{with_qemu}
|
|
|
|
|
rm -rf $RPM_BUILD_ROOT%{_sysconfdir}/libvirt/qemu.conf
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%clean
|
|
|
|
|
rm -fr %{buildroot}
|
|
|
|
|
|
|
|
|
|
%post
|
|
|
|
|
/sbin/ldconfig
|
|
|
|
|
|
|
|
|
|
%if %{with_libvirtd}
|
|
|
|
|
# We want to install the default network for initial RPM installs
|
|
|
|
|
# or on the first upgrade from a non-network aware libvirt only.
|
|
|
|
|
# We check this by looking to see if the daemon is already installed
|
|
|
|
|
@@ -209,12 +270,15 @@ then
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
/sbin/chkconfig --add libvirtd
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%preun
|
|
|
|
|
%if %{with_libvirtd}
|
|
|
|
|
if [ $1 = 0 ]; then
|
|
|
|
|
/sbin/service libvirtd stop 1>/dev/null 2>&1
|
|
|
|
|
/sbin/chkconfig --del libvirtd
|
|
|
|
|
fi
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%postun
|
|
|
|
|
/sbin/ldconfig
|
|
|
|
|
@@ -227,28 +291,69 @@ fi
|
|
|
|
|
%{_bindir}/virsh
|
|
|
|
|
%{_libdir}/lib*.so.*
|
|
|
|
|
%dir %attr(0700, root, root) %{_sysconfdir}/libvirt/
|
|
|
|
|
|
|
|
|
|
%if %{with_qemu}
|
|
|
|
|
%dir %attr(0700, root, root) %{_sysconfdir}/libvirt/qemu/
|
|
|
|
|
%dir %attr(0700, root, root) %{_sysconfdir}/libvirt/qemu/networks/
|
|
|
|
|
%dir %attr(0700, root, root) %{_sysconfdir}/libvirt/qemu/networks/autostart
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%if %{with_libvirtd}
|
|
|
|
|
%{_sysconfdir}/rc.d/init.d/libvirtd
|
|
|
|
|
%config(noreplace) %{_sysconfdir}/sysconfig/libvirtd
|
|
|
|
|
%config(noreplace) %{_sysconfdir}/libvirt/libvirtd.conf
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%if %{with_qemu}
|
|
|
|
|
%config(noreplace) %{_sysconfdir}/libvirt/qemu.conf
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%if %{with_sasl}
|
|
|
|
|
%config(noreplace) %{_sysconfdir}/sasl2/libvirt.conf
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%if %{with_qemu}
|
|
|
|
|
%dir %{_datadir}/libvirt/
|
|
|
|
|
%dir %{_datadir}/libvirt/networks/
|
|
|
|
|
%{_datadir}/libvirt/networks/default.xml
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%dir %{_localstatedir}/run/libvirt/
|
|
|
|
|
%dir %{_localstatedir}/lib/libvirt/
|
|
|
|
|
%if %{with_polkit}
|
|
|
|
|
%{_datadir}/PolicyKit/policy/libvirtd.policy
|
|
|
|
|
%dir %attr(0700, root, root) %{_localstatedir}/lib/libvirt/images/
|
|
|
|
|
%dir %attr(0700, root, root) %{_localstatedir}/lib/libvirt/boot/
|
|
|
|
|
|
|
|
|
|
%if %{with_qemu}
|
|
|
|
|
%{_datadir}/augeas/lenses/libvirtd_qemu.aug
|
|
|
|
|
%{_datadir}/augeas/lenses/tests/test_libvirtd_qemu.aug
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%if %{with_libvirtd}
|
|
|
|
|
%{_datadir}/augeas/lenses/libvirtd.aug
|
|
|
|
|
%{_datadir}/augeas/lenses/tests/test_libvirtd.aug
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%if %{with_polkit}
|
|
|
|
|
%{_datadir}/PolicyKit/policy/org.libvirt.unix.policy
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%if %{with_qemu}
|
|
|
|
|
%dir %attr(0700, root, root) %{_localstatedir}/log/libvirt/qemu/
|
|
|
|
|
%if %{with_proxy} == "yes"
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%if %{with_xen_proxy}
|
|
|
|
|
%attr(4755, root, root) %{_libexecdir}/libvirt_proxy
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%if %{with_lxc}
|
|
|
|
|
%attr(0755, root, root) %{_libexecdir}/libvirt_lxc
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%if %{with_libvirtd}
|
|
|
|
|
%attr(0755, root, root) %{_libexecdir}/libvirt_parthelper
|
|
|
|
|
%attr(0755, root, root) %{_sbindir}/libvirtd
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%doc docs/*.rng
|
|
|
|
|
%doc docs/*.xml
|
|
|
|
|
|
|
|
|
|
@@ -268,6 +373,7 @@ fi
|
|
|
|
|
%doc docs/examples
|
|
|
|
|
%doc docs/libvirt-api.xml
|
|
|
|
|
|
|
|
|
|
%if %{with_python}
|
|
|
|
|
%files python
|
|
|
|
|
%defattr(-, root, root)
|
|
|
|
|
|
|
|
|
|
@@ -278,8 +384,76 @@ fi
|
|
|
|
|
%doc python/TODO
|
|
|
|
|
%doc python/libvirtclass.txt
|
|
|
|
|
%doc docs/examples/python
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
|
* Tue Sep 9 2008 Daniel Veillard <veillard@redhat.com> - 0.4.5-2.fc10
|
|
|
|
|
- fix a crash if a QEmu/KVM domain is defined without an emulator path
|
|
|
|
|
|
|
|
|
|
* Mon Sep 8 2008 Daniel Veillard <veillard@redhat.com> - 0.4.5-1.fc10
|
|
|
|
|
- upstream release 0.4.5
|
|
|
|
|
- a lot of bug fixes
|
|
|
|
|
- major updates to QEmu/KVM and Linux containers drivers
|
|
|
|
|
- support for OpenVZ if installed
|
|
|
|
|
|
|
|
|
|
* Thu Aug 7 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.4.4-3.fc10
|
|
|
|
|
- fix license tag
|
|
|
|
|
|
|
|
|
|
* Tue Jul 8 2008 Daniel P. Berrange <berrange@redhat.com> - 0.4.4-2.fc10
|
|
|
|
|
- Fix booting of CDROM images with KVM (rhbz #452355)
|
|
|
|
|
|
|
|
|
|
* Wed Jun 25 2008 Daniel Veillard <veillard@redhat.com> - 0.4.4-1.fc10
|
|
|
|
|
- upstream release 0.4.4
|
|
|
|
|
- fix a few bugs in previous release
|
|
|
|
|
|
|
|
|
|
* Thu Jun 12 2008 Daniel Veillard <veillard@redhat.com> - 0.4.3-1.fc10
|
|
|
|
|
- upstream release 0.4.3
|
|
|
|
|
- many bug fixes
|
|
|
|
|
- many small improvements
|
|
|
|
|
- serious xenner fixes
|
|
|
|
|
|
|
|
|
|
* Wed Jun 4 2008 Mark McLoughlin <markmc@redhat.com> - 0.4.2-6.fc10
|
|
|
|
|
- Disable lokkit support again (#449996, #447633)
|
|
|
|
|
- Ensure %{fedora} is evaluated correctly
|
|
|
|
|
|
|
|
|
|
* Thu May 15 2008 Daniel P. Berrange <berrange@redhat.com> - 0.4.2-5.fc10
|
|
|
|
|
- Rebuild with policy enabled (rhbz #446616)
|
|
|
|
|
|
|
|
|
|
* Fri May 9 2008 Daniel P. Berrange <berrange@redhat.com> - 0.4.2-4.fc10
|
|
|
|
|
- Added directory for initrd/kernel images for SELinux policy
|
|
|
|
|
|
|
|
|
|
* Mon Apr 28 2008 Mark McLoughlin <markmc@redhat.com> - 0.4.2-3.fc10
|
|
|
|
|
- Simplify the way arch conditionals are handled
|
|
|
|
|
|
|
|
|
|
* Mon Apr 28 2008 Mark McLoughlin <markmc@redhat.com> - 0.4.2-2.fc10
|
|
|
|
|
- Enable lokkit support (#443796)
|
|
|
|
|
|
|
|
|
|
* Tue Apr 8 2008 Daniel Veillard <veillard@redhat.com> - 0.4.2-1.fc9
|
|
|
|
|
- upstream release 0.4.2
|
|
|
|
|
- many bug fixes
|
|
|
|
|
- localization updates
|
|
|
|
|
|
|
|
|
|
* Thu Apr 4 2008 Daniel P. Berrange <berrange@redhat.com> - 0.4.1-7.fc9
|
|
|
|
|
- Don't run polkit-auth as root
|
|
|
|
|
- Don't request polkit auth if client is root
|
|
|
|
|
|
|
|
|
|
* Fri Mar 28 2008 Chris Lalancette <clalance@redhat.com> - 0.4.1-6.fc9
|
|
|
|
|
- When dumping XML for a storage pool, make the <source> directory tag
|
|
|
|
|
match the <dir> tag used for specifying the pool in the first place
|
|
|
|
|
|
|
|
|
|
* Thu Mar 27 2008 Chris Lalancette <clalance@redhat.com> - 0.4.1-5.fc9
|
|
|
|
|
- Do iscsiadm sendtarget before trying to do login
|
|
|
|
|
- Do sysfs scanning for iSCSI LUNs instead of trying to parse them from
|
|
|
|
|
iscsiadm session output
|
|
|
|
|
|
|
|
|
|
* Thu Mar 13 2008 Daniel P. Berrange <berrange@redhat.com> - 0.4.1-4.fc9
|
|
|
|
|
- Fix QEMU tap device setup
|
|
|
|
|
- Fix Xen boot device XML processing
|
|
|
|
|
- Fixed QEMU cdrom media change
|
|
|
|
|
|
|
|
|
|
* Mon Mar 10 2008 Daniel P. Berrange <berrange@redhat.com> - 0.4.1-3.fc9
|
|
|
|
|
- Fixed daemon startup when run with --daemon flag
|
|
|
|
|
|
|
|
|
|
* Mon Mar 3 2008 Daniel Veillard <veillard@redhat.com> - 0.4.1-2.fc9
|
|
|
|
|
- 2 patches found just after the release
|
|
|
|
|
|
|
|
|
|
|