summaryrefslogtreecommitdiffstats
path: root/libraries/libvirt/README
diff options
context:
space:
mode:
author ponce <matteo.bernardini@gmail.com>2012-07-30 13:21:07 +0200
committer Robby Workman <rworkman@slackbuilds.org>2012-08-21 08:55:34 -0500
commitbc9e450e41d394a8dfc88fd74cda3bee7f0b11b5 (patch)
tree7a96daf8a5b566715bf40fda9e8e8425a26a83a7 /libraries/libvirt/README
parenta951d7375f4587879607e5ec6c1beda13478a3d0 (diff)
downloadslackbuilds-bc9e450e41d394a8dfc88fd74cda3bee7f0b11b5.tar.gz
slackbuilds-bc9e450e41d394a8dfc88fd74cda3bee7f0b11b5.tar.xz
libraries/libvirt: Updated for version 0.9.13.
This commit also adds some configure options parameters (disabled debug too), some details in the README, and an rc.libvirt init script... Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'libraries/libvirt/README')
-rw-r--r--libraries/libvirt/README18
1 files changed, 18 insertions, 0 deletions
diff --git a/libraries/libvirt/README b/libraries/libvirt/README
index efc0370908..fe57c5e7bd 100644
--- a/libraries/libvirt/README
+++ b/libraries/libvirt/README
@@ -2,3 +2,21 @@ libvirt - The virtualization API
libvirt is a toolkit to interact with the virtualization
capabilities of recent versions of Linux (and other OSes).
+
+You can enable other optional (not-autodetected) features
+by passing variables to the script
+(VAR=yes|no ./libvirt.SlackBuild):
+VIRTGROUP=somegroup (default: users) qemu group used
+XEN=yes|no (default: no) Xen support
+OPENVZ=yes|no (default: no) OpenVZ support
+VMWARE=yes|no (default: no) VMware support
+ESX=yes|no (default: no) ESX support
+VBOX=yes|no (default: no) VirtualBox support
+
+If you want to start the libvirt daemon at boot, add this
+to /etc/rc.d/rc.local
+
+# Start libvirt:
+if [ -x /etc/rc.d/rc.libvirt ]; then
+ /etc/rc.d/rc.libvirt start
+fi