#!/bin/bash # This script expects the following to be installed: # curl, libguestfs-tools-c IMAGE_URL=http://archive.fedoraproject.org/pub/fedora/linux/releases/21/Cloud/Images/x86_64 IMAGE=Fedora-Cloud-Base-20141203-21.x86_64.qcow2 TARGET_DIR=/var/lib/libvirt/images TARGET=fedora-21-x86_64 if ! [ -f "$IMAGE" ]; then echo "Downloading $IMAGE" curl -L -O $IMAGE_URL/$IMAGE fi echo "Copying $IMAGE to $TARGET" cp "$IMAGE" $TARGET_DIR/$TARGET virt-customize \ --add $TARGET_DIR/$TARGET \ --run-command "cat > /etc/sysconfig/network-scripts/ifcfg-eth1 <