diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2017-04-01 18:40:29 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2017-04-01 18:40:29 -0300 |
commit | c0a41d4c63458d2e04beebf332689ffc3c045ec4 (patch) | |
tree | 1005d9d6ec26e8f24b699e4f75ed2534c0805e40 /kvmxfile | |
parent | 34d244ea3d93e9d6912aa6dac472f10791f883b7 (diff) | |
download | debian-c0a41d4c63458d2e04beebf332689ffc3c045ec4.tar.gz debian-c0a41d4c63458d2e04beebf332689ffc3c045ec4.tar.bz2 |
Updates kvmxfile
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" |