Accepting request 177953 from home:jfehlig:branches:Virtualization

- Add rpmlintrc to get around suse-filelist-empty error on
  older distros.

- Refactor libvirt spec file to create subpackages for the various
  libvirtd components.  This allows installing a libvirtd tailored
  for the underlying virtualizer.  E.g. on a KVM/QEMU virtualizer
  only the libvirt-daemon-qemu package needs installed.
  Similarly, only libvirt-daemon-xen on a Xen virtualizer and 
  libvirt-daemon-lxc on LXC.

OBS-URL: https://build.opensuse.org/request/show/177953
OBS-URL: https://build.opensuse.org/package/show/Virtualization/libvirt?expand=0&rev=270
This commit is contained in:
James Fehlig 2013-06-07 01:10:31 +00:00 committed by Git OBS Bridge
parent 4514dc2f52
commit ed47b0b49d
4 changed files with 763 additions and 285 deletions

View File

@ -1,3 +1,19 @@
-------------------------------------------------------------------
Thu Jun 6 16:05:39 MDT 2013 - jfehlig@suse.com
- Add rpmlintrc to get around suse-filelist-empty error on
older distros.
-------------------------------------------------------------------
Thu Jun 6 11:59:26 MDT 2013 - jfehlig@suse.com
- Refactor libvirt spec file to create subpackages for the various
libvirtd components. This allows installing a libvirtd tailored
for the underlying virtualizer. E.g. on a KVM/QEMU virtualizer
only the libvirt-daemon-qemu package needs installed.
Similarly, only libvirt-daemon-xen on a Xen virtualizer and
libvirt-daemon-lxc on LXC.
-------------------------------------------------------------------
Tue Jun 4 16:44:30 MDT 2013 - jfehlig@suse.com

File diff suppressed because it is too large Load Diff

View File

@ -61,7 +61,6 @@ case "$1" in
;;
stop)
echo -n "Shutting down libvirtd "
rm -f /var/lock/subsys/libvirtd
rm -rf /var/cache/libvirt/*
killproc -TERM $LIBVIRTD_BIN > /dev/null 2>&1
rm -f $LIBVIRTD_PIDFILE

4
rpmlintrc Normal file
View File

@ -0,0 +1,4 @@
# This line is mandatory to access the configuration functions
from Config import *
addFilter("suse-filelist-empty")