Compare commits
38 Commits
libvirt-0_
...
F-10-split
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2a3935580c | ||
|
|
28f7f11450 | ||
|
|
ca07bc4597 | ||
|
|
8e23194a2b | ||
|
|
fe09090e2d | ||
|
|
b5868cf8cf | ||
|
|
f294b40ba5 | ||
|
|
c0c1a7bb79 | ||
|
|
1b864048bd | ||
|
|
072c9c45ab | ||
|
|
af111679c3 | ||
|
|
dd9f21eaa2 | ||
|
|
f0e356df98 | ||
|
|
140bcf9ffc | ||
|
|
af69660412 | ||
|
|
6dc94c6252 | ||
|
|
eb34165670 | ||
|
|
7ce08f2148 | ||
|
|
049a8c79d9 | ||
|
|
f7a6d90012 | ||
|
|
67a2f29a89 | ||
|
|
82422fa1ff | ||
|
|
a73cf1d010 | ||
|
|
481419ebb6 | ||
|
|
1e65165c3a | ||
|
|
bca27d9111 | ||
|
|
08b9144b41 | ||
|
|
2063007248 | ||
|
|
81e46cb6da | ||
|
|
263e2f2021 | ||
|
|
2b9efc3de2 | ||
|
|
69f6239766 | ||
|
|
bf744f9872 | ||
|
|
45b0b2bfa6 | ||
|
|
f29ea218b7 | ||
|
|
7d193b7810 | ||
|
|
3182a4df5a | ||
|
|
4f667910e9 |
30
.cvsignore
30
.cvsignore
@@ -1,24 +1,6 @@
|
|||||||
libvirt-0.0.3.tar.gz
|
.build*.log
|
||||||
libvirt-0.0.4.tar.gz
|
*.rpm
|
||||||
libvirt-0.0.5.tar.gz
|
i686
|
||||||
libvirt-0.0.6.tar.gz
|
x86_64
|
||||||
libvirt-0.1.0.tar.gz
|
libvirt-*.tar.gz
|
||||||
libvirt-0.1.2.tar.gz
|
libvirt-0.4.6.tar.gz
|
||||||
libvirt-0.1.1.tar.gz
|
|
||||||
libvirt-0.1.3.tar.gz
|
|
||||||
libvirt-0.1.4.tar.gz
|
|
||||||
libvirt-0.1.5.tar.gz
|
|
||||||
libvirt-0.1.6.tar.gz
|
|
||||||
libvirt-0.1.7.tar.gz
|
|
||||||
libvirt-0.1.8.tar.gz
|
|
||||||
libvirt-0.1.9.tar.gz
|
|
||||||
libvirt-0.1.10.tar.gz
|
|
||||||
libvirt-0.1.11.tar.gz
|
|
||||||
libvirt-0.2.0.tar.gz
|
|
||||||
libvirt-0.2.1.tar.gz
|
|
||||||
libvirt-0.2.2.tar.gz
|
|
||||||
libvirt-0.2.3.tar.gz
|
|
||||||
libvirt-0.3.0.tar.gz
|
|
||||||
libvirt-0.3.1.tar.gz
|
|
||||||
libvirt-0.3.2.tar.gz
|
|
||||||
libvirt-0.3.3.tar.gz
|
|
||||||
|
|||||||
@@ -1,207 +0,0 @@
|
|||||||
changeset: 1147:7481eafdde8d
|
|
||||||
user: berrange
|
|
||||||
date: Fri Oct 12 18:54:15 2007 +0000
|
|
||||||
files: libvirt.spec.in qemud/Makefile.am qemud/libvirtd.conf src/Makefile.am src/qemu.conf
|
|
||||||
description:
|
|
||||||
Added default example configs for libvirtd/qemu driver
|
|
||||||
|
|
||||||
|
|
||||||
diff -r c48e81e685a3 -r 7481eafdde8d qemud/libvirtd.conf
|
|
||||||
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
|
|
||||||
+++ b/qemud/libvirtd.conf Fri Oct 12 18:54:15 2007 +0000
|
|
||||||
@@ -0,0 +1,141 @@
|
|
||||||
+# Master libvirt daemon configuration file
|
|
||||||
+#
|
|
||||||
+# For further information consult http://libvirt.org/format.html
|
|
||||||
+
|
|
||||||
+
|
|
||||||
+# Flag listening for secure TLS connections on the public TCP/IP port.
|
|
||||||
+# NB, must pass the --listen flag to the libvirtd process for this to
|
|
||||||
+# have any effect.
|
|
||||||
+#
|
|
||||||
+# It is neccessary to setup a CA and issue server certificates before
|
|
||||||
+# using this capability.
|
|
||||||
+#
|
|
||||||
+# This is enabled by default, uncomment this to disable it
|
|
||||||
+# listen_tls = 0
|
|
||||||
+
|
|
||||||
+# Listen for unencrypted TCP connections on the public TCP/IP port.
|
|
||||||
+# NB, must pass the --listen flag to the libvirtd process for this to
|
|
||||||
+# have any effect.
|
|
||||||
+#
|
|
||||||
+# NB, this is insecure. Do not use except for development.
|
|
||||||
+#
|
|
||||||
+# This is disabled by default, uncomment this to enable it.
|
|
||||||
+# listen_tcp = 1
|
|
||||||
+
|
|
||||||
+
|
|
||||||
+
|
|
||||||
+# Override the port for accepting secure TLS connections
|
|
||||||
+# This can be a port number, or service name
|
|
||||||
+#
|
|
||||||
+# tls_port = "16514"
|
|
||||||
+
|
|
||||||
+# Override the port for accepting insecure TCP connections
|
|
||||||
+# This can be a port number, or service name
|
|
||||||
+#
|
|
||||||
+# tcp_port = "16509"
|
|
||||||
+
|
|
||||||
+
|
|
||||||
+
|
|
||||||
+# Flag toggling mDNS advertizement of the libvirt service.
|
|
||||||
+#
|
|
||||||
+# Alternatively can disable for all services on a host by
|
|
||||||
+# stopping the Avahi daemon
|
|
||||||
+#
|
|
||||||
+# This is enabled by default, uncomment this to disable it
|
|
||||||
+# mdns_adv = 0
|
|
||||||
+
|
|
||||||
+# Override the default mDNS advertizement name. This must be
|
|
||||||
+# unique on the immediate broadcast network.
|
|
||||||
+#
|
|
||||||
+# The default is "Virtualization Host HOSTNAME", where HOSTNAME
|
|
||||||
+# is subsituted for the short hostname of the machine (without domain)
|
|
||||||
+#
|
|
||||||
+# mdns_name "Virtualization Host Joe Demo"
|
|
||||||
+
|
|
||||||
+
|
|
||||||
+
|
|
||||||
+# Set the UNIX domain socket group ownership. This can be used to
|
|
||||||
+# allow a 'trusted' set of users access to management capabilities
|
|
||||||
+# without becoming root.
|
|
||||||
+#
|
|
||||||
+# This is restricted to 'root' by default.
|
|
||||||
+# unix_sock_group "libvirt"
|
|
||||||
+
|
|
||||||
+# Set the UNIX socket permissions for the R/O socket. This is used
|
|
||||||
+# for monitoring VM status only
|
|
||||||
+#
|
|
||||||
+# Default allows any user. If setting group ownership may want to
|
|
||||||
+# restrict this to:
|
|
||||||
+# unix_sock_ro_perms "0777"
|
|
||||||
+
|
|
||||||
+# Set the UNIX socket permissions for the R/W socket. This is used
|
|
||||||
+# for full management of VMs
|
|
||||||
+#
|
|
||||||
+# Default allows only root. If setting group ownership may want to
|
|
||||||
+# relax this to:
|
|
||||||
+# unix_sock_rw_perms "octal-perms" "0770"
|
|
||||||
+
|
|
||||||
+
|
|
||||||
+
|
|
||||||
+# Flag to disable verification of client certificates
|
|
||||||
+#
|
|
||||||
+# Client certificate verification is the primary authentication mechanism.
|
|
||||||
+# Any client which does not present a certificate signed by the CA
|
|
||||||
+# will be rejected.
|
|
||||||
+#
|
|
||||||
+# Default is to always verify. Uncommenting this will disable
|
|
||||||
+# verification - make sure an IP whitelist is set
|
|
||||||
+# tls_no_verify_certificate 1
|
|
||||||
+
|
|
||||||
+# Flag to disable verification of client IP address
|
|
||||||
+#
|
|
||||||
+# Client IP address will be verified against the CommonName field
|
|
||||||
+# of the x509 certificate. This has minimal security benefit since
|
|
||||||
+# it is easy to spoof source IP.
|
|
||||||
+#
|
|
||||||
+# Uncommenting this will disable verification
|
|
||||||
+# tls_no_verify_address 1
|
|
||||||
+
|
|
||||||
+# Override the default server key file path
|
|
||||||
+#
|
|
||||||
+# key_file "/etc/pki/libvirt/private/serverkey.pem"
|
|
||||||
+
|
|
||||||
+# Override the default server certificate file path
|
|
||||||
+#
|
|
||||||
+# cert_file "/etc/pki/libvirt/servercert.pem"
|
|
||||||
+
|
|
||||||
+# Override the default CA certificate path
|
|
||||||
+#
|
|
||||||
+# ca_file "/etc/pki/CA/cacert.pem"
|
|
||||||
+
|
|
||||||
+# Specify a certificate revocation list.
|
|
||||||
+#
|
|
||||||
+# Defaults to not using a CRL, uncomment to enable it
|
|
||||||
+# crl_file "/etc/pki/CA/crl.pem"
|
|
||||||
+
|
|
||||||
+# A whitelist of allowed x509 Distinguished Names
|
|
||||||
+# This list may contain wildcards such as
|
|
||||||
+#
|
|
||||||
+# "C=GB,ST=London,L=London,O=Red Hat,CN=*"
|
|
||||||
+#
|
|
||||||
+# See the POSIX fnmatch function for the format of the wildcards.
|
|
||||||
+#
|
|
||||||
+# NB If this is an empty list, no client can connect, so comment out
|
|
||||||
+# entirely rather than using empty list to disable these checks
|
|
||||||
+#
|
|
||||||
+# By default, no DN's are checked
|
|
||||||
+# tls_allowed_dn_list ["DN1", "DN2"]
|
|
||||||
+
|
|
||||||
+
|
|
||||||
+# A whitelist of allowed client IP addresses
|
|
||||||
+#
|
|
||||||
+# This list may contain wildcards such as 192.168.* See the POSIX fnmatch
|
|
||||||
+# function for the format of the wildcards.
|
|
||||||
+#
|
|
||||||
+# NB If this is an empty list, no client can connect, so comment out
|
|
||||||
+# entirely rather than using empty list to disable these checks
|
|
||||||
+#
|
|
||||||
+# By default, no IP's are checked. This can be IPv4 or IPv6 addresses
|
|
||||||
+# tls_allowed_ip_list ["ip1", "ip2", "ip3"]
|
|
||||||
+
|
|
||||||
+
|
|
||||||
diff -r c48e81e685a3 -r 7481eafdde8d src/qemu.conf
|
|
||||||
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
|
|
||||||
+++ b/src/qemu.conf Fri Oct 12 18:54:15 2007 +0000
|
|
||||||
@@ -0,0 +1,49 @@
|
|
||||||
+# Master configuration file for the QEMU driver.
|
|
||||||
+# All settings described here are optional - if omitted, sensible
|
|
||||||
+# defaults are used.
|
|
||||||
+
|
|
||||||
+# VNC is configured to listen on 127.0.0.1 by default.
|
|
||||||
+# To make it listen on all public interfaces, uncomment
|
|
||||||
+# this next option.
|
|
||||||
+#
|
|
||||||
+# NB, strong recommendation to enable TLS + x509 certificate
|
|
||||||
+# verification when allowing public access
|
|
||||||
+#
|
|
||||||
+# vnc_listen = "0.0.0.0"
|
|
||||||
+
|
|
||||||
+
|
|
||||||
+# Enable use of TLS encryption on the VNC server. This requires
|
|
||||||
+# a VNC client which supports the VeNCrypt protocol extension.
|
|
||||||
+# Examples include vinagre, virt-viewer, virt-manager and vencrypt
|
|
||||||
+# itself. UltraVNC, RealVNC, TightVNC do not support this
|
|
||||||
+#
|
|
||||||
+# It is neccessary to setup CA and issue a server certificate
|
|
||||||
+# before enabling this.
|
|
||||||
+#
|
|
||||||
+# vnc_tls = 1
|
|
||||||
+
|
|
||||||
+
|
|
||||||
+# Use of TLS requires that x509 certificates be issued. The
|
|
||||||
+# default it to keep them in /etc/pki/libvirt-vnc. This directory
|
|
||||||
+# must contain
|
|
||||||
+#
|
|
||||||
+# ca-cert.pem - the CA master certificate
|
|
||||||
+# server-cert.pem - the server certificate signed with ca-cert.pem
|
|
||||||
+# server-key.pem - the server private key
|
|
||||||
+#
|
|
||||||
+# This option allows the certificate directory to be changed
|
|
||||||
+#
|
|
||||||
+# vnc_tls_x509_cert_dir = "/etc/pki/libvirt-vnc"
|
|
||||||
+
|
|
||||||
+
|
|
||||||
+# The default TLS configuration only uses certificates for the server
|
|
||||||
+# allowing the client to verify the server's identity and establish
|
|
||||||
+# and encrypted channel.
|
|
||||||
+#
|
|
||||||
+# It is possible to use x509 certificates for authentication too, by
|
|
||||||
+# issuing a x509 certificate to every client who needs to connect.
|
|
||||||
+#
|
|
||||||
+# Enabling this option will reject any client who does not have a
|
|
||||||
+# certificate signed by the CA in /etc/pki/libvirt-vnc/ca-cert.pem
|
|
||||||
+#
|
|
||||||
+# vnc_tls_x509_verify = 1
|
|
||||||
|
|
||||||
@@ -1,230 +0,0 @@
|
|||||||
changeset: 1146:c48e81e685a3
|
|
||||||
user: berrange
|
|
||||||
date: Fri Oct 12 15:05:44 2007 +0000
|
|
||||||
files: ChangeLog src/qemu_conf.c src/qemu_conf.h src/qemu_driver.c
|
|
||||||
description:
|
|
||||||
Added QEMU driver config file
|
|
||||||
|
|
||||||
|
|
||||||
diff -r 522efe7f7e8f -r c48e81e685a3 src/qemu_conf.c
|
|
||||||
--- a/src/qemu_conf.c Wed Oct 10 18:46:17 2007 +0000
|
|
||||||
+++ b/src/qemu_conf.c Fri Oct 12 15:05:44 2007 +0000
|
|
||||||
@@ -45,6 +45,7 @@
|
|
||||||
#include "qemu_conf.h"
|
|
||||||
#include "uuid.h"
|
|
||||||
#include "buf.h"
|
|
||||||
+#include "conf.h"
|
|
||||||
|
|
||||||
#define qemudLog(level, msg...) fprintf(stderr, msg)
|
|
||||||
|
|
||||||
@@ -65,6 +66,68 @@ void qemudReportError(virConnectPtr conn
|
|
||||||
__virRaiseError(conn, dom, net, VIR_FROM_QEMU, code, VIR_ERR_ERROR,
|
|
||||||
NULL, NULL, NULL, -1, -1, errorMessage);
|
|
||||||
}
|
|
||||||
+
|
|
||||||
+int qemudLoadDriverConfig(struct qemud_driver *driver,
|
|
||||||
+ const char *filename) {
|
|
||||||
+ virConfPtr conf;
|
|
||||||
+ virConfValuePtr p;
|
|
||||||
+
|
|
||||||
+ /* Setup 2 critical defaults */
|
|
||||||
+ strcpy(driver->vncListen, "127.0.0.1");
|
|
||||||
+ if (!(driver->vncTLSx509certdir = strdup(SYSCONF_DIR "/pki/libvirt-vnc"))) {
|
|
||||||
+ qemudReportError(NULL, NULL, NULL, VIR_ERR_NO_MEMORY,
|
|
||||||
+ "vncTLSx509certdir");
|
|
||||||
+ return -1;
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
+ /* Just check the file is readable before opening it, otherwise
|
|
||||||
+ * libvirt emits an error.
|
|
||||||
+ */
|
|
||||||
+ if (access (filename, R_OK) == -1) return 0;
|
|
||||||
+
|
|
||||||
+ conf = virConfReadFile (filename);
|
|
||||||
+ if (!conf) return 0;
|
|
||||||
+
|
|
||||||
+
|
|
||||||
+#define CHECK_TYPE(name,typ) if (p && p->type != (typ)) { \
|
|
||||||
+ qemudReportError(NULL, NULL, NULL, VIR_ERR_INTERNAL_ERROR, \
|
|
||||||
+ "remoteReadConfigFile: %s: %s: expected type " #typ "\n", \
|
|
||||||
+ filename, (name)); \
|
|
||||||
+ virConfFree(conf); \
|
|
||||||
+ return -1; \
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
+ p = virConfGetValue (conf, "vnc_tls");
|
|
||||||
+ CHECK_TYPE ("vnc_tls", VIR_CONF_LONG);
|
|
||||||
+ if (p) driver->vncTLS = p->l;
|
|
||||||
+
|
|
||||||
+ p = virConfGetValue (conf, "vnc_tls_x509_verify");
|
|
||||||
+ CHECK_TYPE ("vnc_tls_x509_verify", VIR_CONF_LONG);
|
|
||||||
+ if (p) driver->vncTLSx509verify = p->l;
|
|
||||||
+
|
|
||||||
+ p = virConfGetValue (conf, "vnc_tls_x509_cert_dir");
|
|
||||||
+ CHECK_TYPE ("vnc_tls_x509_cert_dir", VIR_CONF_STRING);
|
|
||||||
+ if (p && p->str) {
|
|
||||||
+ free(driver->vncTLSx509certdir);
|
|
||||||
+ if (!(driver->vncTLSx509certdir = strdup(p->str))) {
|
|
||||||
+ qemudReportError(NULL, NULL, NULL, VIR_ERR_NO_MEMORY,
|
|
||||||
+ "vncTLSx509certdir");
|
|
||||||
+ virConfFree(conf);
|
|
||||||
+ return -1;
|
|
||||||
+ }
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
+ p = virConfGetValue (conf, "vnc_listen");
|
|
||||||
+ CHECK_TYPE ("vnc_listen", VIR_CONF_STRING);
|
|
||||||
+ if (p && p->str) {
|
|
||||||
+ strncpy(driver->vncListen, p->str, sizeof(driver->vncListen));
|
|
||||||
+ driver->vncListen[sizeof(driver->vncListen)-1] = '\0';
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
+ virConfFree (conf);
|
|
||||||
+ return 0;
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
|
|
||||||
struct qemud_vm *qemudFindVMByID(const struct qemud_driver *driver, int id) {
|
|
||||||
struct qemud_vm *vm = driver->vms;
|
|
||||||
@@ -1234,7 +1297,7 @@ static struct qemud_vm_def *qemudParseXM
|
|
||||||
if (vnclisten && *vnclisten)
|
|
||||||
strncpy(def->vncListen, (char *)vnclisten, BR_INET_ADDR_MAXLEN-1);
|
|
||||||
else
|
|
||||||
- strcpy(def->vncListen, "127.0.0.1");
|
|
||||||
+ strcpy(def->vncListen, driver->vncListen);
|
|
||||||
def->vncListen[BR_INET_ADDR_MAXLEN-1] = '\0';
|
|
||||||
xmlFree(vncport);
|
|
||||||
xmlFree(vnclisten);
|
|
||||||
@@ -1750,15 +1813,30 @@ int qemudBuildCommandLine(virConnectPtr
|
|
||||||
}
|
|
||||||
|
|
||||||
if (vm->def->graphicsType == QEMUD_GRAPHICS_VNC) {
|
|
||||||
- char vncdisplay[BR_INET_ADDR_MAXLEN+20];
|
|
||||||
+ char vncdisplay[PATH_MAX];
|
|
||||||
int ret;
|
|
||||||
- if (vm->qemuCmdFlags & QEMUD_CMD_FLAG_VNC_COLON)
|
|
||||||
- ret = snprintf(vncdisplay, sizeof(vncdisplay), "%s:%d",
|
|
||||||
+
|
|
||||||
+ if (vm->qemuCmdFlags & QEMUD_CMD_FLAG_VNC_COLON) {
|
|
||||||
+ char options[PATH_MAX] = "";
|
|
||||||
+ if (driver->vncTLS) {
|
|
||||||
+ strcat(options, ",tls");
|
|
||||||
+ if (driver->vncTLSx509verify) {
|
|
||||||
+ strcat(options, ",x509verify=");
|
|
||||||
+ } else {
|
|
||||||
+ strcat(options, ",x509=");
|
|
||||||
+ }
|
|
||||||
+ strncat(options, driver->vncTLSx509certdir,
|
|
||||||
+ sizeof(options) - (strlen(driver->vncTLSx509certdir)-1));
|
|
||||||
+ options[sizeof(options)-1] = '\0';
|
|
||||||
+ }
|
|
||||||
+ ret = snprintf(vncdisplay, sizeof(vncdisplay), "%s:%d%s",
|
|
||||||
vm->def->vncListen,
|
|
||||||
- vm->def->vncActivePort - 5900);
|
|
||||||
- else
|
|
||||||
+ vm->def->vncActivePort - 5900,
|
|
||||||
+ options);
|
|
||||||
+ } else {
|
|
||||||
ret = snprintf(vncdisplay, sizeof(vncdisplay), "%d",
|
|
||||||
vm->def->vncActivePort - 5900);
|
|
||||||
+ }
|
|
||||||
if (ret < 0 || ret >= (int)sizeof(vncdisplay))
|
|
||||||
goto error;
|
|
||||||
|
|
||||||
diff -r 522efe7f7e8f -r c48e81e685a3 src/qemu_conf.h
|
|
||||||
--- a/src/qemu_conf.h Wed Oct 10 18:46:17 2007 +0000
|
|
||||||
+++ b/src/qemu_conf.h Fri Oct 12 15:05:44 2007 +0000
|
|
||||||
@@ -289,6 +289,10 @@ struct qemud_driver {
|
|
||||||
char *networkConfigDir;
|
|
||||||
char *networkAutostartDir;
|
|
||||||
char logDir[PATH_MAX];
|
|
||||||
+ int vncTLS : 1;
|
|
||||||
+ int vncTLSx509verify : 1;
|
|
||||||
+ char *vncTLSx509certdir;
|
|
||||||
+ char vncListen[BR_INET_ADDR_MAXLEN];
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
@@ -311,6 +315,8 @@ void qemudReportError(virConnectPtr conn
|
|
||||||
ATTRIBUTE_FORMAT(printf,5,6);
|
|
||||||
|
|
||||||
|
|
||||||
+int qemudLoadDriverConfig(struct qemud_driver *driver,
|
|
||||||
+ const char *filename);
|
|
||||||
|
|
||||||
struct qemud_vm *qemudFindVMByID(const struct qemud_driver *driver,
|
|
||||||
int id);
|
|
||||||
diff -r 522efe7f7e8f -r c48e81e685a3 src/qemu_driver.c
|
|
||||||
--- a/src/qemu_driver.c Wed Oct 10 18:46:17 2007 +0000
|
|
||||||
+++ b/src/qemu_driver.c Fri Oct 12 15:05:44 2007 +0000
|
|
||||||
@@ -155,6 +155,7 @@ qemudStartup(void) {
|
|
||||||
uid_t uid = geteuid();
|
|
||||||
struct passwd *pw;
|
|
||||||
char *base = NULL;
|
|
||||||
+ char driverConf[PATH_MAX];
|
|
||||||
|
|
||||||
if (!(qemu_driver = calloc(1, sizeof(struct qemud_driver)))) {
|
|
||||||
return -1;
|
|
||||||
@@ -167,7 +168,7 @@ qemudStartup(void) {
|
|
||||||
if (snprintf(qemu_driver->logDir, PATH_MAX, "%s/log/libvirt/qemu", LOCAL_STATE_DIR) >= PATH_MAX)
|
|
||||||
goto snprintf_error;
|
|
||||||
|
|
||||||
- if ((base = strdup (SYSCONF_DIR "/libvirt/qemu")) == NULL)
|
|
||||||
+ if ((base = strdup (SYSCONF_DIR "/libvirt")) == NULL)
|
|
||||||
goto out_of_memory;
|
|
||||||
} else {
|
|
||||||
if (!(pw = getpwuid(uid))) {
|
|
||||||
@@ -179,7 +180,7 @@ qemudStartup(void) {
|
|
||||||
if (snprintf(qemu_driver->logDir, PATH_MAX, "%s/.libvirt/qemu/log", pw->pw_dir) >= PATH_MAX)
|
|
||||||
goto snprintf_error;
|
|
||||||
|
|
||||||
- if (asprintf (&base, "%s/.libvirt/qemu", pw->pw_dir) == -1) {
|
|
||||||
+ if (asprintf (&base, "%s/.libvirt", pw->pw_dir) == -1) {
|
|
||||||
qemudLog (QEMUD_ERR, "out of memory in asprintf");
|
|
||||||
goto out_of_memory;
|
|
||||||
}
|
|
||||||
@@ -188,24 +189,36 @@ qemudStartup(void) {
|
|
||||||
/* Configuration paths are either ~/.libvirt/qemu/... (session) or
|
|
||||||
* /etc/libvirt/qemu/... (system).
|
|
||||||
*/
|
|
||||||
- if (asprintf (&qemu_driver->configDir, "%s", base) == -1)
|
|
||||||
+ if (snprintf (driverConf, sizeof(driverConf), "%s/qemu.conf", base) == -1)
|
|
||||||
goto out_of_memory;
|
|
||||||
-
|
|
||||||
- if (asprintf (&qemu_driver->autostartDir, "%s/autostart", base) == -1)
|
|
||||||
+ driverConf[sizeof(driverConf)-1] = '\0';
|
|
||||||
+
|
|
||||||
+ if (asprintf (&qemu_driver->configDir, "%s/qemu", base) == -1)
|
|
||||||
goto out_of_memory;
|
|
||||||
|
|
||||||
- if (asprintf (&qemu_driver->networkConfigDir, "%s/networks", base) == -1)
|
|
||||||
+ if (asprintf (&qemu_driver->autostartDir, "%s/qemu/autostart", base) == -1)
|
|
||||||
goto out_of_memory;
|
|
||||||
|
|
||||||
- if (asprintf (&qemu_driver->networkAutostartDir, "%s/networks/autostart",
|
|
||||||
+ if (asprintf (&qemu_driver->networkConfigDir, "%s/qemu/networks", base) == -1)
|
|
||||||
+ goto out_of_memory;
|
|
||||||
+
|
|
||||||
+ if (asprintf (&qemu_driver->networkAutostartDir, "%s/qemu/networks/autostart",
|
|
||||||
base) == -1)
|
|
||||||
goto out_of_memory;
|
|
||||||
|
|
||||||
- if (qemudScanConfigs(qemu_driver) < 0)
|
|
||||||
+ free(base);
|
|
||||||
+
|
|
||||||
+ if (qemudLoadDriverConfig(qemu_driver, driverConf) < 0) {
|
|
||||||
qemudShutdown();
|
|
||||||
+ return -1;
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
+ if (qemudScanConfigs(qemu_driver) < 0) {
|
|
||||||
+ qemudShutdown();
|
|
||||||
+ return -1;
|
|
||||||
+ }
|
|
||||||
qemudAutostartConfigs(qemu_driver);
|
|
||||||
|
|
||||||
- free(base);
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
snprintf_error:
|
|
||||||
|
|
||||||
360
libvirt.spec
360
libvirt.spec
@@ -1,17 +1,45 @@
|
|||||||
# -*- rpm-spec -*-
|
# -*- rpm-spec -*-
|
||||||
|
|
||||||
|
%define with_xen 0%{!?_without_xen:1}
|
||||||
|
%define with_xen_proxy 0%{!?_without_xen_proxy:1}
|
||||||
|
%define with_qemu 0%{!?_without_qemu:1}
|
||||||
|
%define with_openvz 0%{!?_without_openvz:1}
|
||||||
|
%define with_lxc 0%{!?_without_lxc:1}
|
||||||
|
%define with_sasl 0%{!?_without_sasl:1}
|
||||||
|
%define with_avahi 0%{!?_without_avahi:1}
|
||||||
|
%define with_polkit 0%{!?_without_polkit:0}
|
||||||
|
%define with_python 0%{!?_without_python:1}
|
||||||
|
%define with_libvirtd 0%{!?_without_libvirtd:1}
|
||||||
|
|
||||||
|
# Xen is available only on i386 x86_64 ia64
|
||||||
|
%ifnarch i386 i686 x86_64 ia64
|
||||||
|
%define with_xen 0
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if ! %{with_xen}
|
||||||
|
%define with_xen_proxy 0
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if "%{fedora}"
|
||||||
|
%ifarch ppc64
|
||||||
|
%define with_qemu 0
|
||||||
|
%endif
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if 0%{?fedora} >= 8
|
||||||
|
%define with_polkit 0%{!?_without_polkit:1}
|
||||||
|
%define with_xen_proxy 0
|
||||||
|
%endif
|
||||||
|
|
||||||
Summary: Library providing a simple API virtualization
|
Summary: Library providing a simple API virtualization
|
||||||
Name: libvirt
|
Name: libvirt
|
||||||
Version: 0.3.3
|
Version: 0.4.6
|
||||||
Release: 2%{?dist}%{?extra_release}
|
Release: 3%{?dist}%{?extra_release}
|
||||||
License: LGPL
|
License: LGPLv2+
|
||||||
Group: Development/Libraries
|
Group: Development/Libraries
|
||||||
Source: libvirt-%{version}.tar.gz
|
Source: libvirt-%{version}.tar.gz
|
||||||
Patch1: %{name}-%{version}-qemu-config.patch
|
Patch0: python_make.patch
|
||||||
# NB, when removing this patch on next release, also remove the manual
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
|
||||||
# config file copy in the install section of this spec file
|
|
||||||
Patch2: %{name}-%{version}-example-config.patch
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
|
||||||
URL: http://libvirt.org/
|
URL: http://libvirt.org/
|
||||||
BuildRequires: python python-devel
|
BuildRequires: python python-devel
|
||||||
Requires: libxml2
|
Requires: libxml2
|
||||||
@@ -20,25 +48,86 @@ Requires: ncurses
|
|||||||
Requires: dnsmasq
|
Requires: dnsmasq
|
||||||
Requires: bridge-utils
|
Requires: bridge-utils
|
||||||
Requires: iptables
|
Requires: iptables
|
||||||
|
# So remote clients can access libvirt over SSH tunnel
|
||||||
%ifarch i386 x86_64 ia64
|
# (client invokes 'nc' against the UNIX socket on the server)
|
||||||
|
Requires: nc
|
||||||
|
%if %{with_sasl}
|
||||||
|
Requires: cyrus-sasl
|
||||||
|
# Not technically required, but makes 'out-of-box' config
|
||||||
|
# work correctly & doesn't have onerous dependencies
|
||||||
|
Requires: cyrus-sasl-md5
|
||||||
|
%endif
|
||||||
|
%if %{with_polkit}
|
||||||
|
Requires: PolicyKit >= 0.6
|
||||||
|
%endif
|
||||||
|
# For mount/umount in FS driver
|
||||||
|
BuildRequires: util-linux
|
||||||
|
# For showmount in FS driver (netfs discovery)
|
||||||
|
BuildRequires: nfs-utils
|
||||||
|
Requires: nfs-utils
|
||||||
|
%if %{with_qemu}
|
||||||
|
# From QEMU RPMs
|
||||||
|
Requires: /usr/bin/qemu-img
|
||||||
|
%else
|
||||||
|
%if %{with_xen}
|
||||||
|
# From Xen RPMs
|
||||||
|
Requires: /usr/sbin/qcow-create
|
||||||
|
%endif
|
||||||
|
%endif
|
||||||
|
# For LVM drivers
|
||||||
|
Requires: lvm2
|
||||||
|
# For ISCSI driver
|
||||||
|
Requires: iscsi-initiator-utils
|
||||||
|
# For disk driver
|
||||||
|
Requires: parted
|
||||||
|
%if %{with_xen}
|
||||||
BuildRequires: xen-devel
|
BuildRequires: xen-devel
|
||||||
%endif
|
%endif
|
||||||
BuildRequires: libxml2-devel
|
BuildRequires: libxml2-devel
|
||||||
|
BuildRequires: xhtml1-dtds
|
||||||
BuildRequires: readline-devel
|
BuildRequires: readline-devel
|
||||||
BuildRequires: ncurses-devel
|
BuildRequires: ncurses-devel
|
||||||
BuildRequires: gettext
|
BuildRequires: gettext
|
||||||
BuildRequires: gnutls-devel
|
BuildRequires: gnutls-devel
|
||||||
|
%if %{with_avahi}
|
||||||
BuildRequires: avahi-devel
|
BuildRequires: avahi-devel
|
||||||
|
%endif
|
||||||
|
BuildRequires: libselinux-devel
|
||||||
BuildRequires: dnsmasq
|
BuildRequires: dnsmasq
|
||||||
BuildRequires: bridge-utils
|
BuildRequires: bridge-utils
|
||||||
|
%if %{with_qemu}
|
||||||
|
BuildRequires: qemu
|
||||||
|
%endif
|
||||||
|
%if %{with_sasl}
|
||||||
|
BuildRequires: cyrus-sasl-devel
|
||||||
|
%endif
|
||||||
|
%if %{with_polkit}
|
||||||
|
BuildRequires: PolicyKit-devel >= 0.6
|
||||||
|
%endif
|
||||||
|
# For mount/umount in FS driver
|
||||||
|
BuildRequires: util-linux
|
||||||
|
%if %{with_qemu}
|
||||||
|
# From QEMU RPMs
|
||||||
|
BuildRequires: /usr/bin/qemu-img
|
||||||
|
%else
|
||||||
|
%if %{with_xen}
|
||||||
|
# From Xen RPMs
|
||||||
|
BuildRequires: /usr/sbin/qcow-create
|
||||||
|
%endif
|
||||||
|
%endif
|
||||||
|
# For LVM drivers
|
||||||
|
BuildRequires: lvm2
|
||||||
|
# For ISCSI driver
|
||||||
|
BuildRequires: iscsi-initiator-utils
|
||||||
|
# For disk driver
|
||||||
|
BuildRequires: parted-devel
|
||||||
Obsoletes: libvir
|
Obsoletes: libvir
|
||||||
|
|
||||||
# Fedora build root suckage
|
# Fedora build root suckage
|
||||||
BuildRequires: gawk
|
BuildRequires: gawk
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Libvirt is a C toolkit to interract with the virtualization capabilities
|
Libvirt is a C toolkit to interact with the virtualization capabilities
|
||||||
of recent versions of Linux (and other OSes).
|
of recent versions of Linux (and other OSes).
|
||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
@@ -46,16 +135,16 @@ Summary: Libraries, includes, etc. to compile with the libvirt library
|
|||||||
Group: Development/Libraries
|
Group: Development/Libraries
|
||||||
Requires: libvirt = %{version}
|
Requires: libvirt = %{version}
|
||||||
Requires: pkgconfig
|
Requires: pkgconfig
|
||||||
%ifarch i386 x86_64 ia64
|
%if %{with_xen}
|
||||||
Requires: xen-devel
|
Requires: xen-devel
|
||||||
%endif
|
%endif
|
||||||
Requires: gnutls-devel
|
|
||||||
Obsoletes: libvir-devel
|
Obsoletes: libvir-devel
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
Includes and documentations for the C library providing an API to use
|
Includes and documentations for the C library providing an API to use
|
||||||
the virtualization capabilities of recent versions of Linux (and other OSes).
|
the virtualization capabilities of recent versions of Linux (and other OSes).
|
||||||
|
|
||||||
|
%if %{with_python}
|
||||||
%package python
|
%package python
|
||||||
Summary: Python bindings for the libvirt library
|
Summary: Python bindings for the libvirt library
|
||||||
Group: Development/Libraries
|
Group: Development/Libraries
|
||||||
@@ -65,23 +154,64 @@ Obsoletes: libvir-python
|
|||||||
%description python
|
%description python
|
||||||
The libvirt-python package contains a module that permits applications
|
The libvirt-python package contains a module that permits applications
|
||||||
written in the Python programming language to use the interface
|
written in the Python programming language to use the interface
|
||||||
supplied by the libvirt library to use the the virtualization capabilities
|
supplied by the libvirt library to use the virtualization capabilities
|
||||||
of recent versions of Linux (and other OSes).
|
of recent versions of Linux (and other OSes).
|
||||||
|
%endif
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
%patch1 -p1
|
%patch0 -p0
|
||||||
%patch2 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
# Xen is availble only on i386 x86_64 ia64
|
%if ! %{with_xen}
|
||||||
%ifarch i386 i686 x86_64 ia64
|
%define _without_xen --without-xen
|
||||||
%configure --with-init-script=redhat --with-qemud-pid-file=%{_localstatedir}/run/libvirt_qemud.pid --with-remote-file=%{_localstatedir}/run/libvirtd.pid
|
|
||||||
%else
|
|
||||||
%configure --without-xen --with-init-script=redhat --with-qemud-pid-file=%{_localstatedir}/run/libvirt_qemud.pid --with-remote-file=%{_localstatedir}/run/libvirtd.pid
|
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
make
|
%if ! %{with_qemu}
|
||||||
|
%define _without_qemu --without-qemu
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if ! %{with_openvz}
|
||||||
|
%define _without_openvz --without-openvz
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if ! %{with_lxc}
|
||||||
|
%define _without_lxc --without-lxc
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if ! %{with_sasl}
|
||||||
|
%define _without_sasl --without-sasl
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if ! %{with_avahi}
|
||||||
|
%define _without_avahi --without-avahi
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if ! %{with_polkit}
|
||||||
|
%define _without_polkit --without-polkit
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if ! %{with_python}
|
||||||
|
%define _without_python --without-python
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if ! %{with_libvirtd}
|
||||||
|
%define _without_libvirtd --without-libvirtd
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%configure %{?_without_xen} \
|
||||||
|
%{?_without_qemu} \
|
||||||
|
%{?_without_openvz} \
|
||||||
|
%{?_without_lxc} \
|
||||||
|
%{?_without_sasl} \
|
||||||
|
%{?_without_avahi} \
|
||||||
|
%{?_without_polkit} \
|
||||||
|
%{?_without_python} \
|
||||||
|
%{?_without_libvirtd} \
|
||||||
|
--with-init-script=redhat \
|
||||||
|
--with-qemud-pid-file=%{_localstatedir}/run/libvirt_qemud.pid \
|
||||||
|
--with-remote-file=%{_localstatedir}/run/libvirtd.pid
|
||||||
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
rm -fr %{buildroot}
|
rm -fr %{buildroot}
|
||||||
@@ -94,12 +224,12 @@ rm -f $RPM_BUILD_ROOT%{_libdir}/*.a
|
|||||||
rm -f $RPM_BUILD_ROOT%{_libdir}/python*/site-packages/*.la
|
rm -f $RPM_BUILD_ROOT%{_libdir}/python*/site-packages/*.la
|
||||||
rm -f $RPM_BUILD_ROOT%{_libdir}/python*/site-packages/*.a
|
rm -f $RPM_BUILD_ROOT%{_libdir}/python*/site-packages/*.a
|
||||||
install -d -m 0755 $RPM_BUILD_ROOT%{_localstatedir}/run/libvirt/
|
install -d -m 0755 $RPM_BUILD_ROOT%{_localstatedir}/run/libvirt/
|
||||||
|
# Default dir for disk images defined in SELinux policy
|
||||||
|
install -d -m 0755 $RPM_BUILD_ROOT%{_localstatedir}/lib/libvirt/images/
|
||||||
|
# Default dir for kernel+initrd images defnied in SELinux policy
|
||||||
|
install -d -m 0755 $RPM_BUILD_ROOT%{_localstatedir}/lib/libvirt/boot/
|
||||||
|
|
||||||
# Copy files from patch2 into location
|
%if %{with_qemu}
|
||||||
install -d $RPM_BUILD_ROOT%{_sysconfdir}/libvirt
|
|
||||||
install -m 0755 src/qemu.conf $RPM_BUILD_ROOT%{_sysconfdir}/libvirt/qemu.conf
|
|
||||||
install -m 0755 qemud/libvirtd.conf $RPM_BUILD_ROOT%{_sysconfdir}/libvirt/libvirtd.conf
|
|
||||||
|
|
||||||
# We don't want to install /etc/libvirt/qemu/networks in the main %files list
|
# 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
|
# 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.
|
# want to end up re-incarnating it on every RPM upgrade.
|
||||||
@@ -110,14 +240,30 @@ rm -f $RPM_BUILD_ROOT%{_sysconfdir}/libvirt/qemu/networks/default.xml
|
|||||||
rm -f $RPM_BUILD_ROOT%{_sysconfdir}/libvirt/qemu/networks/autostart/default.xml
|
rm -f $RPM_BUILD_ROOT%{_sysconfdir}/libvirt/qemu/networks/autostart/default.xml
|
||||||
# Strip auto-generated UUID - we need it generated per-install
|
# Strip auto-generated UUID - we need it generated per-install
|
||||||
sed -i -e "/<uuid>/d" $RPM_BUILD_ROOT%{_datadir}/libvirt/networks/default.xml
|
sed -i -e "/<uuid>/d" $RPM_BUILD_ROOT%{_datadir}/libvirt/networks/default.xml
|
||||||
|
%else
|
||||||
|
rm -f $RPM_BUILD_ROOT%{_sysconfdir}/libvirt/qemu/networks/default.xml
|
||||||
|
rm -f $RPM_BUILD_ROOT%{_sysconfdir}/libvirt/qemu/networks/autostart/default.xml
|
||||||
|
rm -f $RPM_BUILD_ROOT%{_datadir}/augeas/lenses/libvirtd_qemu.aug
|
||||||
|
rm -f $RPM_BUILD_ROOT%{_datadir}/augeas/lenses/tests/test_libvirtd_qemu.aug
|
||||||
|
%endif
|
||||||
%find_lang %{name}
|
%find_lang %{name}
|
||||||
|
|
||||||
|
%if ! %{with_python}
|
||||||
|
rm -rf $RPM_BUILD_ROOT%{_datadir}/doc/libvirt-python-%{version}
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if ! %{with_qemu}
|
||||||
|
rm -rf $RPM_BUILD_ROOT%{_sysconfdir}/libvirt/qemu.conf
|
||||||
|
%endif
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
rm -fr %{buildroot}
|
rm -fr %{buildroot}
|
||||||
|
|
||||||
%post
|
%post
|
||||||
/sbin/ldconfig
|
/sbin/ldconfig
|
||||||
|
|
||||||
|
%if %{with_libvirtd}
|
||||||
|
%if %{with_qemu}
|
||||||
# We want to install the default network for initial RPM installs
|
# We want to install the default network for initial RPM installs
|
||||||
# or on the first upgrade from a non-network aware libvirt only.
|
# or on the first upgrade from a non-network aware libvirt only.
|
||||||
# We check this by looking to see if the daemon is already installed
|
# We check this by looking to see if the daemon is already installed
|
||||||
@@ -130,14 +276,18 @@ then
|
|||||||
> %{_sysconfdir}/libvirt/qemu/networks/default.xml
|
> %{_sysconfdir}/libvirt/qemu/networks/default.xml
|
||||||
ln -s ../default.xml %{_sysconfdir}/libvirt/qemu/networks/autostart/default.xml
|
ln -s ../default.xml %{_sysconfdir}/libvirt/qemu/networks/autostart/default.xml
|
||||||
fi
|
fi
|
||||||
|
%endif
|
||||||
|
|
||||||
/sbin/chkconfig --add libvirtd
|
/sbin/chkconfig --add libvirtd
|
||||||
|
%endif
|
||||||
|
|
||||||
%preun
|
%preun
|
||||||
|
%if %{with_libvirtd}
|
||||||
if [ $1 = 0 ]; then
|
if [ $1 = 0 ]; then
|
||||||
/sbin/service libvirtd stop 1>/dev/null 2>&1
|
/sbin/service libvirtd stop 1>/dev/null 2>&1
|
||||||
/sbin/chkconfig --del libvirtd
|
/sbin/chkconfig --del libvirtd
|
||||||
fi
|
fi
|
||||||
|
%endif
|
||||||
|
|
||||||
%postun
|
%postun
|
||||||
/sbin/ldconfig
|
/sbin/ldconfig
|
||||||
@@ -150,21 +300,69 @@ fi
|
|||||||
%{_bindir}/virsh
|
%{_bindir}/virsh
|
||||||
%{_libdir}/lib*.so.*
|
%{_libdir}/lib*.so.*
|
||||||
%dir %attr(0700, root, root) %{_sysconfdir}/libvirt/
|
%dir %attr(0700, root, root) %{_sysconfdir}/libvirt/
|
||||||
|
|
||||||
|
%if %{with_qemu}
|
||||||
%dir %attr(0700, root, root) %{_sysconfdir}/libvirt/qemu/
|
%dir %attr(0700, root, root) %{_sysconfdir}/libvirt/qemu/
|
||||||
%dir %attr(0700, root, root) %{_sysconfdir}/libvirt/qemu/networks/
|
%dir %attr(0700, root, root) %{_sysconfdir}/libvirt/qemu/networks/
|
||||||
%dir %attr(0700, root, root) %{_sysconfdir}/libvirt/qemu/networks/autostart
|
%dir %attr(0700, root, root) %{_sysconfdir}/libvirt/qemu/networks/autostart
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if %{with_libvirtd}
|
||||||
%{_sysconfdir}/rc.d/init.d/libvirtd
|
%{_sysconfdir}/rc.d/init.d/libvirtd
|
||||||
%config(noreplace) %{_sysconfdir}/sysconfig/libvirtd
|
%config(noreplace) %{_sysconfdir}/sysconfig/libvirtd
|
||||||
%config(noreplace) %{_sysconfdir}/libvirt/libvirtd.conf
|
%config(noreplace) %{_sysconfdir}/libvirt/libvirtd.conf
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if %{with_qemu}
|
||||||
%config(noreplace) %{_sysconfdir}/libvirt/qemu.conf
|
%config(noreplace) %{_sysconfdir}/libvirt/qemu.conf
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if %{with_sasl}
|
||||||
|
%config(noreplace) %{_sysconfdir}/sasl2/libvirt.conf
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if %{with_qemu}
|
||||||
%dir %{_datadir}/libvirt/
|
%dir %{_datadir}/libvirt/
|
||||||
%dir %{_datadir}/libvirt/networks/
|
%dir %{_datadir}/libvirt/networks/
|
||||||
%{_datadir}/libvirt/networks/default.xml
|
%{_datadir}/libvirt/networks/default.xml
|
||||||
|
%endif
|
||||||
|
|
||||||
%dir %{_localstatedir}/run/libvirt/
|
%dir %{_localstatedir}/run/libvirt/
|
||||||
%dir %{_localstatedir}/lib/libvirt/
|
%dir %{_localstatedir}/lib/libvirt/
|
||||||
|
%dir %attr(0700, root, root) %{_localstatedir}/lib/libvirt/images/
|
||||||
|
%dir %attr(0700, root, root) %{_localstatedir}/lib/libvirt/boot/
|
||||||
|
|
||||||
|
%if %{with_qemu}
|
||||||
|
%{_datadir}/augeas/lenses/libvirtd_qemu.aug
|
||||||
|
%{_datadir}/augeas/lenses/tests/test_libvirtd_qemu.aug
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if %{with_libvirtd}
|
||||||
|
%{_datadir}/augeas/lenses/libvirtd.aug
|
||||||
|
%{_datadir}/augeas/lenses/tests/test_libvirtd.aug
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if %{with_polkit}
|
||||||
|
%{_datadir}/PolicyKit/policy/org.libvirt.unix.policy
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if %{with_qemu}
|
||||||
%dir %attr(0700, root, root) %{_localstatedir}/log/libvirt/qemu/
|
%dir %attr(0700, root, root) %{_localstatedir}/log/libvirt/qemu/
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if %{with_xen_proxy}
|
||||||
%attr(4755, root, root) %{_libexecdir}/libvirt_proxy
|
%attr(4755, root, root) %{_libexecdir}/libvirt_proxy
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if %{with_lxc}
|
||||||
|
%attr(0755, root, root) %{_libexecdir}/libvirt_lxc
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if %{with_libvirtd}
|
||||||
|
%attr(0755, root, root) %{_libexecdir}/libvirt_parthelper
|
||||||
%attr(0755, root, root) %{_sbindir}/libvirtd
|
%attr(0755, root, root) %{_sbindir}/libvirtd
|
||||||
|
%endif
|
||||||
|
|
||||||
%doc docs/*.rng
|
%doc docs/*.rng
|
||||||
%doc docs/*.xml
|
%doc docs/*.xml
|
||||||
|
|
||||||
@@ -184,6 +382,7 @@ fi
|
|||||||
%doc docs/examples
|
%doc docs/examples
|
||||||
%doc docs/libvirt-api.xml
|
%doc docs/libvirt-api.xml
|
||||||
|
|
||||||
|
%if %{with_python}
|
||||||
%files python
|
%files python
|
||||||
%defattr(-, root, root)
|
%defattr(-, root, root)
|
||||||
|
|
||||||
@@ -194,8 +393,115 @@ fi
|
|||||||
%doc python/TODO
|
%doc python/TODO
|
||||||
%doc python/libvirtclass.txt
|
%doc python/libvirtclass.txt
|
||||||
%doc docs/examples/python
|
%doc docs/examples/python
|
||||||
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Sep 24 2008 Daniel Veillard <veillard@redhat.com> - 0.4.6-3.fc10
|
||||||
|
- apply the python makefile patch for #463733
|
||||||
|
|
||||||
|
* Wed Sep 24 2008 Daniel Veillard <veillard@redhat.com> - 0.4.6-2.fc10
|
||||||
|
- upstream release 0.4.6
|
||||||
|
- fixes some problems with 0.4.5
|
||||||
|
|
||||||
|
* Tue Sep 9 2008 Daniel Veillard <veillard@redhat.com> - 0.4.5-2.fc10
|
||||||
|
- fix a crash if a QEmu/KVM domain is defined without an emulator path
|
||||||
|
|
||||||
|
* Mon Sep 8 2008 Daniel Veillard <veillard@redhat.com> - 0.4.5-1.fc10
|
||||||
|
- upstream release 0.4.5
|
||||||
|
- a lot of bug fixes
|
||||||
|
- major updates to QEmu/KVM and Linux containers drivers
|
||||||
|
- support for OpenVZ if installed
|
||||||
|
|
||||||
|
* Thu Aug 7 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.4.4-3.fc10
|
||||||
|
- fix license tag
|
||||||
|
|
||||||
|
* Tue Jul 8 2008 Daniel P. Berrange <berrange@redhat.com> - 0.4.4-2.fc10
|
||||||
|
- Fix booting of CDROM images with KVM (rhbz #452355)
|
||||||
|
|
||||||
|
* Wed Jun 25 2008 Daniel Veillard <veillard@redhat.com> - 0.4.4-1.fc10
|
||||||
|
- upstream release 0.4.4
|
||||||
|
- fix a few bugs in previous release
|
||||||
|
|
||||||
|
* Thu Jun 12 2008 Daniel Veillard <veillard@redhat.com> - 0.4.3-1.fc10
|
||||||
|
- upstream release 0.4.3
|
||||||
|
- many bug fixes
|
||||||
|
- many small improvements
|
||||||
|
- serious xenner fixes
|
||||||
|
|
||||||
|
* Wed Jun 4 2008 Mark McLoughlin <markmc@redhat.com> - 0.4.2-6.fc10
|
||||||
|
- Disable lokkit support again (#449996, #447633)
|
||||||
|
- Ensure %{fedora} is evaluated correctly
|
||||||
|
|
||||||
|
* Thu May 15 2008 Daniel P. Berrange <berrange@redhat.com> - 0.4.2-5.fc10
|
||||||
|
- Rebuild with policy enabled (rhbz #446616)
|
||||||
|
|
||||||
|
* Fri May 9 2008 Daniel P. Berrange <berrange@redhat.com> - 0.4.2-4.fc10
|
||||||
|
- Added directory for initrd/kernel images for SELinux policy
|
||||||
|
|
||||||
|
* Mon Apr 28 2008 Mark McLoughlin <markmc@redhat.com> - 0.4.2-3.fc10
|
||||||
|
- Simplify the way arch conditionals are handled
|
||||||
|
|
||||||
|
* Mon Apr 28 2008 Mark McLoughlin <markmc@redhat.com> - 0.4.2-2.fc10
|
||||||
|
- Enable lokkit support (#443796)
|
||||||
|
|
||||||
|
* Tue Apr 8 2008 Daniel Veillard <veillard@redhat.com> - 0.4.2-1.fc9
|
||||||
|
- upstream release 0.4.2
|
||||||
|
- many bug fixes
|
||||||
|
- localization updates
|
||||||
|
|
||||||
|
* Thu Apr 4 2008 Daniel P. Berrange <berrange@redhat.com> - 0.4.1-7.fc9
|
||||||
|
- Don't run polkit-auth as root
|
||||||
|
- Don't request polkit auth if client is root
|
||||||
|
|
||||||
|
* Fri Mar 28 2008 Chris Lalancette <clalance@redhat.com> - 0.4.1-6.fc9
|
||||||
|
- When dumping XML for a storage pool, make the <source> directory tag
|
||||||
|
match the <dir> tag used for specifying the pool in the first place
|
||||||
|
|
||||||
|
* Thu Mar 27 2008 Chris Lalancette <clalance@redhat.com> - 0.4.1-5.fc9
|
||||||
|
- Do iscsiadm sendtarget before trying to do login
|
||||||
|
- Do sysfs scanning for iSCSI LUNs instead of trying to parse them from
|
||||||
|
iscsiadm session output
|
||||||
|
|
||||||
|
* Thu Mar 13 2008 Daniel P. Berrange <berrange@redhat.com> - 0.4.1-4.fc9
|
||||||
|
- Fix QEMU tap device setup
|
||||||
|
- Fix Xen boot device XML processing
|
||||||
|
- Fixed QEMU cdrom media change
|
||||||
|
|
||||||
|
* Mon Mar 10 2008 Daniel P. Berrange <berrange@redhat.com> - 0.4.1-3.fc9
|
||||||
|
- Fixed daemon startup when run with --daemon flag
|
||||||
|
|
||||||
|
* Mon Mar 3 2008 Daniel Veillard <veillard@redhat.com> - 0.4.1-2.fc9
|
||||||
|
- 2 patches found just after the release
|
||||||
|
|
||||||
|
* Mon Mar 3 2008 Daniel Veillard <veillard@redhat.com> - 0.4.1-1.fc9
|
||||||
|
- Release of 0.4.1
|
||||||
|
- Storage APIs
|
||||||
|
- xenner support
|
||||||
|
- lots of assorted improvements, bugfixes and cleanups
|
||||||
|
- documentation and localization improvements
|
||||||
|
|
||||||
|
* Wed Feb 20 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.4.0-5
|
||||||
|
- Autorebuild for GCC 4.3
|
||||||
|
|
||||||
|
* Fri Jan 18 2008 Daniel P. Berrange <berrange@redhat.com> - 0.4.0-4.fc9
|
||||||
|
- Fix SSH tunnelling (rhbz #428743)
|
||||||
|
- Fix back-compat for nodeinfo call changes.
|
||||||
|
|
||||||
|
* Sun Jan 13 2008 Daniel P. Berrange <berrange@redhat.com> - 0.4.0-3.fc9
|
||||||
|
- Fix crash when no auth callback
|
||||||
|
|
||||||
|
* Wed Jan 2 2008 Daniel P. Berrange <berrange@redhat.com> - 0.4.0-2.fc9
|
||||||
|
- Fix reading large config files (rhbz #426425)
|
||||||
|
- Fix crash when connecting to a PolicyKit enabled server with not auth callback (rhbz #427107)
|
||||||
|
|
||||||
|
* Tue Dec 18 2007 Daniel Veillard <veillard@redhat.com> - 0.4.0-1.fc8
|
||||||
|
- 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
|
||||||
|
|
||||||
* Mon Oct 15 2007 Daniel P. Berrange <berrange@redhat.com> - 0.3.3-2.fc8
|
* Mon Oct 15 2007 Daniel P. Berrange <berrange@redhat.com> - 0.3.3-2.fc8
|
||||||
- Added QEMU driver config file support
|
- Added QEMU driver config file support
|
||||||
- Added example config files
|
- Added example config files
|
||||||
|
|||||||
35
python_make.patch
Normal file
35
python_make.patch
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
Index: python/Makefile.am
|
||||||
|
===================================================================
|
||||||
|
RCS file: /data/cvs/libxen/python/Makefile.am,v
|
||||||
|
retrieving revision 1.13
|
||||||
|
diff -u -p -r1.13 Makefile.am
|
||||||
|
--- python/Makefile.am 5 Feb 2008 19:27:37 -0000 1.13
|
||||||
|
+++ python/Makefile.am 24 Sep 2008 13:21:06 -0000
|
||||||
|
@@ -50,7 +50,7 @@ GENERATED= libvirt-export.c \
|
||||||
|
$(GENERATED): $(srcdir)/$(GENERATE) $(API_DESC)
|
||||||
|
$(PYTHON) $(srcdir)/$(GENERATE) $(srcdir)
|
||||||
|
|
||||||
|
-libvirt.py: $(srcdir)/libvir.py libvirtclass.py
|
||||||
|
+libvirt.py: $(srcdir)/libvir.py $(GENERATED)
|
||||||
|
cat $(srcdir)/libvir.py libvirtclass.py > $@-t
|
||||||
|
mv $@-t $@
|
||||||
|
|
||||||
|
*** python/Makefile.in.orig 2008-09-24 15:19:20.000000000 +0200
|
||||||
|
--- python/Makefile.in 2008-09-24 15:20:07.000000000 +0200
|
||||||
|
*************** uninstall-am: uninstall-local uninstall-
|
||||||
|
*** 1027,1033 ****
|
||||||
|
@WITH_PYTHON_TRUE@$(GENERATED): $(srcdir)/$(GENERATE) $(API_DESC)
|
||||||
|
@WITH_PYTHON_TRUE@ $(PYTHON) $(srcdir)/$(GENERATE) $(srcdir)
|
||||||
|
|
||||||
|
! @WITH_PYTHON_TRUE@libvirt.py: $(srcdir)/libvir.py libvirtclass.py
|
||||||
|
@WITH_PYTHON_TRUE@ cat $(srcdir)/libvir.py libvirtclass.py > $@-t
|
||||||
|
@WITH_PYTHON_TRUE@ mv $@-t $@
|
||||||
|
|
||||||
|
--- 1027,1033 ----
|
||||||
|
@WITH_PYTHON_TRUE@$(GENERATED): $(srcdir)/$(GENERATE) $(API_DESC)
|
||||||
|
@WITH_PYTHON_TRUE@ $(PYTHON) $(srcdir)/$(GENERATE) $(srcdir)
|
||||||
|
|
||||||
|
! @WITH_PYTHON_TRUE@libvirt.py: $(srcdir)/libvir.py $(GENERATED)
|
||||||
|
@WITH_PYTHON_TRUE@ cat $(srcdir)/libvir.py libvirtclass.py > $@-t
|
||||||
|
@WITH_PYTHON_TRUE@ mv $@-t $@
|
||||||
|
|
||||||
Reference in New Issue
Block a user