libvirt.spec.in 86.6 KB
Newer Older
1 2
# -*- rpm-spec -*-

3 4
# This spec file assumes you are building for Fedora 20 or newer,
# or for RHEL 6 or newer. It may need some tweaks for other distros.
5
# If neither fedora nor rhel was defined, try to guess them from dist
6 7 8 9
%if (0%{?fedora} && 0%{?fedora} >= 20) || (0%{?rhel} && 0%{?rhel} >= 6)
%define supported_platform 1
%else
%define supported_platform 0
10 11
%endif

12 13 14
# Default to skipping autoreconf.  Distros can change just this one line
# (or provide a command-line override) if they backport any patches that
# touch configure.ac or Makefile.am.
15
%{!?enable_autotools:%global enable_autotools 0}
16

17

18
# The hypervisor drivers that run in libvirtd
19 20 21 22 23 24
%define with_xen           0%{!?_without_xen:1}
%define with_qemu          0%{!?_without_qemu:1}
%define with_lxc           0%{!?_without_lxc:1}
%define with_uml           0%{!?_without_uml:1}
%define with_libxl         0%{!?_without_libxl:1}
%define with_vbox          0%{!?_without_vbox:1}
25

26
%define with_qemu_tcg      %{with_qemu}
27 28 29 30

%define qemu_kvm_arches %{ix86} x86_64

%if 0%{?fedora}
31
    %define qemu_kvm_arches %{ix86} x86_64 %{power64} s390x %{arm} aarch64
32 33 34 35 36
%endif

%if 0%{?rhel}
    %define with_qemu_tcg 0
    %define qemu_kvm_arches x86_64
37 38 39
    %if 0%{?rhel} >= 7
        %define qemu_kvm_arches x86_64 %{power64}
    %endif
40 41 42
%endif

%ifarch %{qemu_kvm_arches}
43
    %define with_qemu_kvm      %{with_qemu}
44
%else
45
    %define with_qemu_kvm      0
46 47
%endif

48 49 50 51
%if ! %{with_qemu_tcg} && ! %{with_qemu_kvm}
    %define with_qemu 0
%endif

52 53 54
# Then the hypervisor drivers that run outside libvirtd, in libvirt.so
%define with_openvz        0%{!?_without_openvz:1}
%define with_vmware        0%{!?_without_vmware:1}
55 56
%define with_phyp          0%{!?_without_phyp:1}
%define with_esx           0%{!?_without_esx:1}
57
%define with_hyperv        0%{!?_without_hyperv:1}
58

59
# Then the secondary host drivers, which run inside libvirtd
60 61 62 63 64 65 66
%define with_interface        0%{!?_without_interface:1}
%define with_network          0%{!?_without_network:1}
%define with_storage_fs       0%{!?_without_storage_fs:1}
%define with_storage_lvm      0%{!?_without_storage_lvm:1}
%define with_storage_iscsi    0%{!?_without_storage_iscsi:1}
%define with_storage_disk     0%{!?_without_storage_disk:1}
%define with_storage_mpath    0%{!?_without_storage_mpath:1}
67
%if 0%{?fedora} || 0%{?rhel} >= 7
68
    %define with_storage_rbd      0%{!?_without_storage_rbd:1}
69
%else
70
    %define with_storage_rbd      0
71
%endif
72
%if 0%{?fedora}
73
    %define with_storage_sheepdog 0%{!?_without_storage_sheepdog:1}
74
%else
75
    %define with_storage_sheepdog 0
76
%endif
77 78 79
%define with_storage_gluster 0%{!?_without_storage_gluster:1}
%define with_numactl          0%{!?_without_numactl:1}
%define with_selinux          0%{!?_without_selinux:1}
80 81

# A few optional bits off by default, we enable later
82
%define with_polkit        0%{!?_without_polkit:0}
83
%define with_fuse          0%{!?_without_fuse:0}
84
%define with_yajl          0%{!?_without_yajl:0}
85
%define with_nwfilter      0%{!?_without_nwfilter:0}
86
%define with_libpcap       0%{!?_without_libpcap:0}
87
%define with_macvtap       0%{!?_without_macvtap:0}
J
Jiri Denemark 已提交
88
%define with_libnl         0%{!?_without_libnl:0}
89
%define with_dtrace        0%{!?_without_dtrace:0}
90
%define with_cgconfig      0%{!?_without_cgconfig:0}
91
%define with_sanlock       0%{!?_without_sanlock:0}
92
%define with_systemd       0%{!?_without_systemd:0}
93
%define with_numad         0%{!?_without_numad:0}
94
%define with_firewalld     0%{!?_without_firewalld:0}
95
%define with_libssh2       0%{!?_without_libssh2:0}
96
%define with_wireshark     0%{!?_without_wireshark:0}
97
%define with_systemd_daemon 0%{!?_without_systemd_daemon:0}
98
%define with_pm_utils      1
99

100 101
# Non-server/HV driver defaults which are always enabled
%define with_sasl          0%{!?_without_sasl:1}
102
%define with_audit         0%{!?_without_audit:1}
103
%define with_nss_plugin    0%{!?_without_nss_plugin:1}
104 105 106 107


# Finally set the OS / architecture specific special cases

108
# Xen is available only on i386 x86_64 ia64
P
Peter Robinson 已提交
109
%ifnarch %{ix86} x86_64 ia64
110 111
    %define with_xen 0
    %define with_libxl 0
112 113
%endif

114 115 116 117 118
# vbox is available only on i386 x86_64
%ifnarch %{ix86} x86_64
    %define with_vbox 0
%endif

119 120
# Numactl is not available on s390[x] and ARM
%ifarch s390 s390x %{arm}
121
    %define with_numactl 0
D
Daniel P. Berrange 已提交
122
%endif
123

124 125
# libgfapi is built only on x86_64 on rhel
%ifnarch x86_64
126
    %if 0%{?rhel}
127 128 129 130
        %define with_storage_gluster 0
    %endif
%endif

131 132 133 134 135 136 137
# librados and librbd are built only on x86_64 on rhel
%ifnarch x86_64
    %if 0%{?rhel} >= 7
        %define with_storage_rbd 0
    %endif
%endif

138
# RHEL doesn't ship OpenVZ, VBox, UML, PowerHypervisor,
J
Ján Tomko 已提交
139
# VMware, libxenserver (xenapi), libxenlight (Xen 4.1 and newer),
140
# or HyperV.
141
%if 0%{?rhel}
142 143 144 145 146 147 148 149
    %define with_openvz 0
    %define with_vbox 0
    %define with_uml 0
    %define with_phyp 0
    %define with_vmware 0
    %define with_xenapi 0
    %define with_libxl 0
    %define with_hyperv 0
150
    %define with_vz 0
151 152
%endif

153 154
# Fedora 17 / RHEL-7 are first where we use systemd. Although earlier
# Fedora has systemd, libvirt still used sysvinit there.
155
%if 0%{?fedora} || 0%{?rhel} >= 7
156
    %define with_systemd 1
157
    %define with_systemd_daemon 1
158
    %define with_pm_utils 0
159 160
%endif

161
# Fedora 18 / RHEL-7 are first where firewalld support is enabled
162
%if 0%{?fedora} || 0%{?rhel} >= 7
163
    %define with_firewalld 1
164 165
%endif

166
# RHEL-6 stopped including Xen on all archs.
167
%if 0%{?rhel}
168
    %define with_xen 0
169 170
%endif

171
# fuse is used to provide virtualized /proc for LXC
172
%if 0%{?fedora} || 0%{?rhel} >= 7
173
    %define with_fuse      0%{!?_without_fuse:1}
174 175
%endif

176
%define with_polkit    0%{!?_without_polkit:1}
177
%define with_yajl      0%{!?_without_yajl:1}
178
%define with_dtrace 1
179

180
# Enable sanlock library for lock management with QEMU
181
# Sanlock is available only on arches where kvm is available for RHEL
182
%if 0%{?fedora}
183
    %define with_sanlock 0%{!?_without_sanlock:1}
E
Eric Blake 已提交
184
%endif
185
%if 0%{?rhel}
186
    %ifarch %{qemu_kvm_arches}
187
        %define with_sanlock 0%{!?_without_sanlock:1}
188
    %endif
189 190
%endif

191
# Enable libssh2 transport for new enough distros
192
%if 0%{?fedora}
193
    %define with_libssh2 0%{!?_without_libssh2:1}
194 195
%endif

196 197 198 199 200
# Enable wireshark plugins for all distros shipping libvirt 1.2.2 or newer
%if 0%{?fedora} >= 21
    %define with_wireshark 0%{!?_without_wireshark:1}
%endif

201

202
%if %{with_qemu} || %{with_lxc} || %{with_uml}
203
    %define with_nwfilter 0%{!?_without_nwfilter:1}
204
# Enable libpcap library
205 206
    %define with_libpcap  0%{!?_without_libpcap:1}
    %define with_macvtap  0%{!?_without_macvtap:1}
207

208
# numad is used to manage the CPU and memory placement dynamically,
209
# it's not available on s390[x] and ARM.
210
    %ifnarch s390 s390x %{arm}
211
        %define with_numad    0%{!?_without_numad:1}
212
    %endif
213 214 215
%endif

%if %{with_macvtap}
216
    %define with_libnl 1
217 218
%endif

219
# Pull in cgroups config system
220 221
%if %{with_qemu} || %{with_lxc}
    %define with_cgconfig 0%{!?_without_cgconfig:1}
222 223
%endif

224
%define with_nodedev 1
225 226

%if %{with_storage_fs} || %{with_storage_mpath} || %{with_storage_iscsi} || %{with_storage_lvm} || %{with_storage_disk}
227
    %define with_storage 1
228
%else
229
    %define with_storage 0
230 231 232
%endif


233
# Force QEMU to run as non-root
234 235
%define qemu_user  qemu
%define qemu_group  qemu
236

237

238 239 240 241 242 243
# Advertise OVMF and AAVMF from nightly firmware repo
%if 0%{?fedora}
    %define with_loader_nvram --with-loader-nvram="/usr/share/edk2.git/ovmf-x64/OVMF_CODE-pure-efi.fd:/usr/share/edk2.git/ovmf-x64/OVMF_VARS-pure-efi.fd:/usr/share/edk2.git/aarch64/QEMU_EFI-pflash.raw:/usr/share/edk2.git/aarch64/vars-template-pflash.raw"
%endif


244
%if 0%{?fedora} || 0%{?rhel} >= 7
245
    %define with_systemd_macros 1
246
%else
247
    %define with_systemd_macros 0
248 249 250
%endif


251 252 253 254 255
# RHEL releases provide stable tool chains and so it is safe to turn
# compiler warning into errors without being worried about frequent
# changes in reported warnings
%if 0%{?rhel}
    %define enable_werror --enable-werror
J
Jiri Denemark 已提交
256
%else
257
    %define enable_werror --disable-werror
258 259 260
%endif


C
Cole Robinson 已提交
261
Summary: Library providing a simple virtualization API
262
Name: libvirt
263
Version: @VERSION@
264
Release: 1%{?dist}%{?extra_release}
265
License: LGPLv2+
266
Group: Development/Libraries
267
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
268
URL: http://libvirt.org/
269

270
%if %(echo %{version} | grep -o \\. | wc -l) == 3
271
    %define mainturl stable_updates/
272 273 274
%endif
Source: http://libvirt.org/sources/%{?mainturl}libvirt-%{version}.tar.gz

275
Requires: libvirt-daemon = %{version}-%{release}
276
%if %{with_network}
277
Requires: libvirt-daemon-config-network = %{version}-%{release}
278 279
%endif
%if %{with_nwfilter}
280
Requires: libvirt-daemon-config-nwfilter = %{version}-%{release}
281 282
%endif
%if %{with_libxl}
283
Requires: libvirt-daemon-driver-libxl = %{version}-%{release}
284 285
%endif
%if %{with_lxc}
286
Requires: libvirt-daemon-driver-lxc = %{version}-%{release}
287 288
%endif
%if %{with_qemu}
289
Requires: libvirt-daemon-driver-qemu = %{version}-%{release}
290 291
%endif
%if %{with_uml}
292
Requires: libvirt-daemon-driver-uml = %{version}-%{release}
293 294
%endif
%if %{with_xen}
295
Requires: libvirt-daemon-driver-xen = %{version}-%{release}
296 297
%endif
%if %{with_vbox}
298
Requires: libvirt-daemon-driver-vbox = %{version}-%{release}
299 300
%endif
%if %{with_nwfilter}
301
Requires: libvirt-daemon-driver-nwfilter = %{version}-%{release}
302
%endif
303

304
%if %{with_interface}
305
Requires: libvirt-daemon-driver-interface = %{version}-%{release}
306
%endif
307 308 309 310
Requires: libvirt-daemon-driver-secret = %{version}-%{release}
Requires: libvirt-daemon-driver-storage = %{version}-%{release}
Requires: libvirt-daemon-driver-network = %{version}-%{release}
Requires: libvirt-daemon-driver-nodedev = %{version}-%{release}
311
Requires: libvirt-client = %{version}-%{release}
312

313 314
# All build-time requirements. Run-time requirements are
# listed against each sub-RPM
315 316 317 318 319
%if 0%{?enable_autotools}
BuildRequires: autoconf
BuildRequires: automake
BuildRequires: gettext-devel
BuildRequires: libtool
320
BuildRequires: /usr/bin/pod2man
321
%endif
322
BuildRequires: git
323
BuildRequires: perl
D
Daniel P. Berrange 已提交
324
BuildRequires: python
325 326 327
%if %{with_systemd}
BuildRequires: systemd-units
%endif
328 329 330
%if %{with_systemd_daemon}
BuildRequires: systemd-devel
%endif
331
%if %{with_xen} || %{with_libxl}
332
BuildRequires: xen-devel
333
%endif
334
BuildRequires: libxml2-devel
335
BuildRequires: xhtml1-dtds
E
Eric Blake 已提交
336
BuildRequires: libxslt
337
BuildRequires: readline-devel
338
BuildRequires: ncurses-devel
339
BuildRequires: gettext
340
BuildRequires: libtasn1-devel
341
%if (0%{?rhel} && 0%{?rhel} < 7)
342
BuildRequires: libgcrypt-devel
343
%endif
R
Richard W.M. Jones 已提交
344
BuildRequires: gnutls-devel
345
BuildRequires: libattr-devel
346 347
# For pool-build probing for existing pools
BuildRequires: libblkid-devel >= 2.17
E
Eric Blake 已提交
348 349
# for augparse, optionally used in testing
BuildRequires: augeas
350
%if 0%{?fedora} || 0%{?rhel} >= 7
351
BuildRequires: systemd-devel >= 185
352
%else
353 354
BuildRequires: libudev-devel >= 145
%endif
355
BuildRequires: libpciaccess-devel >= 0.10.9
356 357 358
%if %{with_yajl}
BuildRequires: yajl-devel
%endif
359
%if %{with_sanlock}
360 361
BuildRequires: sanlock-devel >= 2.4
%endif
362 363 364
%if %{with_libpcap}
BuildRequires: libpcap-devel
%endif
365
%if %{with_libnl}
366 367
BuildRequires: libnl3-devel
%endif
368
BuildRequires: avahi-devel
369
%if %{with_selinux}
370
BuildRequires: libselinux-devel
371 372
%endif
%if %{with_network}
373
BuildRequires: dnsmasq >= 2.41
E
Eric Blake 已提交
374
BuildRequires: iptables
375
    %if 0%{?rhel} && 0%{?rhel} < 7
E
Eric Blake 已提交
376
BuildRequires: iptables-ipv6
377
    %endif
