We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18af393 commit b11599dCopy full SHA for b11599d
2 files changed
lib/kitchen/driver/vmm_version.rb
@@ -2,6 +2,6 @@
2
3
module Kitchen
4
module Driver
5
- VMM_VERSION = '0.1.1'
+ VMM_VERSION = '0.1.2'
6
end
7
support/import_vm.ps1
@@ -139,7 +139,7 @@ $script_block = {
139
}
140
141
$fqdn = $vm.ComputerNameString
142
- if ( ! $fqdn.contains($domain_name) )
+ if ( $domain_name -and ! $fqdn.contains(".") -and ! $fqdn.contains($domain_name) )
143
{
144
# Linux machines do not always set domain name propery for example
145
$fqdn = "$fqdn.$domain_name"
0 commit comments