diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2017-03-29 22:01:25 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2017-03-29 22:01:25 -0300 |
commit | 3e675f63676e2a0a7e3e9b787d38a926685c9a04 (patch) | |
tree | 94aab76bebc8a6ed4262279141596373f9371f49 | |
parent | 01c14daaf7fc7251a6936b2d07de910cb188dee9 (diff) | |
download | kvmx-3e675f63676e2a0a7e3e9b787d38a926685c9a04.tar.gz kvmx-3e675f63676e2a0a7e3e9b787d38a926685c9a04.tar.bz2 |
Adds user and password defaults into kvmxfile
-rw-r--r-- | kvmxfile | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -5,9 +5,15 @@ # 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" +shared_folder_mountpoint="/home/$user/code/$VM" # Folder to sync during provisioning in the format "/host/folder /guest/folder". #provision_rsync="$KVMX_BASE/share/provision/ /usr/local/share/kvmx/provision/" |