You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@vcl.apache.org by fa...@apache.org on 2016/09/02 19:51:00 UTC

svn commit: r1759025 - /vcl/trunk/managementnode/lib/VCL/Module/Provisioning/libvirt.pm

Author: fapeeler
Date: Fri Sep  2 19:51:00 2016
New Revision: 1759025

URL: http://svn.apache.org/viewvc?rev=1759025&view=rev
Log:
VCL-988

replaced : with __ in the domain name. This matches what Josh was using in local sandbox to fix the issue.
Thanks Josh



Modified:
    vcl/trunk/managementnode/lib/VCL/Module/Provisioning/libvirt.pm

Modified: vcl/trunk/managementnode/lib/VCL/Module/Provisioning/libvirt.pm
URL: http://svn.apache.org/viewvc/vcl/trunk/managementnode/lib/VCL/Module/Provisioning/libvirt.pm?rev=1759025&r1=1759024&r2=1759025&view=diff
==============================================================================
--- vcl/trunk/managementnode/lib/VCL/Module/Provisioning/libvirt.pm (original)
+++ vcl/trunk/managementnode/lib/VCL/Module/Provisioning/libvirt.pm Fri Sep  2 19:51:00 2016
@@ -974,7 +974,7 @@ sub get_domain_name {
 	# Request state is not image, construct the domain name
 	my $image_name = $self->data->get_image_name();
 	
-	$self->{domain_name} = "$computer_short_name:$image_name";
+	$self->{domain_name} = "${computer_short_name}__$image_name";
 	notify($ERRORS{'DEBUG'}, 0, "constructed domain name: '$self->{domain_name}'");
 	return $self->{domain_name};
 }