#!/bin/bash # $HeadURL$ $LastChangedRevision$ # My properties MY_ID=system_hardware_vm_virtmanager PARENT_ID=system_hardware_vm MY_PRIVATE_ATTRIBUTES="uname status" MY_PUBLIC_ATTRIBUTES= MY_ATTRIBUTES="$MY_PRIVATE_ATTRIBUTES $MY_PUBLIC_ATTRIBUTES" MY_HELPER_IDS= # My attributes for MY_ATTRIBUTE in ${MY_ATTRIBUTES^^}; do eval "$MY_ATTRIBUTE="; done # Defaults for the questions we ask (should only used here) # Hooks #edit_prologue() #{ # : #} create_prologue() { # my attributes inherit ${MY_ATTRIBUTES^^} # my inherited attributes that i'll use debug 10 "create_prologue: DISK=$DISK, RAM=$RAM, CPU=$CPU, ENGINE=$ENGINE, MACADDR=$MACADDR" inherit DISK RAM CPU ENGINE MACADDR # globals : # real locals local CMDLINE warning "use virt-manager to create the VM, with the following specs:" warning " Name: $UNAME" warning " Connection: you decide!" if [ $BOOTMEDIA = net ]; then warning " Installation method: Network Boot (PXE)" else warning " Installation method: Local install media (ISO image or CDROM)" fi warning " OS type: Linux" warning " Version: Debian Wheezy" warning " Memory (RAM): ${RAM}MB" warning " CPUs: $CPU" warning " Storage creation/selection: you decide!" warning " Storage volume size: ${DISK}GB" warning " Customise configuration before install: yes" warning " Advanced options/Host device: br0" warning " Advanced options/MAC address: $MACADDR" warning " Advanced options/Virt Type: $ENGINE" if [ $ARCH = amd64 ]; then warning " Advanced options/Architecture: x86_64" else warning " Advanced options/Architecture: $ARCH" fi if $HVM_FLAG; then warning " Hardware/Disk 1: IDE" warning " Hardware/NIC ${MACADDR:9}: rtl8139" warning " Hardware/Mouse: PS/2 Mouse" warning " Hardware/Display 0: VNC Server" warning " Hardware/Sound: ac97" warning " Hardware/Console: " warning " Hardware/Video: cirrus" elif [ $BOOTMEDIA = net ]; then warning " Hardware/Disk 1/Advanced options/Disk bus: Virtio" warning " Hardware/NIC ${MACADDR:9}: virtio" warning " Hardware/Mouse: (removed automatically later)" warning " Hardware/Display 0: " warning " Hardware/Sound: " warning " Hardware/Console: pty" warning " Hardware/Video: " # With a PV booting from CD, there is no change to set the kernel # command line unless we have a normal video console (which can be # removed later). else warning " Hardware/Disk 1: VirtIO" warning " Hardware/NIC ${MACADDR:9}: virtio" warning " Hardware/Mouse: PS/2 Mouse (removed manally later)" warning " Hardware/Display 0: VNC Server (removed manally later)" warning " Hardware/Sound: " warning " Hardware/Console: pty" warning " Hardware/Video: cirrus (removed manally later)" fi } list_prologue() { echo "VMs being installed with virt-manager" echo "=====================================" echo # This line is *exactly* the line that is in the generic-helper's # list_prologue(). We only overloaded here because we wanted to # change the header. $SQLITE_CMD $DB_FILE "select uname from attribute_values where helper == '$MY_ID' and attribute == 'status' and value == 'installing';" echo } delete_prologue() { # Don't delete repo configs if installation completed successfully. [ "X$RELEASER_FLAG" != Xtrue ] || return 0 warning "use virt-manager to delete the VM" } # Support functions