diff options
Diffstat (limited to 'kvmxfile')
-rw-r--r-- | kvmxfile | 22 |
1 files changed, 22 insertions, 0 deletions
@@ -5,6 +5,12 @@ # Which base box you should use. Leave unconfigured to use kvmx-create instead. basebox="stretch" +# First user name +user="user" + +# First user password +password="$RANDOM" + # Set this is you want to be able to share folders between host and guest. shared_folder="." shared_folder_mountpoint="/home/user/code/$VM" @@ -48,3 +54,19 @@ version="stretch" # Debian mirror mirror="http://http.debian.net/debian/" + +# Enables remote administration using SSH. With this configuration enabled, +# kvmx will be able to administer a running virtual machine using SSH access +# inside the virtual machine. +ssh_support="y" + +# Use a custom, per-virtual-machine generated SSH keypair. If you disable this +# configuration but still want guest administration using SSH, the default +# insecure keypair will be used. +# +# Please note that this setting won't take effect if you're using a basebox. +# In that case the basebox keypair will be used if it exists, otherwise kvmx +# fallsback to the default insecure keypair. +# +# This setting is used during virtual machine bootstrapping by kvmx-create. +ssh_custom="y" |