diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2017-03-09 19:04:24 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2017-03-09 19:04:24 -0300 |
commit | 1cddbe0234efe158b6c05f21d742eb9489887cc4 (patch) | |
tree | e40bab6faf590e6d22e7b2360904155bbb0cef58 /kvmxfile | |
parent | 65f7ac258a41402bb9b00c87af621a65dfbfa6e0 (diff) | |
download | kvmx-1cddbe0234efe158b6c05f21d742eb9489887cc4.tar.gz kvmx-1cddbe0234efe158b6c05f21d742eb9489887cc4.tar.bz2 |
Project revamp: full workflow
Diffstat (limited to 'kvmxfile')
-rw-r--r-- | kvmxfile | 50 |
1 files changed, 48 insertions, 2 deletions
@@ -1,2 +1,48 @@ -HEADLESS="0" -BASEBOX="stretch" +# +# Sample kvmx file +# + +# Which base box you should use. +# If none is set, kvmx will bootstrap one for you. +#basebox="stretch" + +# Absolute or relative path for a provision script. +#provision_script="default" + +# Set this is you want to be able to share folders between host and guest. +#shared_folder="." +#shared_folder_mountpoint="/media/shared" + +# Set this if you want to automatically attach an spice client when the machine +# boots. +run_spice_client="1" + +# Set host_port-:guest_port mapping pairs. +#port_mapping="8080-:80,8443-:443" + +# Where the guest image is stored +image="$HOME/.local/share/kvmx/$VM/box.img" + +# Image size +size="10G" + +# Image format: raw or qcow2 +format="qcow2" + +# Bootstrap method: custom or vmdeboostrap +method="custom" + +# Hostname +hostname="machine" + +# Domain +domain="example.org" + +# System arch +arch="amd64" + +# Box distribution when bootstraping a new image +version="stretch" + +# Debian mirror +mirror="http://http.debian.net/debian/" |