diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2024-06-19 17:04:01 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2024-06-19 17:04:01 -0300 |
commit | daf9696753a3f15c5bd01077813b967f9c7d535a (patch) | |
tree | 1290059eee3a1bb81c202b11833b3c88fbfb017d | |
parent | 17932fee920857ef8c87c1116b95468886374cba (diff) | |
download | kvmx-daf9696753a3f15c5bd01077813b967f9c7d535a.tar.gz kvmx-daf9696753a3f15c5bd01077813b967f9c7d535a.tar.bz2 |
Fix: hostname: fallback to the guest name
-rwxr-xr-x | kvmx | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -125,8 +125,8 @@ function __kvmx_initialize { # Load the default config, providing defaults source $APP_BASE/kvmxfile || exit 1 - # Set hostname (this is already done with the default config) - #hostname="${hostname:-$VM}" + # Set hostname + hostname="${hostname:-$VM}" # Set domain (this is already done with the default config) #domain="${domain:-example.org}" |