1. 22 2月, 2018 1 次提交
  2. 14 2月, 2018 6 次提交
  3. 09 2月, 2018 2 次提交
  4. 31 1月, 2018 1 次提交
    • M
      tools: Make symlinks to vsh bash-completion script · 08327dff
      Michal Privoznik 提交于
      The bash-completion project documents that only those scripts
      from $BASH_COMPLETIONS_DIR that share name with the current
      command for which <TAB> was hit are loaded [1]. This means, that
      vsh script we have there is not loaded. We have to create
      symlinks for virsh and virt-admin.
      
      At the same time, we have to create new RPM package because
      virt-admin and client packages are independent. That means we
      cannot place the vsh script in either of them. What we can do is
      to have a different package that contains the completion script
      and then virt-admin and client packages contain only the symlink
      and require the bash-completion package.
      
      1: https://github.com/scop/bash-completion#faqSigned-off-by: NMichal Privoznik <mprivozn@redhat.com>
      08327dff
  5. 17 1月, 2018 2 次提交
  6. 12 1月, 2018 1 次提交
  7. 30 11月, 2017 2 次提交
  8. 31 10月, 2017 1 次提交
    • J
      spec: Restart libvirtd in posttrans · 1bf89340
      Jiri Denemark 提交于
      When upgrading libvirt packages, there's no strict ordering for the
      installation or removal of the individual libvirt sub packages. Thus
      libvirt-daemon may be upgraded (and its %postun scriptlet) started
      before all sub packages with driver libraries are upgraded. When
      libvirt-daemon's %postun scriptlet restarts the daemon old drivers may
      still be laying around and the daemon may crash when it tries to use
      them.
      
      Let's restart the daemon in %posttrans to make sure libvirtd is
      restarted only after all sub packages are at the same version.
      
      https://bugzilla.redhat.com/show_bug.cgi?id=1464300Signed-off-by: NJiri Denemark <jdenemar@redhat.com>
      1bf89340
  9. 16 10月, 2017 1 次提交
  10. 11 10月, 2017 1 次提交
  11. 05 10月, 2017 1 次提交
  12. 03 10月, 2017 1 次提交
  13. 16 9月, 2017 1 次提交
  14. 15 9月, 2017 2 次提交
  15. 04 8月, 2017 1 次提交
  16. 03 8月, 2017 1 次提交
    • D
      docs: drop XHTML 1.0 validation of website · f802c9de
      Daniel P. Berrange 提交于
      The HTML pages are currently validated against an XHTML 1.0 DTD.
      This makes it impossible to take advantage of features that are
      introduced in HTML 5, because they'll fail validation.
      
      There is intentionally no DTD defined for HTML 5, so there's no
      alternative to XHTML 1.0 DTD that we could switch to. The only
      options are to stick with XHTML 1.0 forever, or drop the DTD
      validation, and we pick the latter.
      Signed-off-by: NDaniel P. Berrange <berrange@redhat.com>
      f802c9de
  17. 20 7月, 2017 1 次提交
  18. 12 5月, 2017 1 次提交
  19. 10 5月, 2017 1 次提交
  20. 09 5月, 2017 1 次提交
    • D
      Don't use ceph-devel on Fedora · 47275940
      Daniel P. Berrange 提交于
      A previous commit changed the spec to use librbd1-devel on
      RHEL-7, since this replaces ceph-devel from RHEL-6:
      
        commit 6cfc8834
        Author: Peter Krempa <pkrempa@redhat.com>
        Date:   Thu Mar 5 11:40:54 2015 +0100
      
          spec: Enable RBD storage driver in RHEL-7
      
          Use correct package names too as they differ.
      
      RHEL-7 inherited this rename from Fedora though, so it should
      have also made Fedora use the new names.
      
      This was missed, because Fedora still provides a (deprecated)
      back-compat RPM for ceph-devel that just pulls in librbd1-devel
      (and others).
      
      Fixing this stops libvirt pulling Java into the build root in
      Fedora.
      Reviewed-by: NPavel Hrdina <phrdina@redhat.com>
      Signed-off-by: NDaniel P. Berrange <berrange@redhat.com>
      47275940
  21. 26 4月, 2017 1 次提交
  22. 19 4月, 2017 1 次提交
  23. 16 3月, 2017 1 次提交
  24. 09 3月, 2017 1 次提交
  25. 22 2月, 2017 3 次提交
    • P
      spec: Modularize the storage driver · 27c8e36d
      Peter Krempa 提交于
      Create a new set of sub-packages containing the new storage driver
      modules so that certain heavy-weight backends (gluster, rbd) can be
      installed separately only if required.
      
      To keep backward compatibility the 'libvirt-driver-storage' package
      will be turned into a virtual package pulling in all the new storage
      backend sub-packages. The storage driver module will be moved into
      libvirt-driver-storage-core including the filesystem backend which is
      mandatory.
      
      This then allows to make libvirt-daemon-driver-qemu depend only on the
      core of the storage driver.
      
      All other meta-packages still depend on the full storage driver and thus
      pull in all the backends.
      27c8e36d
    • P
      storage: Turn storage backends into dynamic modules · 0a6d3e51
      Peter Krempa 提交于
      If driver modules are enabled turn storage driver backends into
      dynamically loadable objects. This will allow greater modularity for
      binary distributions, where heavyweight dependencies as rbd and gluster
      can be avoided by selecting only a subset of drivers if the rest is not
      necessary.
      
      The storage modules are installed into 'LIBDIR/libvirt/storage-backend/'
      and users can override the location by using
      'LIBVIRT_STORAGE_BACKEND_DIR' environment variable.
      
      rpm based distros will at this point install all the backends when
      libvirt-daemon-driver-storage package is installed.
      0a6d3e51
    • P
      spec: Don't check for storage driver backends in configure script · 4fb105f6
      Peter Krempa 提交于
      Explicitly enable --with-storage-scsi and disable --without-storage-zfs
      and --without-storage-vstorage so that the configure script doesn't
      check for them.
      
      Note that --with-storage-dir is enabled by default.
      4fb105f6
  26. 15 2月, 2017 1 次提交
    • A
      spec: Require libacl when building the QEMU driver · e04bd5b6
      Andrea Bolognani 提交于
      For the namespaces feature to work properly we need to be able
      to make a perfect copy of the original /dev, including ACLs.
      
      By adding a BuildRequires on libacl-devel we ensure that ACL
      support will be enabled at configure time and made available
      to the QEMU driver.
      e04bd5b6
  27. 30 1月, 2017 1 次提交
  28. 18 1月, 2017 1 次提交
  29. 08 12月, 2016 1 次提交