E
Eric Blake 已提交
378 379 380 381
BuildRequires: radvd
%endif
%if %{with_nwfilter}
BuildRequires: ebtables
382
%endif
E
Eric Blake 已提交
383
BuildRequires: module-init-tools
384
%if %{with_sasl}
385
BuildRequires: cyrus-sasl-devel
386
%endif
387
%if %{with_polkit}
388
    %if 0%{?fedora} || 0%{?rhel} >= 7
C
Cole Robinson 已提交
389 390
# F22 polkit-devel doesn't pull in polkit anymore, which we need for pkcheck
BuildRequires: polkit >= 0.112
391
BuildRequires: polkit-devel >= 0.112
392
    %else
E
Eric Blake 已提交
393
BuildRequires: polkit-devel >= 0.93
394
    %endif
395
%endif
396
%if %{with_storage_fs}
397 398
# For mount/umount in FS driver
BuildRequires: util-linux
399
%endif
400 401 402 403
%if %{with_qemu}
# From QEMU RPMs
BuildRequires: /usr/bin/qemu-img
%else
404
    %if %{with_xen}
405 406
# From Xen RPMs
BuildRequires: /usr/sbin/qcow-create
407
    %endif
408
%endif
409
%if %{with_storage_lvm}
410 411
# For LVM drivers
BuildRequires: lvm2
412 413
%endif
%if %{with_storage_iscsi}
414 415
# For ISCSI driver
BuildRequires: iscsi-initiator-utils
416 417
%endif
%if %{with_storage_disk}
418 419
# For disk driver
BuildRequires: parted-devel
420
%endif
421
%if %{with_storage_mpath} || %{with_storage_disk}
422 423
# For Multipath support
BuildRequires: device-mapper-devel
424 425
%endif
%if %{with_storage_rbd}
426 427 428 429
    %if 0%{?rhel} >= 7
BuildRequires: librados2-devel
BuildRequires: librbd1-devel
    %else
430
BuildRequires: ceph-devel
431
    %endif
432
%endif
433 434 435 436
%if %{with_storage_gluster}
BuildRequires: glusterfs-api-devel >= 3.4.1
BuildRequires: glusterfs-devel >= 3.4.1
%endif
437
%if %{with_numactl}
438 439
# For QEMU/LXC numa info
BuildRequires: numactl-devel
440
%endif
441
BuildRequires: libcap-ng-devel >= 0.5.0
442 443 444
%if %{with_fuse}
BuildRequires: fuse-devel >= 2.8.6
%endif
445
%if %{with_phyp} || %{with_libssh2}
446 447
BuildRequires: libssh2-devel >= 1.3.0
%endif
448

449
%if 0%{?fedora} || 0%{?rhel} >= 7
450
BuildRequires: netcf-devel >= 0.2.2
451
%else
452
BuildRequires: netcf-devel >= 0.1.8
453
%endif
454 455 456
%if %{with_esx}
BuildRequires: libcurl-devel
%endif
457 458 459
%if %{with_hyperv}
BuildRequires: libwsman-devel >= 2.2.3
%endif
460 461 462
%if %{with_audit}
BuildRequires: audit-libs-devel
%endif
D
Daniel Veillard 已提交
463 464 465 466 467
%if %{with_dtrace}
# we need /usr/sbin/dtrace
BuildRequires: systemtap-sdt-devel
%endif

468 469 470 471 472 473
%if %{with_storage_fs}
# For mount/umount in FS driver
BuildRequires: util-linux
# For showmount in FS driver (netfs discovery)
BuildRequires: nfs-utils
%endif
474

475 476
%if %{with_firewalld} || %{with_polkit}
# Communication with the firewall and polkit daemons use DBus
477 478 479
BuildRequires: dbus-devel
%endif

480 481
# Fedora build root suckage
BuildRequires: gawk
482

483 484 485
# For storage wiping with different algorithms
BuildRequires: scrub

486 487 488 489
%if %{with_numad}
BuildRequires: numad
%endif

490 491 492 493
%if %{with_wireshark}
BuildRequires: wireshark-devel
%endif

494 495
Provides: bundled(gnulib)

496
%description
497
Libvirt is a C toolkit to interact with the virtualization capabilities
498 499 500
of recent versions of Linux (and other OSes). The main package includes
the libvirtd server exporting the virtualization support.

501 502 503 504 505 506 507 508
%package docs
Summary: API reference and website documentation
Group: Development/Libraries

%description docs
Includes the API reference for the libvirt C library, and a complete
copy of the libvirt.org website documentation.

509 510 511 512 513 514 515 516 517 518 519 520 521 522 523
%package daemon
Summary: Server side daemon and supporting files for libvirt library
Group: Development/Libraries

# All runtime requirements for the libvirt package (runtime requrements
# for subpackages are listed later in those subpackages)

# The client side, i.e. shared libs and virsh are in a subpackage
Requires: %{name}-client = %{version}-%{release}

# for modprobe of pci devices
Requires: module-init-tools
# for /sbin/ip & /sbin/tc
Requires: iproute
Requires: avahi-libs
524 525
%if %{with_polkit}
    %if 0%{?fedora} || 0%{?rhel} >= 7
526
Requires: polkit >= 0.112
527
    %else
E
Eric Blake 已提交
528
Requires: polkit >= 0.93
529
    %endif
530 531
%endif
%if %{with_cgconfig}
532
Requires: libcgroup
533 534
%endif
%ifarch %{ix86} x86_64 ia64
535 536
# For virConnectGetSysinfo
Requires: dmidecode
537
%endif
538
# For service management
539
%if %{with_systemd}
540 541 542 543
Requires(post): systemd-units
Requires(post): systemd-sysv
Requires(preun): systemd-units
Requires(postun): systemd-units
544 545
%endif
%if %{with_numad}
546
Requires: numad
547
%endif
548 549
# libvirtd depends on 'messagebus' service
Requires: dbus
550 551
# For uid creation during pre
Requires(pre): shadow-utils
552 553 554 555 556 557

%description daemon
Server side daemon required to manage the virtualization capabilities
of recent versions of Linux. Requires a hypervisor specific sub-RPM
for specific drivers.

558
%if %{with_network}
559 560 561 562 563
%package daemon-config-network
Summary: Default configuration files for the libvirtd daemon
Group: Development/Libraries

Requires: libvirt-daemon = %{version}-%{release}
564
Requires: libvirt-daemon-driver-network = %{version}-%{release}
565 566 567

%description daemon-config-network
Default configuration files for setting up NAT based networking
568
%endif
569

570
%if %{with_nwfilter}
571 572 573 574 575
%package daemon-config-nwfilter
Summary: Network filter configuration files for the libvirtd daemon
Group: Development/Libraries

Requires: libvirt-daemon = %{version}-%{release}
576
Requires: libvirt-daemon-driver-nwfilter = %{version}-%{release}
577 578 579

%description daemon-config-nwfilter
Network filter configuration files for cleaning guest traffic
580
%endif
581

582
%if %{with_network}
583 584 585 586
%package daemon-driver-network
Summary: Network driver plugin for the libvirtd daemon
Group: Development/Libraries
Requires: libvirt-daemon = %{version}-%{release}
587 588 589
Requires: dnsmasq >= 2.41
Requires: radvd
Requires: iptables
590
    %if 0%{?rhel} && 0%{?rhel} < 7
591
Requires: iptables-ipv6
592
    %endif
593 594 595 596 597

%description daemon-driver-network
The network driver plugin for the libvirtd daemon, providing
an implementation of the virtual network APIs using the Linux
bridge capabilities.
598
%endif
599 600


601
%if %{with_nwfilter}
602 603 604 605
%package daemon-driver-nwfilter
Summary: Nwfilter driver plugin for the libvirtd daemon
Group: Development/Libraries
Requires: libvirt-daemon = %{version}-%{release}
606
Requires: iptables
607
    %if 0%{?rhel} && 0%{?rhel} < 7
608
Requires: iptables-ipv6
609
    %endif
610
Requires: ebtables
611 612 613 614 615

%description daemon-driver-nwfilter
The nwfilter driver plugin for the libvirtd daemon, providing
an implementation of the firewall APIs using the ebtables,
iptables and ip6tables capabilities
616
%endif
617 618


619
%if %{with_nodedev}
620 621 622 623
%package daemon-driver-nodedev
Summary: Nodedev driver plugin for the libvirtd daemon
Group: Development/Libraries
Requires: libvirt-daemon = %{version}-%{release}
624
# needed for device enumeration
625
    %if 0%{?fedora} || 0%{?rhel} >= 7
626
Requires: systemd >= 185
627
    %else
628
Requires: udev >= 145
629
    %endif
630
%endif
631 632 633 634 635

%description daemon-driver-nodedev
The nodedev driver plugin for the libvirtd daemon, providing
an implementation of the node device APIs using the udev
capabilities.
636
%endif
637 638


639
%if %{with_interface}
640 641 642 643
%package daemon-driver-interface
Summary: Interface driver plugin for the libvirtd daemon
Group: Development/Libraries
Requires: libvirt-daemon = %{version}-%{release}
644
    %if (0%{?fedora} || 0%{?rhel} >= 7)
645
Requires: netcf-libs >= 0.2.2
646
    %endif
647 648 649 650 651

%description daemon-driver-interface
The interface driver plugin for the libvirtd daemon, providing
an implementation of the network interface APIs using the
netcf library
652
%endif
653 654 655 656 657 658 659 660 661 662 663 664


%package daemon-driver-secret
Summary: Secret driver plugin for the libvirtd daemon
Group: Development/Libraries
Requires: libvirt-daemon = %{version}-%{release}

%description daemon-driver-secret
The secret driver plugin for the libvirtd daemon, providing
an implementation of the secret key APIs.


665
%if %{with_storage}
666 667 668 669
%package daemon-driver-storage
Summary: Storage driver plugin for the libvirtd daemon
Group: Development/Libraries
Requires: libvirt-daemon = %{version}-%{release}
670
    %if %{with_storage_fs}
671 672 673 674
Requires: nfs-utils
# For mkfs
Requires: util-linux
# For glusterfs
675
        %if 0%{?fedora}
676
Requires: glusterfs-client >= 2.0.1
677
        %endif
678 679
    %endif
    %if %{with_storage_lvm}
680 681
# For LVM drivers
Requires: lvm2
682 683
    %endif
    %if %{with_storage_iscsi}
684 685
# For ISCSI driver
Requires: iscsi-initiator-utils
686 687
    %endif
    %if %{with_storage_disk}
688 689 690
# For disk driver
Requires: parted
Requires: device-mapper
691 692
    %endif
    %if %{with_storage_mpath}
693 694
# For multipath support
Requires: device-mapper
695 696
    %endif
    %if %{with_storage_sheepdog}
697 698
# For Sheepdog support
Requires: sheepdog
699 700
    %endif
    %if %{with_qemu}
701 702
# From QEMU RPMs
Requires: /usr/bin/qemu-img
703 704
    %else
        %if %{with_xen}
705 706
# From Xen RPMs
Requires: /usr/sbin/qcow-create
707
        %endif
708
    %endif
709 710 711 712 713

%description daemon-driver-storage
The storage driver plugin for the libvirtd daemon, providing
an implementation of the storage APIs using LVM, iSCSI,
parted and more.
714
%endif
715 716


717
%if %{with_qemu}
718 719 720 721 722
%package daemon-driver-qemu
Summary: Qemu driver plugin for the libvirtd daemon
Group: Development/Libraries
Requires: libvirt-daemon = %{version}-%{release}
# There really is a hard cross-driver dependency here
723
Requires: libvirt-daemon-driver-network = %{version}-%{release}
724 725 726 727 728 729
Requires: /usr/bin/qemu-img
# For image compression
Requires: gzip
Requires: bzip2
Requires: lzop
Requires: xz
730 731 732 733 734

%description daemon-driver-qemu
The qemu driver plugin for the libvirtd daemon, providing
an implementation of the hypervisor driver APIs using
QEMU
735
%endif
736 737


738
%if %{with_lxc}
739 740 741 742 743
%package daemon-driver-lxc
Summary: LXC driver plugin for the libvirtd daemon
Group: Development/Libraries
Requires: libvirt-daemon = %{version}-%{release}
# There really is a hard cross-driver dependency here
744
Requires: libvirt-daemon-driver-network = %{version}-%{release}
745 746 747 748 749

%description daemon-driver-lxc
The LXC driver plugin for the libvirtd daemon, providing
an implementation of the hypervisor driver APIs using
the Linux kernel
750
%endif
751 752


753
%if %{with_uml}
754 755 756 757 758 759 760 761 762
%package daemon-driver-uml
Summary: Uml driver plugin for the libvirtd daemon
Group: Development/Libraries
Requires: libvirt-daemon = %{version}-%{release}

%description daemon-driver-uml
The UML driver plugin for the libvirtd daemon, providing
an implementation of the hypervisor driver APIs using
User Mode Linux
763
%endif
764 765


766
%if %{with_xen}
767 768 769 770 771 772 773 774 775
%package daemon-driver-xen
Summary: Xen driver plugin for the libvirtd daemon
Group: Development/Libraries
Requires: libvirt-daemon = %{version}-%{release}

%description daemon-driver-xen
The Xen driver plugin for the libvirtd daemon, providing
an implementation of the hypervisor driver APIs using
Xen
776
%endif
777 778


779
%if %{with_vbox}
780 781 782 783 784 785 786 787 788
%package daemon-driver-vbox
Summary: VirtualBox driver plugin for the libvirtd daemon
Group: Development/Libraries
Requires: libvirt-daemon = %{version}-%{release}

%description daemon-driver-vbox
The vbox driver plugin for the libvirtd daemon, providing
an implementation of the hypervisor driver APIs using
VirtualBox
789
%endif
790 791


792
%if %{with_libxl}
793 794 795 796 797 798 799 800 801
%package daemon-driver-libxl
Summary: Libxl driver plugin for the libvirtd daemon
Group: Development/Libraries
Requires: libvirt-daemon = %{version}-%{release}

%description daemon-driver-libxl
The Libxl driver plugin for the libvirtd daemon, providing
an implementation of the hypervisor driver APIs using
Libxl
802
%endif
803 804


805

806
%if %{with_qemu_tcg}
807 808 809 810 811
%package daemon-qemu
Summary: Server side daemon & driver required to run QEMU guests
Group: Development/Libraries

Requires: libvirt-daemon = %{version}-%{release}
812 813 814 815
Requires: libvirt-daemon-driver-qemu = %{version}-%{release}
Requires: libvirt-daemon-driver-interface = %{version}-%{release}
Requires: libvirt-daemon-driver-network = %{version}-%{release}
Requires: libvirt-daemon-driver-nodedev = %{version}-%{release}
816
Requires: libvirt-daemon-driver-nwfilter = %{version}-%{release}
817 818
Requires: libvirt-daemon-driver-secret = %{version}-%{release}
Requires: libvirt-daemon-driver-storage = %{version}-%{release}
819 820 821 822 823
Requires: qemu

%description daemon-qemu
Server side daemon and driver required to manage the virtualization
capabilities of the QEMU TCG emulators
824
%endif
825 826


827
%if %{with_qemu_kvm}
828 829 830 831 832
%package daemon-kvm
Summary: Server side daemon & driver required to run KVM guests
Group: Development/Libraries

Requires: libvirt-daemon = %{version}-%{release}
833 834 835 836
Requires: libvirt-daemon-driver-qemu = %{version}-%{release}
Requires: libvirt-daemon-driver-interface = %{version}-%{release}
Requires: libvirt-daemon-driver-network = %{version}-%{release}
Requires: libvirt-daemon-driver-nodedev = %{version}-%{release}
837
Requires: libvirt-daemon-driver-nwfilter = %{version}-%{release}
838 839
Requires: libvirt-daemon-driver-secret = %{version}-%{release}
Requires: libvirt-daemon-driver-storage = %{version}-%{release}
840 841 842 843 844
Requires: qemu-kvm

