From 9be42d2996fd6acd34b1bda8a4245d3aa7544135 Mon Sep 17 00:00:00 2001 From: Thomas Hipp Date: Fri, 1 Dec 2017 13:29:00 +0100 Subject: support local cdroms Local cdroms can now be added directly to the domain. See the following example: ```hcl resource "libvirt_domain" "test-domain" { name = "test" disk { file = "path/to/file.iso" } } ``` Furthermore, a small Tiny Core Linux (TCL) ISO image has been added to the testdata. This can be used for testing purposes. Signed-off-by: Thomas Hipp --- travis/setup-guest | 3 +++ 1 file changed, 3 insertions(+) (limited to 'travis') diff --git a/travis/setup-guest b/travis/setup-guest index 42568e81..0a671b2f 100755 --- a/travis/setup-guest +++ b/travis/setup-guest @@ -20,3 +20,6 @@ mkdir /pool-default chmod a+rwx /pool-default virsh pool-define pool.xml virsh pool-start default +echo -e 'user = "root"\ngroup = "root"' >> /etc/libvirt/qemu.conf +systemctl restart libvirtd + -- cgit v1.2.3