%description daemon-kvm
Server side daemon and driver required to manage the virtualization
capabilities of the KVM hypervisor
845
%endif
846 847


848
%if %{with_lxc}
849 850 851 852 853
%package daemon-lxc
Summary: Server side daemon & driver required to run LXC guests
Group: Development/Libraries

Requires: libvirt-daemon = %{version}-%{release}
854 855 856 857
Requires: libvirt-daemon-driver-lxc = %{version}-%{release}
Requires: libvirt-daemon-driver-interface = %{version}-%{release}
Requires: libvirt-daemon-driver-network = %{version}-%{release}
Requires: libvirt-daemon-driver-nodedev = %{version}-%{release}
858
Requires: libvirt-daemon-driver-nwfilter = %{version}-%{release}
859 860
Requires: libvirt-daemon-driver-secret = %{version}-%{release}
Requires: libvirt-daemon-driver-storage = %{version}-%{release}
861 862 863 864

%description daemon-lxc
Server side daemon and driver required to manage the virtualization
capabilities of LXC
865
%endif
866 867


868
%if %{with_uml}
869 870 871 872 873
%package daemon-uml
Summary: Server side daemon & driver required to run UML guests
Group: Development/Libraries

Requires: libvirt-daemon = %{version}-%{release}
874 875 876 877
Requires: libvirt-daemon-driver-uml = %{version}-%{release}
Requires: libvirt-daemon-driver-interface = %{version}-%{release}
Requires: libvirt-daemon-driver-network = %{version}-%{release}
Requires: libvirt-daemon-driver-nodedev = %{version}-%{release}
878
Requires: libvirt-daemon-driver-nwfilter = %{version}-%{release}
879 880
Requires: libvirt-daemon-driver-secret = %{version}-%{release}
Requires: libvirt-daemon-driver-storage = %{version}-%{release}
881 882 883 884 885
# There are no UML kernel RPMs in Fedora/RHEL to depend on.

%description daemon-uml
Server side daemon and driver required to manage the virtualization
capabilities of UML
886
%endif
887 888


889
%if %{with_xen} || %{with_libxl}
890 891 892 893 894
%package daemon-xen
Summary: Server side daemon & driver required to run XEN guests
Group: Development/Libraries

Requires: libvirt-daemon = %{version}-%{release}
895
    %if %{with_xen}
896
Requires: libvirt-daemon-driver-xen = %{version}-%{release}
897 898
    %endif
    %if %{with_libxl}
899
Requires: libvirt-daemon-driver-libxl = %{version}-%{release}
900
    %endif
901 902 903
Requires: libvirt-daemon-driver-interface = %{version}-%{release}
Requires: libvirt-daemon-driver-network = %{version}-%{release}
Requires: libvirt-daemon-driver-nodedev = %{version}-%{release}
904
Requires: libvirt-daemon-driver-nwfilter = %{version}-%{release}
905 906
Requires: libvirt-daemon-driver-secret = %{version}-%{release}
Requires: libvirt-daemon-driver-storage = %{version}-%{release}
907 908 909 910 911
Requires: xen

%description daemon-xen
Server side daemon and driver required to manage the virtualization
capabilities of XEN
912
%endif
913

914
%if %{with_vbox}
915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930
%package daemon-vbox
Summary: Server side daemon & driver required to run VirtualBox guests
Group: Development/Libraries

Requires: libvirt-daemon = %{version}-%{release}
Requires: libvirt-daemon-driver-vbox = %{version}-%{release}
Requires: libvirt-daemon-driver-interface = %{version}-%{release}
Requires: libvirt-daemon-driver-network = %{version}-%{release}
Requires: libvirt-daemon-driver-nodedev = %{version}-%{release}
Requires: libvirt-daemon-driver-nwfilter = %{version}-%{release}
Requires: libvirt-daemon-driver-secret = %{version}-%{release}
Requires: libvirt-daemon-driver-storage = %{version}-%{release}

%description daemon-vbox
Server side daemon and driver required to manage the virtualization
capabilities of VirtualBox
931
%endif
932

933
%package client
934
Summary: Client side library and utilities of the libvirt library
935 936 937 938 939 940
Group: Development/Libraries
Requires: readline
Requires: ncurses
# So remote clients can access libvirt over SSH tunnel
# (client invokes 'nc' against the UNIX socket on the server)
Requires: nc
E
Eric Blake 已提交
941
# Needed by /usr/libexec/libvirt-guests.sh script.
O
Osier Yang 已提交
942
Requires: gettext
943 944
# Needed by virt-pki-validate script.
Requires: gnutls-utils
945
%if %{with_pm_utils}
946 947
# Needed for probing the power management features of the host.
Requires: pm-utils
948
%endif
949 950 951 952 953 954 955 956 957 958
%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

%description client
Shared libraries and client binaries needed to access to the
virtualization capabilities of recent versions of Linux (and other OSes).
959

960 961 962 963
%if %{with_wireshark}
%package wireshark
Summary: Wireshark dissector plugin for libvirt RPC transactions
Group: Development/Libraries
964
Requires: wireshark >= 1.12.6-4
965 966 967 968 969 970
Requires: %{name}-client = %{version}-%{release}

%description wireshark
Wireshark dissector plugin for better analysis of libvirt RPC traffic.
%endif

971 972 973 974 975 976 977 978 979 980 981 982
%if %{with_lxc}
%package login-shell
Summary: Login shell for connecting users to an LXC container
Group: Development/Libraries
Requires: %{name}-client = %{version}-%{release}

%description login-shell
Provides the set-uid virt-login-shell binary that is used to
connect a user to an LXC container when they login, by switching
namespaces.
%endif

983
%package devel
984
Summary: Libraries, includes, etc. to compile with the libvirt library
985
Group: Development/Libraries
986
Requires: %{name}-client = %{version}-%{release}
987
Requires: pkgconfig
988 989

%description devel
990
Include header files & development libraries for the libvirt C library.
991

992 993 994 995
%if %{with_sanlock}
%package lock-sanlock
Summary: Sanlock lock manager plugin for QEMU driver
Group: Development/Libraries
996
Requires: sanlock >= 2.4
997 998
#for virt-sanlock-cleanup require augeas
Requires: augeas
999
Requires: %{name}-daemon = %{version}-%{release}
1000
Requires: %{name}-client = %{version}-%{release}
1001 1002 1003 1004 1005 1006

%description lock-sanlock
Includes the Sanlock lock manager plugin for the QEMU
driver
%endif

1007 1008 1009 1010 1011 1012 1013 1014 1015 1016
%if %{with_nss_plugin}
%package nss
Summary: Libvirt plugin for Name Service Switch
Group: Development/Libraries
Requires: libvirt-daemon-driver-network = %{version}-%{release}

%description nss
Libvirt plugin for NSS for translating domain names into IP addresses.
%endif

M
Martin Kletzander 已提交
1017

1018
%prep
1019 1020 1021 1022 1023
%if ! %{supported_platform}
echo "This RPM requires either Fedora >= 20 or RHEL >= 6"
exit 1
%endif

1024 1025
%setup -q

1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059
# Patches have to be stored in a temporary file because RPM has
# a limit on the length of the result of any macro expansion;
# if the string is longer, it's silently cropped
%{lua:
    tmp = os.tmpname();
    f = io.open(tmp, "w+");
    count = 0;
    for i, p in ipairs(patches) do
        f:write(p.."\n");
        count = count + 1;
    end;
    f:close();
    print("PATCHCOUNT="..count.."\n")
    print("PATCHLIST="..tmp.."\n")
}

git init -q
git config user.name rpm-build
git config user.email rpm-build
git config gc.auto 0
git add .
git commit -q -a --author 'rpm-build <rpm-build>' \
           -m '%{name}-%{version} base'

COUNT=$(grep '\.patch$' $PATCHLIST | wc -l)
if [ $COUNT -ne $PATCHCOUNT ]; then
    echo "Found $COUNT patches in $PATCHLIST, expected $PATCHCOUNT"
    exit 1
fi
if [ $COUNT -gt 0 ]; then
    xargs git am <$PATCHLIST || exit 1
fi
echo "Applied $COUNT patches"
rm -f $PATCHLIST
1060
rm -rf .git
1061

1062
%build
1063
%if ! %{with_xen}
1064
    %define _without_xen --without-xen
1065 1066 1067
%endif

%if ! %{with_qemu}
1068
    %define _without_qemu --without-qemu
1069 1070
%endif

1071
%if ! %{with_openvz}
1072
    %define _without_openvz --without-openvz
1073 1074 1075
%endif

%if ! %{with_lxc}
1076
    %define _without_lxc --without-lxc
1077 1078
%endif

M
Mark McLoughlin 已提交
1079
%if ! %{with_vbox}
1080
    %define _without_vbox --without-vbox
M
Mark McLoughlin 已提交
1081 1082
%endif

J
Jim Fehlig 已提交
1083
%if ! %{with_libxl}
1084
    %define _without_libxl --without-libxl
J
Jim Fehlig 已提交
1085 1086
%endif

1087
%if ! %{with_sasl}
1088
    %define _without_sasl --without-sasl
1089 1090
%endif

1091
%if ! %{with_phyp}
1092
    %define _without_phyp --without-phyp
1093 1094
%endif

1095
%if ! %{with_esx}
1096
    %define _without_esx --without-esx
1097 1098
%endif

1099
%if ! %{with_hyperv}
1100
    %define _without_hyperv --without-hyperv
1101 1102
%endif

1103
%if ! %{with_vmware}
1104
    %define _without_vmware --without-vmware
1105 1106
%endif

1107
%if ! %{with_polkit}
1108
    %define _without_polkit --without-polkit
1109 1110
%endif

1111
%if ! %{with_uml}
1112
    %define _without_uml --without-uml
1113 1114
%endif

1115
%if ! %{with_interface}
1116
    %define _without_interface --without-interface
1117 1118
%endif

1119
%if ! %{with_network}
1120
    %define _without_network --without-network
1121 1122
%endif

1123
%if ! %{with_storage_fs}
1124
    %define _without_storage_fs --without-storage-fs
1125 1126 1127
%endif

%if ! %{with_storage_lvm}
1128
    %define _without_storage_lvm --without-storage-lvm
1129 1130 1131
%endif

%if ! %{with_storage_iscsi}
1132
    %define _without_storage_iscsi --without-storage-iscsi
1133 1134 1135
%endif

%if ! %{with_storage_disk}
1136
    %define _without_storage_disk --without-storage-disk
1137 1138
%endif

1139
%if ! %{with_storage_mpath}
1140
    %define _without_storage_mpath --without-storage-mpath
1141 1142
%endif

1143
%if ! %{with_storage_rbd}
1144
    %define _without_storage_rbd --without-storage-rbd
1145 1146
%endif

1147
%if ! %{with_storage_sheepdog}
1148
    %define _without_storage_sheepdog --without-storage-sheepdog
1149 1150
%endif

1151 1152 1153 1154
%if ! %{with_storage_gluster}
    %define _without_storage_gluster --without-storage-gluster
%endif

1155
%if ! %{with_numactl}
1156
    %define _without_numactl --without-numactl
1157 1158
%endif

1159
%if ! %{with_numad}
1160
    %define _without_numad --without-numad
1161 1162
%endif

1163
%if ! %{with_fuse}
1164
    %define _without_fuse --without-fuse
1165 1166
%endif

1167
%if ! %{with_selinux}
1168
    %define _without_selinux --without-selinux
1169 1170
%endif

1171
%if ! %{with_yajl}
1172
    %define _without_yajl --without-yajl
1173 1174
%endif

1175
%if ! %{with_sanlock}
1176
    %define _without_sanlock --without-sanlock
1177 1178
%endif

1179
%if ! %{with_libpcap}
1180
    %define _without_libpcap --without-libpcap
1181 1182
%endif

1183
%if ! %{with_macvtap}
1184
    %define _without_macvtap --without-macvtap
1185 1186
%endif

1187
%if ! %{with_audit}
1188
    %define _without_audit --without-audit
1189 1190
%endif

1191
%if ! %{with_dtrace}
1192
    %define _without_dtrace --without-dtrace
1193 1194
%endif

1195
%if %{with_firewalld}
1196
    %define _with_firewalld --with-firewalld
1197 1198
%endif

1199 1200 1201 1202
%if ! %{with_wireshark}
    %define _without_wireshark --without-wireshark-dissector
%endif

1203 1204 1205 1206
%if ! %{with_systemd_daemon}
    %define _without_systemd_daemon --without-systemd-daemon
%endif

1207 1208 1209 1210
%if ! %{with_pm_utils}
    %define _without_pm_utils --without-pm-utils
%endif

1211 1212 1213 1214
%if ! %{with_nss_plugin}
    %define _without_nss_plugin --without-nss-plugin
%endif

1215 1216 1217 1218 1219 1220
%define when  %(date +"%%F-%%T")
%define where %(hostname)
%define who   %{?packager}%{!?packager:Unknown}
%define with_packager --with-packager="%{who}, %{when}, %{where}"
%define with_packager_version --with-packager-version="%{release}"

1221
%if %{with_systemd}
1222
    %define with_init_script --with-init-script=systemd
1223
%else
1224
    %define with_init_script --with-init-script=redhat
1225
%endif
1226

1227
%if %{with_selinux}
1228
    %if 0%{?fedora} || 0%{?rhel} >= 7
1229 1230 1231 1232
        %define with_selinux_mount --with-selinux-mount="/sys/fs/selinux"
    %else
        %define with_selinux_mount --with-selinux-mount="/selinux"
    %endif
1233 1234
%endif

1235 1236 1237 1238 1239 1240
# place macros above and build commands below this comment

%if 0%{?enable_autotools}
 autoreconf -if
%endif

1241
rm -f po/stamp-po
1242 1243
%configure %{?_without_xen} \
           %{?_without_qemu} \
1244 1245
           %{?_without_openvz} \
           %{?_without_lxc} \
M
Mark McLoughlin 已提交
1246
           %{?_without_vbox} \
1247
           %{?_without_libxl} \
1248
           %{?_without_sasl} \
1249
           --with-avahi \
1250
           %{?_without_polkit} \
1251
           --with-libvirtd \
1252
           %{?_without_uml} \
1253
           %{?_without_phyp} \
1254
           %{?_without_esx} \
1255
           %{?_without_hyperv} \
1256
           %{?_without_vmware} \
1257 1258
           --without-xenapi \
           --without-vz \
1259
           --without-bhyve \
1260
           %{?_without_interface} \
1261
           %{?_without_network} \
1262 1263 1264 1265
           %{?_without_storage_fs} \
           %{?_without_storage_lvm} \
           %{?_without_storage_iscsi} \
           %{?_without_storage_disk} \
1266
           %{?_without_storage_mpath} \
1267
           %{?_without_storage_rbd} \
1268
           %{?_without_storage_sheepdog} \
1269
           %{?_without_storage_gluster} \
1270
           %{?_without_numactl} \
1271
           %{?_without_numad} \
1272
           --with-capng \
1273
           %{?_without_fuse} \
1274
           --with-netcf \
1275
           %{?_without_selinux} \
1276
           %{?_with_selinux_mount} \
1277
           --without-apparmor \
1278
           --without-hal \
1279
           --with-udev \
1280
           %{?_without_yajl} \
1281
           %{?_without_sanlock} \
1282
           %{?_without_libpcap} \
1283
           %{?_without_macvtap} \
1284
           %{?_without_audit} \
1285
           %{?_without_dtrace} \
1286
           --with-driver-modules \
1287
           %{?_with_firewalld} \
1288
           %{?_without_wireshark} \
1289
           %{?_without_systemd_daemon} \
1290
           %{?_without_pm_utils} \
1291
           %{?_without_nss_plugin} \
1292 1293
           %{with_packager} \
           %{with_packager_version} \
1294 1295
           --with-qemu-user=%{qemu_user} \
           --with-qemu-group=%{qemu_group} \
1296
           %{?with_loader_nvram} \
1297
           %{?enable_werror} \
1298
           --enable-expensive-tests \
1299
           %{with_init_script}
J
Jim Meyering 已提交
1300
make %{?_smp_mflags}
1301
gzip -9 ChangeLog
1302 1303 1304 1305

%install
rm -fr %{buildroot}

1306 1307 1308 1309 1310
# Avoid using makeinstall macro as it changes prefixes rather than setting
# DESTDIR. Newer make_install macro would be better but it's not available
# on RHEL 5, thus we need to expand it here.
make install DESTDIR=%{?buildroot} SYSTEMD_UNIT_DIR=%{_unitdir}

1311 1312
make -C examples distclean

1313
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
1314
rm -f $RPM_BUILD_ROOT%{_libdir}/*.a
1315 1316
rm -f $RPM_BUILD_ROOT%{_libdir}/libvirt/lock-driver/*.la
rm -f $RPM_BUILD_ROOT%{_libdir}/libvirt/lock-driver/*.a
1317 1318
rm -f $RPM_BUILD_ROOT%{_libdir}/libvirt/connection-driver/*.la
rm -f $RPM_BUILD_ROOT%{_libdir}/libvirt/connection-driver/*.a
1319 1320
%if %{with_wireshark}
rm -f $RPM_BUILD_ROOT%{_libdir}/wireshark/plugins/*/libvirt.la
1321 1322
mv $RPM_BUILD_ROOT%{_libdir}/wireshark/plugins/*/libvirt.so \
   $RPM_BUILD_ROOT%{_libdir}/wireshark/plugins/libvirt.so
1323
%endif
1324

1325
# Temporarily get rid of not-installed admin-related files
1326
rm -f $RPM_BUILD_ROOT%{_libdir}/libvirt-admin.so
1327 1328
rm -f $RPM_BUILD_ROOT%{_bindir}/virt-admin
rm -f $RPM_BUILD_ROOT%{_mandir}/man1/virt-admin.1*
1329
rm -f $RPM_BUILD_ROOT%{_sysconfdir}/libvirt/libvirt-admin.conf
1330

1331
%if %{with_network}
1332
install -d -m 0755 $RPM_BUILD_ROOT%{_datadir}/lib/libvirt/dnsmasq/
1333 1334 1335 1336 1337 1338 1339 1340
# 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.
install -d -m 0755 $RPM_BUILD_ROOT%{_datadir}/libvirt/networks/
cp $RPM_BUILD_ROOT%{_sysconfdir}/libvirt/qemu/networks/default.xml \
   $RPM_BUILD_ROOT%{_datadir}/libvirt/networks/default.xml
rm -f $RPM_BUILD_ROOT%{_sysconfdir}/libvirt/qemu/networks/default.xml
rm -f $RPM_BUILD_ROOT%{_sysconfdir}/libvirt/qemu/networks/autostart/default.xml
1341
# Strip auto-generated UUID - we need it generated per-install
1342
sed -i -e "/<uuid>/d" $RPM_BUILD_ROOT%{_datadir}/libvirt/networks/default.xml
1343 1344 1345
%else
rm -f $RPM_BUILD_ROOT%{_sysconfdir}/libvirt/qemu/networks/default.xml
rm -f $RPM_BUILD_ROOT%{_sysconfdir}/libvirt/qemu/networks/autostart/default.xml
1346 1347
%endif
%if ! %{with_qemu}
1348 1349
rm -f $RPM_BUILD_ROOT%{_datadir}/augeas/lenses/libvirtd_qemu.aug
rm -f $RPM_BUILD_ROOT%{_datadir}/augeas/lenses/tests/test_libvirtd_qemu.aug
1350
%endif
1351
%find_lang %{name}
1352

1353 1354 1355 1356 1357
%if ! %{with_sanlock}
rm -f $RPM_BUILD_ROOT%{_datadir}/augeas/lenses/libvirt_sanlock.aug
rm -f $RPM_BUILD_ROOT%{_datadir}/augeas/lenses/tests/test_libvirt_sanlock.aug
%endif

1358 1359 1360
%if ! %{with_lxc}
rm -f $RPM_BUILD_ROOT%{_datadir}/augeas/lenses/libvirtd_lxc.aug
rm -f $RPM_BUILD_ROOT%{_datadir}/augeas/lenses/tests/test_libvirtd_lxc.aug
1361
%endif
1362

1363 1364
%if ! %{with_qemu}
rm -rf $RPM_BUILD_ROOT%{_sysconfdir}/libvirt/qemu.conf
1365
rm -rf $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d/libvirtd.qemu
1366
%endif
A
Amy Griffis 已提交
1367 1368
%if ! %{with_lxc}
rm -rf $RPM_BUILD_ROOT%{_sysconfdir}/libvirt/lxc.conf
1369
rm -rf $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d/libvirtd.lxc
1370
%endif
1371 1372
%if ! %{with_libxl}
rm -rf $RPM_BUILD_ROOT%{_sysconfdir}/libvirt/libxl.conf
J
Jim Fehlig 已提交
1373
rm -rf $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d/libvirtd.libxl
1374 1375 1376
rm -f $RPM_BUILD_ROOT%{_datadir}/augeas/lenses/libvirtd_libxl.aug
rm -f $RPM_BUILD_ROOT%{_datadir}/augeas/lenses/tests/test_libvirtd_libxl.aug
%endif
1377 1378
%if ! %{with_uml}
rm -rf $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d/libvirtd.uml
A
Amy Griffis 已提交
1379
%endif
1380

1381 1382
# Copied into libvirt-docs subpackage eventually
mv $RPM_BUILD_ROOT%{_datadir}/doc/libvirt-%{version} libvirt-docs
1383

1384
%if %{with_dtrace}
1385
    %ifarch %{power64} s390x x86_64 ia64 alpha sparc64
1386 1387 1388 1389
mv $RPM_BUILD_ROOT%{_datadir}/systemtap/tapset/libvirt_probes.stp \
   $RPM_BUILD_ROOT%{_datadir}/systemtap/tapset/libvirt_probes-64.stp
mv $RPM_BUILD_ROOT%{_datadir}/systemtap/tapset/libvirt_qemu_probes.stp \
   $RPM_BUILD_ROOT%{_datadir}/systemtap/tapset/libvirt_qemu_probes-64.stp
1390
    %endif
1391 1392
%endif

1393 1394 1395
%clean
rm -fr %{buildroot}

1396 1397
%check
cd tests
D
Daniel Veillard 已提交
1398 1399 1400
make
# These tests don't current work in a mock build root
for i in nodeinfotest seclabeltest
1401 1402
do
  rm -f $i
1403
  printf 'int main(void) { return 0; }' > $i.c
D
Daniel Veillard 已提交
1404
  printf '#!/bin/sh\nexit 0\n' > $i
1405 1406
  chmod +x $i
done
1407 1408 1409 1410 1411
if ! make check VIR_TEST_DEBUG=1
then
  cat test-suite.log || true
  exit 1
fi
1412

1413
%pre daemon
1414
%if %{with_polkit}
1415 1416 1417 1418
# 'libvirt' group is just to allow password-less polkit access to
# libvirtd. The uid number is irrelevant, so we use dynamic allocation
# described at the above link.
getent group libvirt >/dev/null || groupadd -r libvirt
1419
%endif
1420 1421 1422

exit 0

1423
%post daemon
1424

1425 1426 1427 1428
%if %{with_systemd}
    %if %{with_systemd_macros}
        %systemd_post virtlockd.socket virtlogd.socket libvirtd.service
    %else
1429 1430
if [ $1 -eq 1 ] ; then
    # Initial installation
1431 1432
    /bin/systemctl enable \
        virtlockd.socket \
1433
        virtlogd.socket \
1434
        libvirtd.service >/dev/null 2>&1 || :
1435
fi
1436 1437 1438
    %endif
%else
    %if %{with_cgconfig}
1439 1440
# Starting with Fedora 16/RHEL-7, systemd automounts all cgroups,
# and cgconfig is no longer a necessary service.
1441
        %if 0%{?rhel} && 0%{?rhel} < 7
1442 1443 1444
if [ "$1" -eq "1" ]; then
/sbin/chkconfig cgconfig on
fi
1445
        %endif
1446
    %endif
1447

1448
/sbin/chkconfig --add libvirtd
1449
/sbin/chkconfig --add virtlogd
1450
/sbin/chkconfig --add virtlockd
1451
%endif
1452

1453
%preun daemon
1454 1455 1456 1457
%if %{with_systemd}
    %if %{with_systemd_macros}
        %systemd_preun libvirtd.service virtlogd.socket virtlogd.service virtlockd.socket virtlockd.service
    %else
1458 1459
if [ $1 -eq 0 ] ; then
    # Package removal, not upgrade
1460 1461
    /bin/systemctl --no-reload disable \
        libvirtd.service \
1462 1463
        virtlogd.socket \
        virtlogd.service \
1464 1465 1466 1467
        virtlockd.socket \
        virtlockd.service > /dev/null 2>&1 || :
    /bin/systemctl stop \
        libvirtd.service \
1468 1469
        virtlogd.socket \
        virtlogd.service \
1470 1471
        virtlockd.socket \
        virtlockd.service > /dev/null 2>&1 || :
1472
fi
1473 1474
    %endif
%else
1475 1476 1477
if [ $1 = 0 ]; then
    /sbin/service libvirtd stop 1>/dev/null 2>&1
    /sbin/chkconfig --del libvirtd
1478 1479
    /sbin/service virtlogd stop 1>/dev/null 2>&1
    /sbin/chkconfig --del virtlogd
1480 1481
    /sbin/service virtlockd stop 1>/dev/null 2>&1
    /sbin/chkconfig --del virtlockd
1482
fi
1483
%endif
1484

1485
%postun daemon
1486
%if %{with_systemd}
1487 1488
/bin/systemctl daemon-reload >/dev/null 2>&1 || :
if [ $1 -ge 1 ] ; then
1489
    /bin/systemctl reload-or-try-restart virtlockd.service >/dev/null 2>&1 || :
1490
    /bin/systemctl reload-or-try-restart virtlogd.service >/dev/null 2>&1 || :
1491 1492
    /bin/systemctl try-restart libvirtd.service >/dev/null 2>&1 || :
fi
1493
%else
1494 1495
if [ $1 -ge 1 ]; then
    /sbin/service virtlockd reload > /dev/null 2>&1 || :
1496
    /sbin/service virtlogd reload > /dev/null 2>&1 || :
1497 1498
    /sbin/service libvirtd condrestart > /dev/null 2>&1
fi
1499
%endif
1500

1501 1502
%if %{with_systemd}
%else
1503 1504 1505
%triggerpostun daemon -- libvirt-daemon < 1.2.1
if [ "$1" -ge "1" ]; then
    /sbin/service virtlockd reload > /dev/null 2>&1 || :
1506
    /sbin/service virtlogd reload > /dev/null 2>&1 || :
1507 1508
    /sbin/service libvirtd condrestart > /dev/null 2>&1
fi
1509
%endif
1510

1511 1512 1513 1514 1515 1516
# In upgrade scenario we must explicitly enable virtlockd/virtlogd
# sockets, if libvirtd is already enabled and start them if
# libvirtd is running, otherwise you'll get failures to start
# guests
%triggerpostun daemon -- libvirt-daemon < 1.3.0
if [ $1 -ge 1 ] ; then
1517
%if %{with_systemd}
1518 1519 1520 1521
        /bin/systemctl is-enabled libvirtd.service 1>/dev/null 2>&1 &&
            /bin/systemctl enable virtlogd.socket || :
        /bin/systemctl is-active libvirtd.service 1>/dev/null 2>&1 &&
            /bin/systemctl start virtlogd.socket || :
1522
%else
1523
        /sbin/chkconfig libvirtd 1>/dev/null 2>&1 &&
1524
            /sbin/chkconfig virtlogd on || :
1525
        /sbin/service libvirtd status 1>/dev/null 2>&1 &&
1526
            /sbin/service virtlogd start || :
1527
%endif
1528 1529
fi

1530
%if %{with_network}
1531 1532
%post daemon-config-network
if test $1 -eq 1 && test ! -f %{_sysconfdir}/libvirt/qemu/networks/default.xml ; then
1533 1534 1535 1536 1537 1538 1539 1540 1541
    # see if the network used by default network creates a conflict,
    # and try to resolve it
    # NB: 192.168.122.0/24 is used in the default.xml template file;
    # do not modify any of those values here without also modifying
    # them in the template.
    orig_sub=122
    sub=${orig_sub}
    nl='
'
1542
    routes="${nl}$(ip route show | cut -d' ' -f1)${nl}"
1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560
    case ${routes} in
      *"${nl}192.168.${orig_sub}.0/24${nl}"*)
        # there was a match, so we need to look for an unused subnet
        for new_sub in $(seq 124 254); do
          case ${routes} in
          *"${nl}192.168.${new_sub}.0/24${nl}"*)
            ;;
          *)
            sub=$new_sub
            break;
            ;;
          esac
        done
        ;;
      *)
        ;;
    esac

1561
    UUID=`/usr/bin/uuidgen`
1562 1563
    sed -e "s/${orig_sub}/${sub}/g" \
        -e "s,</name>,</name>\n  <uuid>$UUID</uuid>," \
1564 1565 1566
         < %{_datadir}/libvirt/networks/default.xml \
         > %{_sysconfdir}/libvirt/qemu/networks/default.xml
    ln -s ../default.xml %{_sysconfdir}/libvirt/qemu/networks/autostart/default.xml
1567 1568

    # Make sure libvirt picks up the new network defininiton
1569
    %if %{with_systemd}
1570
    /bin/systemctl try-restart libvirtd.service >/dev/null 2>&1 ||:
1571
    %else
1572
    /sbin/service libvirtd condrestart > /dev/null 2>&1 || :
1573
    %endif
1574

1575
fi
1576
%endif
1577

1578
%if %{with_systemd}
1579 1580 1581 1582 1583 1584 1585 1586 1587
%triggerun -- libvirt < 0.9.4
%{_bindir}/systemd-sysv-convert --save libvirtd >/dev/null 2>&1 ||:

# If the package is allowed to autostart:
/bin/systemctl --no-reload enable libvirtd.service >/dev/null 2>&1 ||:

# Run these because the SysV package being removed won't do them
/sbin/chkconfig --del libvirtd >/dev/null 2>&1 || :
/bin/systemctl try-restart libvirtd.service >/dev/null 2>&1 || :
1588
%endif
1589

1590
%if %{with_qemu}
1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604
%pre daemon-driver-qemu
# We want soft static allocation of well-known ids, as disk images
# are commonly shared across NFS mounts by id rather than name; see
# https://fedoraproject.org/wiki/Packaging:UsersAndGroups
getent group kvm >/dev/null || groupadd -f -g 36 -r kvm
getent group qemu >/dev/null || groupadd -f -g 107 -r qemu
if ! getent passwd qemu >/dev/null; then
  if ! getent passwd 107 >/dev/null; then
    useradd -r -u 107 -g qemu -G kvm -d / -s /sbin/nologin -c "qemu user" qemu
  else
    useradd -r -g qemu -G kvm -d / -s /sbin/nologin -c "qemu user" qemu
  fi
fi
exit 0
1605
%endif
1606

J
Jiri Denemark 已提交
1607 1608
%preun client

1609
%if %{with_systemd}
1610 1611 1612
    %if %{with_systemd_macros}
        %systemd_preun libvirt-guests.service
    %endif
1613
%else
J
Jiri Denemark 已提交
1614 1615 1616 1617
if [ $1 = 0 ]; then
    /sbin/chkconfig --del libvirt-guests
    rm -f /var/lib/libvirt/libvirt-guests
fi
1618
%endif
J
Jiri Denemark 已提交
1619 1620 1621 1622

%post client

/sbin/ldconfig
1623
%if %{with_systemd}
1624 1625 1626
    %if %{with_systemd_macros}
        %systemd_post libvirt-guests.service
    %endif
1627
%else
J
Jiri Denemark 已提交
1628
/sbin/chkconfig --add libvirt-guests
1629
%endif
1630

1631
%postun client
1632

1633
/sbin/ldconfig
1634
%if %{with_systemd}
1635
    %if %{with_systemd_macros}
1636
        %systemd_postun libvirt-guests.service
1637
    %endif
1638 1639 1640 1641 1642 1643
%triggerun client -- libvirt < 0.9.4
%{_bindir}/systemd-sysv-convert --save libvirt-guests >/dev/null 2>&1 ||:

# If the package is allowed to autostart:
/bin/systemctl --no-reload enable libvirt-guests.service >/dev/null 2>&1 ||:

1644
# Run this because the SysV package being removed won't do them
1645 1646 1647
/sbin/chkconfig --del libvirt-guests >/dev/null 2>&1 || :
%endif

1648
%if %{with_sanlock}
1649 1650 1651 1652 1653
%post lock-sanlock
if getent group sanlock > /dev/null ; then
    chmod 0770 %{_localstatedir}/lib/libvirt/sanlock
    chown root:sanlock %{_localstatedir}/lib/libvirt/sanlock
fi
1654
%endif
1655

1656 1657 1658 1659 1660 1661
%if %{with_lxc}
%pre login-shell
getent group virtlogin >/dev/null || groupadd -r virtlogin
exit 0
%endif

1662
%files
1663 1664
%defattr(-, root, root)

1665 1666
%files docs
%defattr(-, root, root)
1667 1668
%doc AUTHORS ChangeLog.gz NEWS README TODO
%doc libvirt-docs/*
1669 1670 1671 1672 1673 1674 1675

# API docs
%dir %{_datadir}/gtk-doc/html/libvirt/
%doc %{_datadir}/gtk-doc/html/libvirt/*.devhelp
%doc %{_datadir}/gtk-doc/html/libvirt/*.html
%doc %{_datadir}/gtk-doc/html/libvirt/*.png
%doc %{_datadir}/gtk-doc/html/libvirt/*.css
1676 1677 1678 1679 1680 1681 1682 1683 1684 1685
%doc examples/hellolibvirt
%doc examples/object-events
%doc examples/dominfo
%doc examples/domsuspend
%doc examples/dommigrate
%doc examples/openauth
%doc examples/xml
%doc examples/rename
%doc examples/systemtap

1686 1687 1688 1689

%files daemon
%defattr(-, root, root)

1690
%dir %attr(0700, root, root) %{_sysconfdir}/libvirt/
1691

1692
%if %{with_systemd}
1693
%{_unitdir}/libvirtd.service
1694 1695
%{_unitdir}/virtlogd.service
%{_unitdir}/virtlogd.socket
1696 1697
%{_unitdir}/virtlockd.service
%{_unitdir}/virtlockd.socket
1698
%else
D
Daniel Veillard 已提交
1699
%{_sysconfdir}/rc.d/init.d/libvirtd
1700
%{_sysconfdir}/rc.d/init.d/virtlogd
1701
%{_sysconfdir}/rc.d/init.d/virtlockd
1702
%endif
A
Alan Pevec 已提交
1703
%doc daemon/libvirtd.upstart
1704
%config(noreplace) %{_sysconfdir}/sysconfig/libvirtd
1705
%config(noreplace) %{_sysconfdir}/sysconfig/virtlogd
1706
%config(noreplace) %{_sysconfdir}/sysconfig/virtlockd
1707
%config(noreplace) %{_sysconfdir}/libvirt/libvirtd.conf
1708
%config(noreplace) %{_sysconfdir}/libvirt/virtlogd.conf
1709
%config(noreplace) %{_sysconfdir}/libvirt/virtlockd.conf
1710
%config(noreplace) %{_prefix}/lib/sysctl.d/60-libvirtd.conf
1711

1712
%config(noreplace) %{_sysconfdir}/logrotate.d/libvirtd
1713
%dir %{_datadir}/libvirt/
1714

1715
%ghost %dir %{_localstatedir}/run/libvirt/
1716

1717
%dir %attr(0711, root, root) %{_localstatedir}/lib/libvirt/images/
1718
%dir %attr(0711, root, root) %{_localstatedir}/lib/libvirt/filesystems/
1719
%dir %attr(0711, root, root) %{_localstatedir}/lib/libvirt/boot/
1720
%dir %attr(0711, root, root) %{_localstatedir}/cache/libvirt/
1721

1722

1723
%dir %attr(0755, root, root) %{_libdir}/libvirt/lock-driver
1724
%attr(0755, root, root) %{_libdir}/libvirt/lock-driver/lockd.so
1725

1726 1727
%{_datadir}/augeas/lenses/libvirtd.aug
%{_datadir}/augeas/lenses/tests/test_libvirtd.aug
1728 1729
%{_datadir}/augeas/lenses/virtlogd.aug
%{_datadir}/augeas/lenses/tests/test_virtlogd.aug
1730 1731
%{_datadir}/augeas/lenses/virtlockd.aug
%{_datadir}/augeas/lenses/tests/test_virtlockd.aug
1732
%{_datadir}/augeas/lenses/libvirt_lockd.aug
1733
%if %{with_qemu}
1734
%{_datadir}/augeas/lenses/tests/test_libvirt_lockd.aug
1735
%endif
1736

1737
%if %{with_polkit}
1738
%{_datadir}/polkit-1/actions/org.libvirt.unix.policy
1739
%{_datadir}/polkit-1/actions/org.libvirt.api.policy
1740
%{_datadir}/polkit-1/rules.d/50-libvirt.rules
1741
%endif
1742

M
Mark McLoughlin 已提交
1743
%dir %attr(0700, root, root) %{_localstatedir}/log/libvirt/
1744

1745
%attr(0755, root, root) %{_libexecdir}/libvirt_iohelper
1746

1747
%attr(0755, root, root) %{_sbindir}/libvirtd
1748
%attr(0755, root, root) %{_sbindir}/virtlogd
1749
%attr(0755, root, root) %{_sbindir}/virtlockd
1750

1751
%{_mandir}/man8/libvirtd.8*
1752
%{_mandir}/man8/virtlogd.8*
1753
%{_mandir}/man8/virtlockd.8*
1754

1755 1756
%doc examples/polkit/*.rules

1757
%if %{with_network}
1758
%files daemon-config-network
1759
%defattr(-, root, root)
1760 1761
%dir %{_datadir}/libvirt/networks/
%{_datadir}/libvirt/networks/default.xml
1762
%endif
1763

1764
%if %{with_nwfilter}
1765 1766 1767
%files daemon-config-nwfilter
%defattr(-, root, root)
%{_sysconfdir}/libvirt/nwfilter/*.xml
1768
%endif
1769

1770
%if %{with_interface}
1771 1772 1773
%files daemon-driver-interface
%defattr(-, root, root)
%{_libdir}/%{name}/connection-driver/libvirt_driver_interface.so
1774
%endif
1775

1776
%if %{with_network}
1777 1778
%files daemon-driver-network
%defattr(-, root, root)
1779 1780 1781 1782 1783 1784
%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
%ghost %dir %{_localstatedir}/run/libvirt/network/
%dir %attr(0700, root, root) %{_localstatedir}/lib/libvirt/network/
%dir %attr(0755, root, root) %{_localstatedir}/lib/libvirt/dnsmasq/
1785
%attr(0755, root, root) %{_libexecdir}/libvirt_leaseshelper
1786
%{_libdir}/%{name}/connection-driver/libvirt_driver_network.so
1787
%endif
1788

1789
%if %{with_nodedev}
1790 1791 1792
%files daemon-driver-nodedev
%defattr(-, root, root)
%{_libdir}/%{name}/connection-driver/libvirt_driver_nodedev.so
1793
%endif
1794

1795
%if %{with_nwfilter}
1796 1797
%files daemon-driver-nwfilter
%defattr(-, root, root)
1798 1799
%dir %attr(0700, root, root) %{_sysconfdir}/libvirt/nwfilter/
%ghost %dir %{_localstatedir}/run/libvirt/network/
1800
%{_libdir}/%{name}/connection-driver/libvirt_driver_nwfilter.so
1801
%endif
1802 1803 1804 1805 1806

%files daemon-driver-secret
%defattr(-, root, root)
%{_libdir}/%{name}/connection-driver/libvirt_driver_secret.so

1807
%if %{with_storage}
1808 1809
%files daemon-driver-storage
%defattr(-, root, root)
1810
    %if %{with_storage_disk}
1811
%attr(0755, root, root) %{_libexecdir}/libvirt_parthelper
1812
    %endif
1813 1814
%{_libdir}/%{name}/connection-driver/libvirt_driver_storage.so
%endif
1815

1816
%if %{with_qemu}
1817 1818
%files daemon-driver-qemu
%defattr(-, root, root)
1819
%dir %attr(0700, root, root) %{_sysconfdir}/libvirt/qemu/
1820 1821 1822 1823 1824
%dir %attr(0700, root, root) %{_localstatedir}/log/libvirt/qemu/
%config(noreplace) %{_sysconfdir}/libvirt/qemu.conf
%config(noreplace) %{_sysconfdir}/libvirt/qemu-lockd.conf
%config(noreplace) %{_sysconfdir}/logrotate.d/libvirtd.qemu
%ghost %dir %attr(0700, root, root) %{_localstatedir}/run/libvirt/qemu/
1825
%dir %attr(0751, %{qemu_user}, %{qemu_group}) %{_localstatedir}/lib/libvirt/qemu/
1826 1827 1828
%dir %attr(0750, %{qemu_user}, %{qemu_group}) %{_localstatedir}/cache/libvirt/qemu/
%{_datadir}/augeas/lenses/libvirtd_qemu.aug
%{_datadir}/augeas/lenses/tests/test_libvirtd_qemu.aug
1829
%{_libdir}/%{name}/connection-driver/libvirt_driver_qemu.so
1830
%endif
1831

1832
%if %{with_lxc}
1833 1834
%files daemon-driver-lxc
%defattr(-, root, root)
1835 1836 1837 1838 1839 1840 1841 1842
%dir %attr(0700, root, root) %{_localstatedir}/log/libvirt/lxc/
%config(noreplace) %{_sysconfdir}/libvirt/lxc.conf
%config(noreplace) %{_sysconfdir}/logrotate.d/libvirtd.lxc
%ghost %dir %{_localstatedir}/run/libvirt/lxc/
%dir %attr(0700, root, root) %{_localstatedir}/lib/libvirt/lxc/
%{_datadir}/augeas/lenses/libvirtd_lxc.aug
%{_datadir}/augeas/lenses/tests/test_libvirtd_lxc.aug
%attr(0755, root, root) %{_libexecdir}/libvirt_lxc
1843
%{_libdir}/%{name}/connection-driver/libvirt_driver_lxc.so
1844
%endif
1845

1846
%if %{with_uml}
1847 1848
%files daemon-driver-uml
%defattr(-, root, root)
1849 1850 1851 1852
%dir %attr(0700, root, root) %{_localstatedir}/log/libvirt/uml/
%config(noreplace) %{_sysconfdir}/logrotate.d/libvirtd.uml
%ghost %dir %{_localstatedir}/run/libvirt/uml/
%dir %attr(0700, root, root) %{_localstatedir}/lib/libvirt/uml/
1853
%{_libdir}/%{name}/connection-driver/libvirt_driver_uml.so
1854
%endif
1855

1856
%if %{with_xen}
1857 1858
%files daemon-driver-xen
%defattr(-, root, root)
1859
%dir %attr(0700, root, root) %{_localstatedir}/lib/libvirt/xen/
1860
%{_libdir}/%{name}/connection-driver/libvirt_driver_xen.so
1861
%endif
1862

1863
%if %{with_libxl}
1864 1865
%files daemon-driver-libxl
%defattr(-, root, root)
1866
%config(noreplace) %{_sysconfdir}/libvirt/libxl.conf
J
Jim Fehlig 已提交
1867
%config(noreplace) %{_sysconfdir}/logrotate.d/libvirtd.libxl
1868
%config(noreplace) %{_sysconfdir}/libvirt/libxl-lockd.conf
1869 1870
%{_datadir}/augeas/lenses/libvirtd_libxl.aug
%{_datadir}/augeas/lenses/tests/test_libvirtd_libxl.aug
1871 1872 1873
%dir %attr(0700, root, root) %{_localstatedir}/log/libvirt/libxl/
%ghost %dir %{_localstatedir}/run/libvirt/libxl/
%dir %attr(0700, root, root) %{_localstatedir}/lib/libvirt/libxl/
1874
%{_libdir}/%{name}/connection-driver/libvirt_driver_libxl.so
1875
%endif
1876

1877
%if %{with_vbox}
1878 1879 1880
%files daemon-driver-vbox
%defattr(-, root, root)
%{_libdir}/%{name}/connection-driver/libvirt_driver_vbox.so
1881
%endif
1882

1883
%if %{with_qemu_tcg}
1884 1885
%files daemon-qemu
%defattr(-, root, root)
1886
%endif
1887

1888
%if %{with_qemu_kvm}
1889 1890
%files daemon-kvm
%defattr(-, root, root)
1891
%endif
1892

1893
%if %{with_lxc}
1894 1895
%files daemon-lxc
%defattr(-, root, root)
1896
%endif
1897

1898
%if %{with_uml}
1899 1900
%files daemon-uml
%defattr(-, root, root)
1901
%endif
1902

1903
%if %{with_xen} || %{with_libxl}
1904
%files daemon-xen
1905
%defattr(-, root, root)
1906
%endif
1907

1908
%if %{with_vbox}
1909
%files daemon-vbox
1910
%defattr(-, root, root)
1911
%endif
1912

1913 1914 1915
%if %{with_sanlock}
%files lock-sanlock
%defattr(-, root, root)
1916
    %if %{with_qemu}
1917
%config(noreplace) %{_sysconfdir}/libvirt/qemu-sanlock.conf
1918
    %endif
1919 1920 1921
    %if %{with_libxl}
%config(noreplace) %{_sysconfdir}/libvirt/libxl-sanlock.conf
    %endif
1922
%attr(0755, root, root) %{_libdir}/libvirt/lock-driver/sanlock.so
1923 1924
%{_datadir}/augeas/lenses/libvirt_sanlock.aug
%{_datadir}/augeas/lenses/tests/test_libvirt_sanlock.aug
1925
%dir %attr(0700, root, root) %{_localstatedir}/lib/libvirt/sanlock
1926 1927
%{_sbindir}/virt-sanlock-cleanup
%{_mandir}/man8/virt-sanlock-cleanup.8*
1928
%attr(0755, root, root) %{_libexecdir}/libvirt_sanlock_helper
1929 1930
%endif

1931 1932
%files client -f %{name}.lang
%defattr(-, root, root)
1933
%doc COPYING COPYING.LESSER
1934

1935
%config(noreplace) %{_sysconfdir}/libvirt/libvirt.conf
1936 1937
%{_mandir}/man1/virsh.1*
%{_mandir}/man1/virt-xml-validate.1*
1938
%{_mandir}/man1/virt-pki-validate.1*
1939
%{_mandir}/man1/virt-host-validate.1*
1940 1941
%{_bindir}/virsh
%{_bindir}/virt-xml-validate
1942
%{_bindir}/virt-pki-validate
1943
%{_bindir}/virt-host-validate
1944 1945 1946
%{_libdir}/libvirt.so.*
%{_libdir}/libvirt-qemu.so.*
%{_libdir}/libvirt-lxc.so.*
1947
%{_libdir}/libvirt-admin.so.*
1948

1949
%if %{with_dtrace}
1950 1951
%{_datadir}/systemtap/tapset/libvirt_probes*.stp
%{_datadir}/systemtap/tapset/libvirt_qemu_probes*.stp
1952 1953 1954
%{_datadir}/systemtap/tapset/libvirt_functions.stp
%endif

1955 1956 1957
%dir %{_datadir}/libvirt/
%dir %{_datadir}/libvirt/schemas/

1958 1959
%{_datadir}/libvirt/schemas/basictypes.rng
%{_datadir}/libvirt/schemas/capability.rng
1960
%{_datadir}/libvirt/schemas/domain.rng
M
Michal Privoznik 已提交
1961
%{_datadir}/libvirt/schemas/domaincaps.rng
1962
%{_datadir}/libvirt/schemas/domaincommon.rng
1963
%{_datadir}/libvirt/schemas/domainsnapshot.rng
1964
%{_datadir}/libvirt/schemas/interface.rng
1965
%{_datadir}/libvirt/schemas/network.rng
1966
%{_datadir}/libvirt/schemas/networkcommon.rng
1967
%{_datadir}/libvirt/schemas/nodedev.rng
1968
%{_datadir}/libvirt/schemas/nwfilter.rng
M
Miloslav Trmač 已提交
1969
%{_datadir}/libvirt/schemas/secret.rng
1970
%{_datadir}/libvirt/schemas/storagecommon.rng
1971 1972
%{_datadir}/libvirt/schemas/storagepool.rng
%{_datadir}/libvirt/schemas/storagevol.rng
1973

J
Jiri Denemark 已提交
1974
%{_datadir}/libvirt/cpu_map.xml
1975
%{_datadir}/libvirt/libvirtLogo.png
J
Jiri Denemark 已提交
1976

1977 1978
%if %{with_systemd}
%{_unitdir}/libvirt-guests.service
1979 1980
%else
%{_sysconfdir}/rc.d/init.d/libvirt-guests
1981
%endif
1982
%config(noreplace) %{_sysconfdir}/sysconfig/libvirt-guests
1983
%attr(0755, root, root) %{_libexecdir}/libvirt-guests.sh
E
Eric Blake 已提交
1984
%dir %attr(0755, root, root) %{_localstatedir}/lib/libvirt/
1985

1986 1987 1988 1989
%if %{with_sasl}
%config(noreplace) %{_sysconfdir}/sasl2/libvirt.conf
%endif

1990 1991
%if %{with_wireshark}
%files wireshark
1992
%{_libdir}/wireshark/plugins/libvirt.so
1993 1994
%endif

1995 1996 1997 1998 1999
%if %{with_nss_plugin}
%files nss
%{_libdir}/libnss_libvirt.so.2
%endif

2000 2001
%if %{with_lxc}
%files login-shell
2002
%attr(4750, root, virtlogin) %{_bindir}/virt-login-shell
2003 2004 2005 2006
%config(noreplace) %{_sysconfdir}/libvirt/virt-login-shell.conf
%{_mandir}/man1/virt-login-shell.1*
%endif

2007 2008 2009
%files devel
%defattr(-, root, root)

2010 2011 2012
%{_libdir}/libvirt.so
%{_libdir}/libvirt-qemu.so
%{_libdir}/libvirt-lxc.so
2013
%dir %{_includedir}/libvirt
2014 2015
%{_includedir}/libvirt/virterror.h
%{_includedir}/libvirt/libvirt.h
2016
%{_includedir}/libvirt/libvirt-common.h
2017
%{_includedir}/libvirt/libvirt-domain.h
2018
%{_includedir}/libvirt/libvirt-domain-snapshot.h
2019
%{_includedir}/libvirt/libvirt-event.h
2020
%{_includedir}/libvirt/libvirt-host.h
2021
%{_includedir}/libvirt/libvirt-interface.h
2022
%{_includedir}/libvirt/libvirt-network.h
2023
%{_includedir}/libvirt/libvirt-nodedev.h
2024
%{_includedir}/libvirt/libvirt-nwfilter.h
2025
%{_includedir}/libvirt/libvirt-secret.h
2026
%{_includedir}/libvirt/libvirt-storage.h
2027
%{_includedir}/libvirt/libvirt-stream.h
2028 2029
%{_includedir}/libvirt/libvirt-qemu.h
%{_includedir}/libvirt/libvirt-lxc.h
2030
%{_libdir}/pkgconfig/libvirt.pc
2031 2032
%{_libdir}/pkgconfig/libvirt-qemu.pc
%{_libdir}/pkgconfig/libvirt-lxc.pc
2033

2034 2035 2036
%dir %{_datadir}/libvirt/api/
%{_datadir}/libvirt/api/libvirt-api.xml
%{_datadir}/libvirt/api/libvirt-qemu-api.xml
2037
%{_datadir}/libvirt/api/libvirt-lxc-api.xml
2038
# Needed building python bindings
2039
%doc docs/libvirt-api.xml
2040

2041

2042
%changelog
D
Daniel Veillard 已提交
2043 2044 2045 2046 2047
* Sun May  1 2016 Daniel Veillard <veillard@redhat.com> - 1.3.4-1
- Lot of work on documentation
- Add support for migration data compression
- many bug fixes and various improvements

D
Daniel Veillard 已提交
2048 2049 2050 2051 2052 2053
* Wed Apr  6 2016 Daniel Veillard <veillard@redhat.com> - 1.3.3-1
- perf events
- post-copy migration support
- NSS module
- a lot of various improvements, and large number of bugs fixes

D
Daniel Veillard 已提交
2054 2055 2056 2057 2058 2059
* Tue Mar  1 2016 Daniel Veillard <veillard@redhat.com> - 1.3.2-1
- Various improvements for the Xen libxl driver
- virt-admin improvement
- Various improvements for the RDB volumes
- many bug fixes and improvements

D
Daniel Veillard 已提交
2060 2061 2062 2063 2064 2065
* Sun Jan 17 2016 Daniel Veillard <veillard@redhat.com> - 1.3.1-1
- Various improvements for the Xen libxl driver
- rbd: Add support for wiping and cloning images to storage driver
- PCI hostdev improvements and fixes
- many bug fixes and improvements

D
Daniel Veillard 已提交
2066 2067 2068 2069 2070 2071
* Wed Dec  9 2015 Daniel Veillard <veillard@redhat.com> - 1.3.0-1
- virt-admin and administration API
- various improvements in virtio devices support
- log daemon, logging improvements and protocol
- many bug fixes and improvements

D
Daniel Veillard 已提交
2072 2073 2074
* Wed Nov  4 2015 Daniel Veillard <veillard@redhat.com> - 1.2.21-1
- a number of improvements and bug fixes

D
Daniel Veillard 已提交
2075 2076 2077 2078
* Fri Oct  2 2015 Daniel Veillard <veillard@redhat.com> - 1.2.20-1
- security fixes for CVE-2015-5247
- a number of improvements and bug fixes

D
Daniel Veillard 已提交
2079 2080 2081 2082 2083 2084
* Wed Sep  2 2015 Daniel Veillard <veillard@redhat.com> - 1.2.19-1
- Big improvements on ppc64 support
- New virDomainRename API
- Support for QEMU new pci emulations
- a number of improvements and bug fixes

D
Daniel Veillard 已提交
2085
* Mon Aug  3 2015 Daniel Veillard <veillard@redhat.com> - 1.2.18-1
2086
- libxl: support dom0
D
Daniel Veillard 已提交
2087 2088
- a number of improvements and bug fixes

D
Daniel Veillard 已提交
2089 2090 2091 2092 2093 2094
* Thu Jul  2 2015 Daniel Veillard <veillard@redhat.com> - 1.2.17-1
- numerous improvements and refactoring of the parallels driver
- hardening of vcpu code
- hardening of migration code
- a lot of improvement and bug fixes

D
Daniel Veillard 已提交
2095 2096 2097 2098 2099 2100 2101
* Mon Jun  1 2015 Daniel Veillard <veillard@redhat.com> - 1.2.16-1
- Introduce pci-serial
- Introduce virDomainSetUserPassword API
- libvirt: Introduce protected key mgmt ops
- add domain vmport feature
- various bug fixes and improvements

D
Daniel Veillard 已提交
2102 2103 2104 2105 2106 2107 2108
* Mon May  4 2015 Daniel Veillard <veillard@redhat.com> - 1.2.15-1
- Implement virDomainAddIOThread and virDomainDelIOThread
- libxl: Introduce configuration file for libxl driver
- Add VIR_DOMAIN_EVENT_ID_DEVICE_ADDED event
- various improvements to parallels driver
- a lot of improvement and bug fixes

D
Daniel Veillard 已提交
2109 2110 2111 2112 2113 2114 2115
* Thu Apr  2 2015 Daniel Veillard <veillard@redhat.com> - 1.2.14-1
- qemu: Implement memory device hotplug
- Implement public API for virDomainPinIOThread
- Implement public API for virDomainGetIOThreadsInfo
- SRIOV NIC offload feature discovery
- a lot of improvement and bug fixes

D
Daniel Veillard 已提交
2116 2117 2118 2119
* Mon Mar  2 2015 Daniel Veillard <veillard@redhat.com> - 1.2.13-1
- lot of improvements around NUMA code
- a lot of improvement and bug fixes

D
Daniel Veillard 已提交
2120 2121 2122 2123 2124
* Tue Jan 27 2015 Daniel Veillard <veillard@redhat.com> - 1.2.12-1
- CVE-2015-0236: qemu: Check ACLs when dumping security info from snapshots
- CVE-2015-0236: qemu: Check ACLs when dumping security info from save image
- a lot of improvement and bug fixes

D
Daniel Veillard 已提交
2125 2126 2127 2128 2129 2130 2131
* Sat Dec 13 2014 Daniel Veillard <veillard@redhat.com> - 1.2.11-1
- CVE-2014-8131: Fix possible deadlock and segfault in qemuConnectGetAllDomainStats()
- CVE-2014-7823: dumpxml: security hole with migratable flag
- Implement public API for virDomainGetFSInfo
- Add define support for the new throttle options
- a number of improvements and bug fixes

D
Daniel Veillard 已提交
2132 2133 2134 2135 2136 2137
* Mon Nov  3 2014 Daniel Veillard <veillard@redhat.com> - 1.2.10-1
- vbox: various drivers improvements
- libxl: various drivers improvements
- Internal driver refactoring
- a number of improvements and bug fixes

D
Daniel Veillard 已提交
2138 2139 2140 2141 2142 2143 2144 2145 2146
* Wed Oct  1 2014 Daniel Veillard <veillard@redhat.com> - 1.2.9-1
- CVE-2014-3657: domain_conf: fix domain deadlock
- CVE-2014-3633: qemu: blkiotune: Use correct definition when looking up disk
- Introduce virNodeAllocPages
- event: introduce new event for tunable values
- add migration support for OpenVZ driver
- Add support for fetching statistics of completed jobs
- many improvements and bug fixes

D
Daniel Veillard 已提交
2147 2148 2149 2150 2151 2152 2153
* Tue Sep  2 2014 Daniel Veillard <veillard@redhat.com> - 1.2.8-1
- blockcopy: virDomainBlockCopy with XML destination, typed params
- Introduce API for retrieving bulk domain stats
- Introduce virDomainOpenGraphicsFD API
- storage: ZFS support
- many improvements and bug fixes

D
Daniel Veillard 已提交
2154 2155 2156 2157
* Sun Aug  3 2014 Daniel Veillard <veillard@redhat.com> - 1.2.7-1
- Introduce virConnectGetDomainCapabilities
- many improvements and bug fixes

D
Daniel Veillard 已提交
2158 2159 2160 2161 2162
* Wed Jul  2 2014 Daniel Veillard <veillard@redhat.com> - 1.2.6-1
- libxl: add migration support and fixes
- various improvements and fixes for NUMA
- many improvements and bug fixes

2163 2164 2165 2166 2167 2168
* Mon Jun  2 2014 Daniel Veillard <veillard@redhat.com> - 1.2.5-1
- LSN-2014-0003: Don't expand entities when parsing XML (security)
- Introduce virDomain{Get,Set}Time APIs
- Introduce virDomainFSFreeze() and virDomainFSThaw() public API
- various improvements and bug fixes

D
Daniel Veillard 已提交
2169 2170 2171 2172
* Sun May  4 2014 Daniel Veillard <veillard@redhat.com> - 1.2.4-1
- various improvements and bug fixes
- lot of internal code refactoring

D
Daniel Veillard 已提交
2173
* Tue Apr  1 2014 Daniel Veillard <veillard@redhat.com> - 1.2.3-1
D
Daniel Veillard 已提交
2174 2175 2176 2177
- add new virDomainCoreDumpWithFormat API
- conf: Introduce virDomainDeviceGetInfo API
- more features and fixes on bhyve driver
- lot of cleanups and improvement on the Xen driver
D
Daniel Veillard 已提交
2178 2179
- a lot of various improvements and bug fixes

D
Daniel Veillard 已提交
2180 2181 2182 2183 2184 2185 2186
* Sun Mar  2 2014 Daniel Veillard <veillard@redhat.com> - 1.2.2-1
- add LXC from native conversion tool
- vbox: add support for v4.2.20+ and v4.3.4+
- Introduce Libvirt Wireshark dissector
- Fix CVE-2013-6456: Avoid unsafe use of /proc/$PID/root in LXC
- a lot of various improvements and bug fixes

D
Daniel Veillard 已提交
2187 2188 2189 2190 2191 2192 2193 2194
* Thu Jan 16 2014 Daniel Veillard <veillard@redhat.com> - 1.2.1-1
- Fix s CVE-2014-0028 event: filter global events by domain:getattr ACL
- Fix CVE-2014-1447 Don't crash if a connection closes early
- Fix CVE-2013-6458-1 qemu: Do not access stale data in virDomainBlockStats
- Fix CVE-2013-6457 libxl: avoid crashing if calling `virsh numatune' on inactive domain
- Fix CVE-2013-6436: fix crash in lxcDomainGetMemoryParameters
- many doc and bug fixes and improvements

D
Daniel Veillard 已提交
2195 2196 2197 2198 2199 2200
* Mon Dec  2 2013 Daniel Veillard <veillard@redhat.com> - 1.2.0-1
- Separation of python binding as libvirt-python srpm
- Add support for gluster pool
- vbox: add support for 4.3 APIs
- a number of doc, bug fixes and various improvements

D
Daniel Veillard 已提交
2201 2202 2203 2204 2205 2206
* Mon Nov  4 2013 Daniel Veillard <veillard@redhat.com> - 1.1.4-1
- Add support for AArch64 architecture
- Various improvements on test code and test driver
- 4 security bug fixes
- a lot of bug fixes and various improvements

D
Daniel Veillard 已提交
2207 2208 2209 2210 2211 2212 2213 2214 2215
* Tue Oct  1 2013 Daniel Veillard <veillard@redhat.com> - 1.1.3-1
- VMware: Initial VMware Fusion support and various improvements
- libvirt: add new public API virConnectGetCPUModelNames
- various libxl driver improvements
- LXC many container driver improvement
- ARM cpu improvements
- 3 security bug fixes
- a lot of bug and leak fixes and various improvements

D
Daniel Veillard 已提交
2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231
* Mon Sep  2 2013 Daniel Veillard <veillard@redhat.com> - 1.1.2-1
- various improvements to libxl driver
- systemd integration improvements
- Add flag to BaselineCPU API to return detailed CPU features
- Introduce a virt-login-shell binary
- conf: add startupPolicy attribute for harddisk
- various bug fixes and improvements including localizations

* Tue Jul 30 2013 Daniel Veillard <veillard@redhat.com> - 1.1.1-1
- Adding device removal or deletion events
- Introduce new domain create APIs to pass pre-opened FDs to LXC
- Add interface versions for Xen 4.3
- Add new public API virDomainSetMemoryStatsPeriod
- Various LXC improvements
- various bug fixes and improvements including localizations

D
Daniel Veillard 已提交
2232 2233 2234 2235 2236 2237 2238 2239
* Mon Jul  1 2013 Daniel Veillard <veillard@redhat.com> - 1.1.0-1
- CVE-2013-2218: Fix crash listing network interfaces with filters
- Fine grained ACL support for the API
- Extensible migration APIs
- various improvements in the Xen driver
- agent based vCPU hotplug support
- various bug fixes and improvements including localizations

D
Daniel Veillard 已提交
2240 2241 2242 2243 2244 2245 2246 2247
* Mon Jun  3 2013 Daniel Veillard <veillard@redhat.com> - 1.0.6-1
- Move VirtualBox driver into libvirtd
- Support for static routes on a virtual bridge
- Various improvement for hostdev SCSI support
- Switch to VIR_STRDUP and VIR_STRNDUP
- Various cleanups and improvement in Xen and LXC drivers
- various bug fixes and improvements including localizations

D
Daniel Veillard 已提交
2248 2249 2250 2251 2252 2253 2254
* Thu May  2 2013 Daniel Veillard <veillard@redhat.com> - 1.0.5-1
- add support for NVRAM device
- Add XML config for resource partitions
- Add support for TPM
- NPIV storage migration support
- various bug fixes and improvements including localizations

D
Daniel Veillard 已提交
2255 2256 2257 2258 2259 2260 2261
* Mon Apr  1 2013 Daniel Veillard <veillard@redhat.com> - 1.0.4-1
- qemu: support passthrough for iscsi disks
- various S390 improvements
- various LXC bugs fixes and improvements
- Add API for thread cancellation
- various bug fixes and improvements

D
Daniel Veillard 已提交
2262 2263 2264 2265 2266 2267 2268 2269
* Tue Mar  5 2013 Daniel Veillard <veillard@redhat.com> - 1.0.3-1
- Introduce virDomainMigrate*CompressionCache APIs
- Introduce virDomainGetJobStats API
- Add basic support for VDI images
- Introduce API virNodeDeviceLookupSCSIHostByWWN
- Various locking improvements
- a lot of bug fixes and overall improvements

D
Daniel Veillard 已提交
2270 2271 2272 2273 2274 2275 2276 2277
* Wed Jan 30 2013 Daniel Veillard <veillard@redhat.com> - 1.0.2-1
- LXC improvements
- S390 architecture improvement
- Power architecture improvement
- large Coverity report cleanups and associated bug fixes
- virTypedParams* APIs to helps with those data structures
- a lot of bug fixes and overall improvements

D
Daniel Veillard 已提交
2278 2279 2280 2281 2282 2283 2284 2285 2286 2287
* Fri Nov  2 2012 Daniel Veillard <veillard@redhat.com> - 1.0.0-1
- virNodeGetCPUMap: Define public API
- Add systemd journal support
- Add a qemu capabilities cache manager
- USB migration support
- various improvement and fixes when using QMP QEmu interface
- Support for Xen 4.2
- Lot of localization enhancements
- a lot of bug fixes, improvements and portability work

D
Daniel Veillard 已提交
2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305
* Mon Sep 24 2012 Daniel Veillard <veillard@redhat.com> - 0.10.2-1
- network: define new API virNetworkUpdate
- add support for QEmu sandbox support
- blockjob: add virDomainBlockCommit
- New APIs to get/set Node memory parameters
- new API virConnectListAllSecrets
- new API virConnectListAllNWFilters
- new API virConnectListAllNodeDevices
- parallels: add support of containers to the driver
- new API virConnectListAllInterfaces
- new API virConnectListAllNetworks
- new API virStoragePoolListAllVolumes
- Add PMSUSPENDED life cycle event
- new API virStorageListAllStoragePools
- Add per-guest S3/S4 state configuration
- qemu: Support for Block Device IO Limits
- a lot of bug fixes, improvements and portability work

D
Daniel Veillard 已提交
2306 2307 2308
* Fri Aug 31 2012 Daniel Veillard <veillard@redhat.com> - 0.10.1-1
- bugfixes and a brown paper bag

D
Daniel Veillard 已提交
2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319
* Wed Aug 29 2012 Daniel Veillard <veillard@redhat.com> - 0.10.0-1
- agent: add qemuAgentArbitraryCommand() for general qemu agent command
- Introduce virDomainPinEmulator and virDomainGetEmulatorPinInfo functions
- network: use firewalld instead of iptables, when available
- network: make network driver vlan-aware
- esx: Implement network driver
- driver for parallels hypervisor
- Various LXC improvements
- Add virDomainGetHostname
- a lot of bug fixes, improvements and portability work

D
Daniel Veillard 已提交
2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331
* Mon Jul  2 2012 Daniel Veillard <veillard@redhat.com> - 0.9.13-1
- S390: support for s390(x)
- snapshot: implement new APIs for esx and vbox
- snapshot: new query APIs and many improvements
- virsh: Allow users to reedit rejected XML
- nwfilter: add DHCP snooping
- Enable driver modules in libvirt RPM
- Default to enable driver modules for libvirtd
- storage backend: Add RBD (RADOS Block Device) support
- sVirt support for LXC domains inprovement
- a lot of bug fixes, improvements and portability work

D
Daniel Veillard 已提交
2332 2333 2334 2335 2336
* Mon May 14 2012 Daniel Veillard <veillard@redhat.com> - 0.9.12-1
- qemu: allow snapshotting of sheepdog and rbd disks
- blockjob: add new APIs
- a lot of bug fixes, improvements and portability work

D
Daniel Veillard 已提交
2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347
* Tue Apr  3 2012 Daniel Veillard <veillard@redhat.com> - 0.9.11-1
- Add support for the suspend event
- Add support for event tray moved of removable disks
- qemu: Support numad
- cpustats: API, improvements and qemu support
- qemu: support type='hostdev' network devices at domain start
- Introduce virDomainPMWakeup API
- network: support Open vSwitch
- a number of snapshot improvements
- many improvements and bug fixes

D
Daniel Veillard 已提交
2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361
* Mon Feb 13 2012 Daniel Veillard <veillard@redhat.com> - 0.9.10-1
- Add support for sVirt in the LXC driver
- block rebase: add new API virDomainBlockRebase
- API: Add api to set and get domain metadata
- virDomainGetDiskErrors public API
- conf: add rawio attribute to disk element of domain XML
- Add new public API virDomainGetCPUStats()
- Introduce virDomainPMSuspendForDuration API
- resize: add virStorageVolResize() API
- Add a virt-host-validate command to sanity check HV config
- Add new virDomainShutdownFlags API
- QEMU guest agent support
- many improvements and bug fixes

D
Daniel Veillard 已提交
2362 2363 2364 2365 2366 2367 2368
* Sat Jan  7 2012 Daniel Veillard <veillard@redhat.com> - 0.9.9-1
- Add API virDomain{S,G}etInterfaceParameters
- Add API virDomain{G, S}etNumaParameters
- Add support for ppc64 qemu
- Support Xen domctl v8
- many improvements and bug fixes

D
Daniel Veillard 已提交
2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379
* Thu Dec  8 2011 Daniel Veillard <veillard@redhat.com> - 0.9.8-1
- Add support for QEMU 1.0
- Add preliminary PPC cpu driver
- Add new API virDomain{Set, Get}BlockIoTune
- block_resize: Define the new API
- Add a public API to invoke suspend/resume on the host
- various improvements for LXC containers
- Define keepalive protocol and add virConnectIsAlive API
- Add support for STP and VLAN filtering
- many improvements and bug fixes

D
Daniel Veillard 已提交
2380 2381 2382 2383 2384 2385 2386 2387 2388
* Tue Nov  8 2011 Daniel Veillard <veillard@redhat.com> - 0.9.7-1
- esx: support vSphere 5.x
- vbox: support for VirtualBox 4.1
- Introduce the virDomainOpenGraphics API
- Add AHCI support to qemu driver
- snapshot: many improvements and 2 new APIs
- api: Add public api for 'reset'
- many improvements and bug fixes

D
Daniel Veillard 已提交
2389 2390 2391
* Thu Sep 22 2011 Daniel Veillard <veillard@redhat.com> - 0.9.6-1
- Fix the qemu reboot bug and a few others bug fixes

D
Daniel Veillard 已提交
2392 2393 2394 2395 2396 2397 2398 2399 2400
* Tue Sep 20 2011 Daniel Veillard <veillard@redhat.com> - 0.9.5-1
- many snapshot improvements (Eric Blake)
- latency: Define new public API and structure (Osier Yang)
- USB2 and various USB improvements (Marc-André Lureau)
- storage: Add fs pool formatting (Osier Yang)
- Add public API for getting migration speed (Jim Fehlig)
- Add basic driver for Microsoft Hyper-V (Matthias Bolte)
- many improvements and bug fixes

D
Daniel Veillard 已提交
2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412
* Wed Aug  3 2011 Daniel Veillard <veillard@redhat.com> - 0.9.4-1
- network bandwidth QoS control
- Add new API virDomainBlockPull*
- save: new API to manipulate save file images
- CPU bandwidth limits support
- allow to send NMI and key event to guests
- new API virDomainUndefineFlags
- Implement code to attach to external QEMU instances
- bios: Add support for SGA
- various missing python binding
- many improvements and bug fixes

D
Daniel Veillard 已提交
2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425
* Mon Jul  4 2011 Daniel Veillard <veillard@redhat.com> - 0.9.3-1
- new API virDomainGetVcpupinInfo
- Add TXT record support for virtual DNS service
- Support reboots with the QEMU driver
- New API virDomainGetControlInfo API
- New API virNodeGetMemoryStats
- New API virNodeGetCPUTime
- New API for send-key
- New API virDomainPinVcpuFlags
- support multifunction PCI device
- lxc: various improvements
- many improvements and bug fixes

D
Daniel Veillard 已提交
2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436
* Mon Jun  6 2011 Daniel Veillard <veillard@redhat.com> - 0.9.2-1
- Framework for lock manager plugins
- API for network config change transactions
- flags for setting memory parameters
- virDomainGetState public API
- qemu: allow blkstat/blkinfo calls during migration
- Introduce migration v3 API
- Defining the Screenshot public API
- public API for NMI injection
- Various improvements and bug fixes

D
Daniel Veillard 已提交
2437 2438 2439 2440 2441 2442 2443 2444
* Thu May  5 2011 Daniel Veillard <veillard@redhat.com> - 0.9.1-1
- support various persistent domain updates
- improvements on memory APIs
- Add virDomainEventRebootNew
- various improvements to libxl driver
- Spice: support audio, images and stream compression
- Various improvements and bug fixes

D
Daniel Veillard 已提交
2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457
* Mon Apr  4 2011 Daniel Veillard <veillard@redhat.com> - 0.9.0-1
- Support cputune cpu usage tuning
- Add public APIs for storage volume upload/download
- Add public API for setting migration speed on the fly
- Add libxenlight driver
- qemu: support migration to fd
- libvirt: add virDomain{Get,Set}BlkioParameters
- setmem: introduce a new libvirt API (virDomainSetMemoryFlags)
- Expose event loop implementation as a public API
- Dump the debug buffer to libvirtd.log on fatal signal
- Audit support
- Various improvements and bug fixes

D
Daniel Veillard 已提交
2458 2459 2460 2461 2462 2463 2464
* Thu Feb 17 2011 Daniel Veillard <veillard@redhat.com> - 0.8.8-1
- expose new API for sysinfo extraction
- cgroup blkio weight support
- smartcard device support
- qemu: Support per-device boot ordering
- Various improvements and bug fixes

D
Daniel Veillard 已提交
2465 2466 2467 2468 2469 2470 2471
* Tue Jan  4 2011 Daniel Veillard <veillard@redhat.com> - 0.8.7-1
- Preliminary support for VirtualBox 4.0
- IPv6 support
- Add VMware Workstation and Player driver driver
- Add network disk support
- Various improvements and bug fixes

D
Daniel Veillard 已提交
2472 2473 2474 2475 2476 2477 2478 2479 2480
* Tue Nov 30 2010 Daniel Veillard <veillard@redhat.com> - 0.8.6-1
- Add support for iSCSI target auto-discovery
- QED: Basic support for QED images
- remote console support
- support for SPICE graphics
- sysinfo and VMBIOS support
- virsh qemu-monitor-command
- various improvements and bug fixes

D
Daniel Veillard 已提交
2481 2482 2483 2484 2485 2486 2487 2488 2489 2490
* Fri Oct 29 2010 Daniel Veillard <veillard@redhat.com> - 0.8.5-1
- Enable JSON and netdev features in QEMU >= 0.13
- framework for auditing integration
- framework DTrace/SystemTap integration
- Setting the number of vcpu at boot
- Enable support for nested SVM
- Virtio plan9fs filesystem QEMU
- Memory parameter controls
- various improvements and bug fixes

D
Daniel Veillard 已提交
2491 2492 2493 2494
* Fri Sep 10 2010 Daniel Veillard <veillard@redhat.com> - 0.8.4-1
- big improvements to UML driver
- various improvements and bug fixes

D
Daniel Veillard 已提交
2495
* Wed Aug  4 2010 Daniel Veillard <veillard@redhat.com> - 0.8.3-1
D
Daniel Veillard 已提交
2496 2497 2498 2499 2500
- esx: Support vSphere 4.1
- Qemu arbitrary monitor commands
- Qemu Monitor API entry point
- various improvements and bug fixes

D
Daniel Veillard 已提交
2501 2502 2503 2504 2505 2506 2507 2508
* Mon Jul  5 2010 Daniel Veillard <veillard@redhat.com> - 0.8.2-1
- phyp: adding support for IVM
- libvirt: introduce domainCreateWithFlags API
- add 802.1Qbh and 802.1Qbg switches handling
- Support for VirtualBox version 3.2
- Init script for handling guests on shutdown/boot
- qemu: live migration with non-shared storage for kvm

D
Daniel Veillard 已提交
2509 2510 2511 2512 2513
* Fri Apr 30 2010 Daniel Veillard <veillard@redhat.com> - 0.8.1-1
- Starts dnsmasq from libvirtd with --dhcp-hostsfile
- Add virDomainGetBlockInfo API to query disk sizing
- a lot of bug fixes and cleanups

D
Daniel Veillard 已提交
2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527
* Mon Apr 12 2010 Daniel Veillard <veillard@redhat.com> - 0.8.0-1
- Snapshotting support (QEmu/VBox/ESX)
- Network filtering API
- XenAPI driver
- new APIs for domain events
- Libvirt managed save API
- timer subselection for domain clock
- synchronous hooks
- API to update guest CPU to host CPU
- virDomainUpdateDeviceFlags new API
- migrate max downtime API
- volume wiping API
- and many bug fixes

D
Daniel Veillard 已提交
2528 2529 2530 2531 2532 2533 2534 2535
* Fri Mar  5 2010 Daniel Veillard <veillard@redhat.com> - 0.7.7-1
- macvtap support
- async job handling
- virtio channel
- computing baseline CPU
- virDomain{Attach,Detach}DeviceFlags
- assorted bug fixes and lots of cleanups

D
Daniel Veillard 已提交
2536 2537
* Wed Feb  3 2010 Daniel Veillard <veillard@redhat.com> - 0.7.6-1

D
Daniel Veillard 已提交
2538 2539 2540 2541 2542 2543 2544
* Wed Dec 23 2009 Daniel Veillard <veillard@redhat.com> - 0.7.5-1
- Add new API virDomainMemoryStats
- Public API and domain extension for CPU flags
- vbox: Add support for version 3.1
- Support QEMU's virtual FAT block device driver
- a lot of fixes

D
Daniel Veillard 已提交
2545 2546 2547 2548 2549 2550 2551 2552
* Fri Nov 20 2009 Daniel Veillard <veillard@redhat.com> - 0.7.3-1
- udev node device backend
- API to check object properties
- better QEmu monitor processing
- MAC address based port filtering for qemu
- support IPv6 and multiple addresses per interfaces
- a lot of fixes

D
Daniel Veillard 已提交
2553 2554 2555 2556 2557 2558 2559 2560 2561
* Tue Sep 15 2009 Daniel Veillard <veillard@redhat.com> - 0.7.1-1
- ESX, VBox driver updates
- mutipath support
- support for encrypted (qcow) volume
- compressed save image format for Qemu/KVM
- QEmu host PCI device hotplug support
- configuration of huge pages in guests
- a lot of fixes

D
Daniel Veillard 已提交
2562 2563 2564 2565 2566 2567 2568 2569 2570
* Wed Aug  5 2009 Daniel Veillard <veillard@redhat.com> - 0.7.0-1
- ESX, VBox3, Power Hypervisor drivers
- new net filesystem glusterfs
- Storage cloning for LVM and Disk backends
- interface implementation based on netcf
- Support cgroups in QEMU driver
- QEmu hotplug NIC support
- a lot of fixes

D
Daniel Veillard 已提交
2571 2572 2573
* Fri Jul  3 2009 Daniel Veillard <veillard@redhat.com> - 0.6.5-1
- release of 0.6.5

D
Daniel Veillard 已提交
2574 2575 2576 2577
* Fri May 29 2009 Daniel Veillard <veillard@redhat.com> - 0.6.4-1
- release of 0.6.4
- various new APIs

D
Daniel Veillard 已提交
2578 2579 2580 2581
* Fri Apr 24 2009 Daniel Veillard <veillard@redhat.com> - 0.6.3-1
- release of 0.6.3
- VirtualBox driver

D
Daniel Veillard 已提交
2582 2583 2584
* Fri Apr  3 2009 Daniel Veillard <veillard@redhat.com> - 0.6.2-1
- release of 0.6.2

J
Jiri Denemark 已提交
2585
* Wed Mar  4 2009 Daniel Veillard <veillard@redhat.com> - 0.6.1-1
D
Daniel Veillard 已提交
2586 2587 2588 2589 2590
- release of 0.6.1

* Sat Jan 31 2009 Daniel Veillard <veillard@redhat.com> - 0.6.0-1
- release of 0.6.0

D
Daniel Veillard 已提交
2591 2592 2593
* Tue Nov 25 2008 Daniel Veillard <veillard@redhat.com> - 0.5.0-1
- release of 0.5.0

2594 2595 2596
* Tue Sep 23 2008 Daniel Veillard <veillard@redhat.com> - 0.4.6-1
- release of 0.4.6

2597 2598 2599 2600 2601 2602 2603
* Mon Sep  8 2008 Daniel Veillard <veillard@redhat.com> - 0.4.5-1
- release of 0.4.5

* Wed Jun 25 2008 Daniel Veillard <veillard@redhat.com> - 0.4.4-1
- release of 0.4.4
- mostly a few bug fixes from 0.4.3

2604 2605 2606 2607
* Thu Jun 12 2008 Daniel Veillard <veillard@redhat.com> - 0.4.3-1
- release of 0.4.3
- lots of bug fixes and small improvements

D
Daniel Veillard 已提交
2608 2609 2610 2611
* Tue Apr  8 2008 Daniel Veillard <veillard@redhat.com> - 0.4.2-1
- release of 0.4.2
- lots of bug fixes and small improvements

D
Daniel Veillard 已提交
2612 2613 2614 2615 2616 2617 2618
* Mon Mar  3 2008 Daniel Veillard <veillard@redhat.com> - 0.4.1-1
- Release of 0.4.1
- Storage APIs
- xenner support
- lots of assorted improvements, bugfixes and cleanups
- documentation and localization improvements

D
Daniel Veillard 已提交
2619 2620 2621 2622 2623 2624 2625 2626
* Tue Dec 18 2007 Daniel Veillard <veillard@redhat.com> - 0.4.0-1
- Release of 0.4.0
- SASL based authentication
- PolicyKit authentication
- improved NUMA and statistics support
- lots of assorted improvements, bugfixes and cleanups
- documentation and localization improvements

2627 2628 2629 2630 2631 2632 2633
* Sun Sep 30 2007 Daniel Veillard <veillard@redhat.com> - 0.3.3-1
- Release of 0.3.3
- Avahi support
- NUMA support
- lots of assorted improvements, bugfixes and cleanups
- documentation and localization improvements

D
Daniel Veillard 已提交
2634 2635 2636 2637 2638 2639 2640
* Tue Aug 21 2007 Daniel Veillard <veillard@redhat.com> - 0.3.2-1
- Release of 0.3.2
- API for domains migration
- APIs for collecting statistics on disks and interfaces
- lots of assorted bugfixes and cleanups
- documentation and localization improvements

2641 2642 2643 2644 2645 2646 2647
* Tue Jul 24 2007 Daniel Veillard <veillard@redhat.com> - 0.3.1-1
- Release of 0.3.1
- localtime clock support
- PS/2 and USB input devices
- lots of assorted bugfixes and cleanups
- documentation and localization improvements

2648 2649 2650 2651 2652 2653 2654 2655
* Mon Jul  9 2007 Daniel Veillard <veillard@redhat.com> - 0.3.0-1
- Release of 0.3.0
- Secure remote access support
- unification of daemons
- lots of assorted bugfixes and cleanups
- documentation and localization improvements

* Fri Jun  8 2007 Daniel Veillard <veillard@redhat.com> - 0.2.3-1
2656 2657 2658 2659 2660
- Release of 0.2.3
- lot of assorted bugfixes and cleanups
- support for Xen-3.1
- new scheduler API

2661 2662 2663 2664 2665
* Tue Apr 17 2007 Daniel Veillard <veillard@redhat.com> - 0.2.2-1
- Release of 0.2.2
- lot of assorted bugfixes and cleanups
- preparing for Xen-3.0.5

2666 2667 2668 2669 2670
* Thu Mar 22 2007 Jeremy Katz <katzj@redhat.com> - 0.2.1-2.fc7
- don't require xen; we don't need the daemon and can control non-xen now
- fix scriptlet error (need to own more directories)
- update description text

2671
* Fri Mar 16 2007 Daniel Veillard <veillard@redhat.com> - 0.2.1-1
2672 2673 2674 2675 2676 2677
- Release of 0.2.1
- lot of bug and portability fixes
- Add support for network autostart and init scripts
- New API to detect the virtualization capabilities of a host
- Documentation updates

2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690
* Fri Feb 23 2007 Daniel P. Berrange <berrange@redhat.com> - 0.2.0-4.fc7
- Fix loading of guest & network configs

* Fri Feb 16 2007 Daniel P. Berrange <berrange@redhat.com> - 0.2.0-3.fc7
- Disable kqemu support since its not in Fedora qemu binary
- Fix for -vnc arg syntax change in 0.9.0  QEMU

* Thu Feb 15 2007 Daniel P. Berrange <berrange@redhat.com> - 0.2.0-2.fc7
- Fixed path to qemu daemon for autostart
- Fixed generation of <features> block in XML
- Pre-create config directory at startup

* Wed Feb 14 2007 Daniel Veillard <veillard@redhat.com> 0.2.0-1.fc7
2691 2692 2693 2694
- support for KVM and QEmu
- support for network configuration
- assorted fixes

2695
* Mon Jan 22 2007 Daniel Veillard <veillard@redhat.com> 0.1.11-1.fc7
2696 2697 2698 2699
- finish inactive Xen domains support
- memory leak fix
- RelaxNG schemas for XML configs

2700
* Wed Dec 20 2006 Daniel Veillard <veillard@redhat.com> 0.1.10-1.fc7
2701 2702 2703 2704 2705
- support for inactive Xen domains
- improved support for Xen display and vnc
- a few bug fixes
- localization updates

2706 2707 2708
* Thu Dec  7 2006 Jeremy Katz <katzj@redhat.com> - 0.1.9-2
- rebuild against python 2.5

2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719
* Wed Nov 29 2006 Daniel Veillard <veillard@redhat.com> 0.1.9-1
- better error reporting
- python bindings fixes and extensions
- add support for shareable drives
- add support for non-bridge style networking
- hot plug device support
- added support for inactive domains
- API to dump core of domains
- various bug fixes, cleanups and improvements
- updated the localization

2720 2721 2722 2723
* Tue Nov  7 2006 Daniel Veillard <veillard@redhat.com> 0.1.8-3
- it's pkgconfig not pgkconfig !

* Mon Nov  6 2006 Daniel Veillard <veillard@redhat.com> 0.1.8-2
J
Jiri Denemark 已提交
2724
- fixing spec file, added %%dist, -devel requires pkgconfig and xen-devel
2725 2726
- Resolves: rhbz#202320

2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738
* Mon Oct 16 2006 Daniel Veillard <veillard@redhat.com> 0.1.8-1
- fix missing page size detection code for ia64
- fix mlock size when getting domain info list from hypervisor
- vcpu number initialization
- don't label crashed domains as shut off
- fix virsh man page
- blktapdd support for alternate drivers like blktap
- memory leak fixes (xend interface and XML parsing)
- compile fix
- mlock/munlock size fixes

* Fri Sep 22 2006 Daniel Veillard <veillard@redhat.com> 0.1.7-1
2739 2740 2741
- Fix bug when running against xen-3.0.3 hypercalls
- Fix memory bug when getting vcpus info from xend

2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754
* Fri Sep 22 2006 Daniel Veillard <veillard@redhat.com> 0.1.6-1
- Support for localization
- Support for new Xen-3.0.3 cdrom and disk configuration
- Support for setting VNC port
- Fix bug when running against xen-3.0.2 hypercalls
- Fix reconnection problem when talking directly to http xend

* Tue Sep  5 2006 Jeremy Katz <katzj@redhat.com> - 0.1.5-3
- patch from danpb to support new-format cd devices for HVM guests

* Tue Sep  5 2006 Daniel Veillard <veillard@redhat.com> 0.1.5-2
- reactivating ia64 support

2755 2756 2757 2758 2759 2760 2761 2762 2763 2764
* Tue Sep  5 2006 Daniel Veillard <veillard@redhat.com> 0.1.5-1
- new release
- bug fixes
- support for new hypervisor calls
- early code for config files and defined domains

* Mon Sep  4 2006 Daniel Berrange <berrange@redhat.com> - 0.1.4-5
- add patch to address dom0_ops API breakage in Xen 3.0.3 tree

* Mon Aug 28 2006 Jeremy Katz <katzj@redhat.com> - 0.1.4-4
2765
- add patch to support paravirt framebuffer in Xen
2766 2767 2768 2769 2770 2771 2772

* Mon Aug 21 2006 Daniel Veillard <veillard@redhat.com> 0.1.4-3
- another patch to fix network handling in non-HVM guests

* Thu Aug 17 2006 Daniel Veillard <veillard@redhat.com> 0.1.4-2
- patch to fix virParseUUID()

D
Daniel Veillard 已提交
2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791
* Wed Aug 16 2006 Daniel Veillard <veillard@redhat.com> 0.1.4-1
- vCPUs and affinity support
- more complete XML, console and boot options
- specific features support
- enforced read-only connections
- various improvements, bug fixes

* Wed Aug  2 2006 Jeremy Katz <katzj@redhat.com> - 0.1.3-6
- add patch from pvetere to allow getting uuid from libvirt

* Wed Aug  2 2006 Jeremy Katz <katzj@redhat.com> - 0.1.3-5
- build on ia64 now

* Thu Jul 27 2006 Jeremy Katz <katzj@redhat.com> - 0.1.3-4
- don't BR xen, we just need xen-devel

* Thu Jul 27 2006 Daniel Veillard <veillard@redhat.com> 0.1.3-3
- need rebuild since libxenstore is now versionned

2792 2793 2794 2795 2796 2797
* Mon Jul 24 2006 Mark McLoughlin <markmc@redhat.com> - 0.1.3-2
- Add BuildRequires: xen-devel

* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 0.1.3-1.1
- rebuild

2798 2799 2800 2801
* Tue Jul 11 2006 Daniel Veillard <veillard@redhat.com> 0.1.3-1
- support for HVM Xen guests
- various bugfixes

2802 2803 2804 2805
* Mon Jul  3 2006 Daniel Veillard <veillard@redhat.com> 0.1.2-1
- added a proxy mechanism for read only access using httpu
- fixed header includes paths

2806 2807 2808 2809 2810 2811 2812 2813 2814
* Wed Jun 21 2006 Daniel Veillard <veillard@redhat.com> 0.1.1-1
- extend and cleanup the driver infrastructure and code
- python examples
- extend uuid support
- bug fixes, buffer handling cleanups
- support for new Xen hypervisor API
- test driver for unit testing
- virsh --conect argument

2815 2816 2817 2818 2819 2820 2821
* Mon Apr 10 2006 Daniel Veillard <veillard@redhat.com> 0.1.0-1
- various fixes
- new APIs: for Node information and Reboot
- virsh improvements and extensions
- documentation updates and man page
- enhancement and fixes of the XML description format

2822 2823 2824 2825 2826 2827
* Tue Feb 28 2006 Daniel Veillard <veillard@redhat.com> 0.0.6-1
- added error handling APIs
- small bug fixes
- improve python bindings
- augment documentation and regression tests

2828 2829 2830 2831 2832 2833
* Thu Feb 23 2006 Daniel Veillard <veillard@redhat.com> 0.0.5-1
- new domain creation API
- new UUID based APIs
- more tests, documentation, devhelp
- bug fixes

2834 2835 2836
* Fri Feb 10 2006 Daniel Veillard <veillard@redhat.com> 0.0.4-1
- fixes some problems in 0.0.3 due to the change of names

2837
* Wed Feb  8 2006 Daniel Veillard <veillard@redhat.com> 0.0.3-1
2838
- changed library name to libvirt from libvir, complete and test the python
2839 2840
  bindings

D
Daniel Veillard 已提交
2841 2842 2843 2844
* Sun Jan 29 2006 Daniel Veillard <veillard@redhat.com> 0.0.2-1
- upstream release of 0.0.2, use xend, save and restore added, python bindings
  fixed

2845 2846
* Wed Nov  2 2005 Daniel Veillard <veillard@redhat.com> 0.0.1-1
- created