<div dir="ltr">You may be able to add the windows script using the files section of the context.</div><div class="gmail_extra"><br><br><div class="gmail_quote">On Thu, Oct 24, 2013 at 12:36 PM, André Monteiro <span dir="ltr"><<a href="mailto:andre.monteir@gmail.com" target="_blank">andre.monteir@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div>Hi Javier,</div><div> </div><div>I think the addons idea is excellent and will envolve the community more in the ONE ecosystem.</div>
<div>Regarding the Windows contextualization, I was wondering how you want to integrate this. Do you think it should be in the template creation like the image or in another way?</div>

<div> </div><div><img width="791" height="414" alt="Inline image 1" src="cid:ii_141ea0943aa75d9b"></div><div> </div><div>Regards,</div><div> </div></div><div class="gmail_extra"><br clear="all"><div><br>--<br>André Monteiro<br>


<br></div><div><div class="h5">
<br><br><div class="gmail_quote">On Thu, Oct 24, 2013 at 11:24 AM, Javier Fontan <span dir="ltr"><<a href="mailto:jfontan@opennebula.org" target="_blank">jfontan@opennebula.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">


Hi,<br>
<br>
You may have noticed the new addons way of contributing [1]. These<br>
context packages are perfect for this way of development.<br>
<br>
What do you think?<br>
<br>
Cheers<br>
<br>
[1] <a href="http://opennebula.org/software:add-ons" target="_blank">http://opennebula.org/software:add-ons</a><br>
<br>
On Thu, Oct 24, 2013 at 8:31 AM, Martin Alfke <<a href="mailto:tuxmea@gmail.com" target="_blank">tuxmea@gmail.com</a>> wrote:<br>
> Hi Michael,<br>
><br>
> we did not modify context.sh.<br>
><br>
> We only have patched the one-context.ps1 script as described in one of my last emails:<br>
><br>
> This its he important thing you have to change:<br>
>  "(.+)='(.+)'" {<br>
><br>
> I have attached the diff as separate file.<br>
><br>
> hth,<br>
><br>
> Martin<br>
><br>
><br>
> On Oct 23, 2013, at 5:28 PM, Michael Curran <<a href="mailto:michael.curran@connectsolutions.com" target="_blank">michael.curran@connectsolutions.com</a>> wrote:<br>
><br>
>> Martin -- have you made any changes to the context.sh that is created?<br>
>><br>
>> When I leave the default context.sh (and I modified the one-context.ps1 to only spit out variables) as default from opennebula -- it looks like this<br>
>><br>
>> ETH0_DNS='10.7.6.21'<br>
>> ETH0_GATEWAY='10.7.0.1'<br>
>> ETH0_IP='10.7.3.243'<br>
>> ETH0_MASK='255.255.248.0'<br>
>> USERNAME='testing'<br>
>> HOSTNAME='test1-vm'<br>
>><br>
>> And this is the output of the one-context.ps1 script I am putting at the bottom of this email<br>
>><br>
>> PS C:\cygwin\home\mcurran\context_testing> .\one-context.ps1<br>
>> Windows username is<br>
>> HOSTNAME is<br>
>> IP address is  , NETMASK is  , GATEWAY is  , DNS is<br>
>><br>
>> When I modify the context.sh to use double-quotes around the variables, instead of the single quotes shown above,  this is my output<br>
>><br>
>> PS C:\cygwin\home\mcurran\context_testing> .\one-context.ps1<br>
>> Windows username is testing<br>
>> HOSTNAME is test1-vm<br>
>> IP address is 10.7.3.243 , NETMASK is 255.255.248.0 , GATEWAY is 10.7.0.1 , DNS is 10.7.6.21<br>
>><br>
>><br>
>> #################################################################<br>
>> ##### Windows Powershell Script to configure OpenNebula VMs #####<br>
>> #####   Created by <a href="mailto:andremonteiro@ua.pt" target="_blank">andremonteiro@ua.pt</a> and <a href="mailto:tsbatista@ua.pt" target="_blank">tsbatista@ua.pt</a>  #####<br>
>> #####        DETI/IEETA Universidade de Aveiro 2011         #####<br>
>> #################################################################<br>
>><br>
>> Set-ExecutionPolicy unrestricted -force # not needed if already done once on the VM<br>
>> [string]$computerName = "$env:computername"<br>
>> [string]$ConnectionString = "WinNT://$computerName"<br>
>><br>
>> function getContext($file) {<br>
>>        $context = @{}<br>
>>        switch -regex -file $file {<br>
>>                '(.+)="(.+)"' {<br>
>>                        $name,$value = $matches[1..2]<br>
>>                        $context[$name] = $value<br>
>>                }<br>
>>        }<br>
>>        return $context<br>
>> }<br>
>><br>
>> function addLocalUser($context) {<br>
>>    # Create new user<br>
>>        $username =  $context["USERNAME"]<br>
>>               write-host "Windows username is $($username)"<br>
>> }<br>
>><br>
>><br>
>> function configureNetwork($context) {<br>
>>    # Print IP address data<br>
>>               $dns = $context["ETH0_DNS"]<br>
>>               $gateway = $context["ETH0_GATEWAY"]<br>
>>               $ip = $context["ETH0_IP"]<br>
>>               $netmask = $context["ETH0_MASK"]<br>
>>               write-host "IP address is $($ip) , NETMASK is $($netmask) , GATEWAY is $($gateway) , DNS is $($dns)"<br>
>> }<br>
>><br>
>> function renameComputer($context) {<br>
>>       # Print new hostname<br>
>>               $hostname = $context["HOSTNAME"]<br>
>>               write-host "HOSTNAME is $($hostname)"<br>
>>   }<br>
>><br>
>>   # If folder context doesn't exist create it<br>
>> if (-not (Test-Path "c:\cygwin\home\mcurran\context\")) {<br>
>>    New-Item "C:\cygwin\home\mcurran\context\" -type directory<br>
>>    }<br>
>><br>
>> # Execute script<br>
>> if( -not(Test-Path "c:\cygwin\home\mcurran\context\contextualized") -and (Test-Path "C:\cygwin\home\mcurran\context_testing\context.sh")) {<br>
>>    $context = @{}<br>
>>    $context = getContext('C:\cygwin\home\mcurran\context_testing\context.sh')<br>
>>    addLocalUser($context)<br>
>>    renameComputer($context)<br>
>>    configureNetwork($context)<br>
>>    echo "contextualized" |Out-File ("c:\cygwin\home\mcurran\context\contextualized")<br>
>> }<br>
>><br>
>><br>
>> Michael Curran | connectsolutions | Lead Network Architect<br>
>> Phone <a href="tel:614.568.2285" value="+16145682285" target="_blank">614.568.2285</a> | Mobile <a href="tel:614.403.6320" value="+16144036320" target="_blank">614.403.6320</a> | <a href="http://www.connectsolutions.com" target="_blank">www.connectsolutions.com</a><br>



>><br>
>> -----Original Message-----<br>
>> From: Martin Alfke [mailto:<a href="mailto:tuxmea@gmail.com" target="_blank">tuxmea@gmail.com</a>]<br>
>> Sent: Tuesday, October 22, 2013 3:00 AM<br>
>> To: Michael Curran<br>
>> Cc: users<br>
>> Subject: Re: [one-users] OpenNebula 4.4(?)<br>
>><br>
>> Hi Michael,<br>
>><br>
>> we use the same one-context.ps1 file for Win7 Professional and Win8 Professional.<br>
>> Win7 has PowerShell V2, Win8 has PowerShell V3.<br>
>><br>
>> - Martin<br>
>><br>
>> On Oct 21, 2013, at 8:25 PM, Michael Curran <<a href="mailto:michael.curran@connectsolutions.com" target="_blank">michael.curran@connectsolutions.com</a>> wrote:<br>
>><br>
>>> That should way win2k8 R2 -- :)<br>
>>><br>
>>> Michael Curran | connectsolutions | Lead Network Architect Phone<br>
>>> <a href="tel:614.568.2285" value="+16145682285" target="_blank">614.568.2285</a> | Mobile <a href="tel:614.403.6320" value="+16144036320" target="_blank">614.403.6320</a> | <a href="http://www.connectsolutions.com" target="_blank">www.connectsolutions.com</a><br>



>>><br>
>>> -----Original Message-----<br>
>>> From: <a href="mailto:users-bounces@lists.opennebula.org" target="_blank">users-bounces@lists.opennebula.org</a><br>
>>> [mailto:<a href="mailto:users-bounces@lists.opennebula.org" target="_blank">users-bounces@lists.opennebula.org</a>] On Behalf Of Michael<br>
>>> Curran<br>
>>> Sent: Monday, October 21, 2013 2:02 PM<br>
>>> To: Martin Alfke<br>
>>> Cc: users<br>
>>> Subject: Re: [one-users] OpenNebula 4.4(?)<br>
>>><br>
>>> Strange -- I updated to PS3 , and when I run their scripts in win2k7<br>
>>> r2 -- it states clearly it doenst understand the variables --<br>
>>><br>
>>> Could it be a difference between windows versions?<br>
>>><br>
>>> Michael Curran | connectsolutions | Lead Network Architect Phone<br>
>>> 614.568.2285 | Mobile 614.403.6320 | <a href="http://www.connectsolutions.com" target="_blank">www.connectsolutions.com</a><br>
>>><br>
>>> -----Original Message-----<br>
>>> From: Martin Alfke [mailto:<a href="mailto:tuxmea@gmail.com" target="_blank">tuxmea@gmail.com</a>]<br>
>>> Sent: Monday, October 21, 2013 11:59 AM<br>
>>> To: Michael Curran<br>
>>> Cc: Tino Vazquez; users<br>
>>> Subject: Re: [one-users] OpenNebula 4.4(?)<br>
>>><br>
>>> Hi Michael,<br>
>>><br>
>>> we did no changes to context.sh<br>
>>> We only enable contextualisation and use the WIn startup and<br>
>>> powershell wrapper script from <a href="http://ieeta.pt" target="_blank">ieeta.pt</a><br>
>>><br>
>>> This is the context.sh from a Win8 VM (I modified the HOSTNAME to make it public):<br>
>>><br>
>>> # Context variables generated by OpenNebula DISK_ID='1'<br>
>>> ETH0_DNS='10.175.4.11 10.175.4.12'<br>
>>> ETH0_GATEWAY='10.175.16.1'<br>
>>> ETH0_IP='10.175.24.28'<br>
>>> ETH0_MASK='255.255.240.0'<br>
>>> ETH0_NETWORK='10.175.16.0'<br>
>>> FILES_DS='/var/lib/one/datastores/2/6d59d36aaac67c69f1ceb0ce48ad9e30:'\''SetupCompleteWin8.cmd'\'' /var/lib/one/datastores/2/036c86e3eb2ba86910c5494471ff743d:'\''startupWin8.vbs'\'' /var/lib/one/datastores/2/d1abbf10eda3863726d9911df4d0868c:'\''one-contextWin8.ps1'\'' '<br>



>>> HOSTNAME='<a href="http://win8martin.domain.com" target="_blank">win8martin.domain.com</a>'<br>
>>> NETWORK='YES'<br>
>>> TARGET='hdb'<br>
>>><br>
>>> Note: our Linux systems are running in english only.<br>
>>><br>
>>> - Martin<br>
>>><br>
>>><br>
>>> On Oct 21, 2013, at 5:46 PM, Michael Curran <<a href="mailto:michael.curran@connectsolutions.com" target="_blank">michael.curran@connectsolutions.com</a>> wrote:<br>
>>><br>
>>>> Very helpful data Martin -- but the problem I ran into was that the context.sh was created with single quotes and even PS3 couldn't read the variables unless they were in double quotes -- how did you get past that problem?<br>



>>>><br>
>>>> Michael Curran | connectsolutions | Lead Network Architect Phone<br>
>>>> <a href="tel:614.568.2285" value="+16145682285" target="_blank">614.568.2285</a> | Mobile <a href="tel:614.403.6320" value="+16144036320" target="_blank">614.403.6320</a> | <a href="http://www.connectsolutions.com" target="_blank">www.connectsolutions.com</a><br>



>>>><br>
>>>> -----Original Message-----<br>
>>>> From: <a href="mailto:users-bounces@lists.opennebula.org" target="_blank">users-bounces@lists.opennebula.org</a><br>
>>>> [mailto:<a href="mailto:users-bounces@lists.opennebula.org" target="_blank">users-bounces@lists.opennebula.org</a>] On Behalf Of Tino Vazquez<br>
>>>> Sent: Monday, October 21, 2013 6:35 AM<br>
>>>> To: Martin Alfke<br>
>>>> Cc: users<br>
>>>> Subject: Re: [one-users] OpenNebula 4.4(?)<br>
>>>><br>
>>>> Hi Martin,<br>
>>>><br>
>>>> Indeed, this is very helpful.<br>
>>>><br>
>>>> We've opened a feature request [1] to include windows guest contextualization support in OpenNebula.<br>
>>>><br>
>>>> Thanks a lot for your feedback,<br>
>>>><br>
>>>> -Tino<br>
>>>><br>
>>>> [1] <a href="http://dev.opennebula.org/issues/2395" target="_blank">http://dev.opennebula.org/issues/2395</a><br>
>>>> --<br>
>>>> OpenNebula - Flexible Enterprise Cloud Made Simple<br>
>>>><br>
>>>> --<br>
>>>> Constantino Vázquez Blanco, PhD, MSc<br>
>>>> Senior Infrastructure Architect at C12G Labs <a href="http://www.c12g.com" target="_blank">www.c12g.com</a> | @C12G |<br>
>>>> <a href="http://es.linkedin.com/in/tinova" target="_blank">es.linkedin.com/in/tinova</a><br>
>>>><br>
>>>> --<br>
>>>> Confidentiality Warning: The information contained in this e-mail and any accompanying documents, unless otherwise expressly indicated, is confidential and privileged, and is intended solely for the person and/or entity to whom it is addressed (i.e. those identified in the "To" and "cc" box). They are the property of C12G Labs S.L..<br>



>>>> Unauthorized distribution, review, use, disclosure, or copying of this communication, or any part thereof, is strictly prohibited and may be unlawful. If you have received this e-mail in error, please notify us immediately by e-mail at <a href="mailto:abuse@c12g.com" target="_blank">abuse@c12g.com</a> and delete the e-mail and attachments and any copy from your system. C12G thanks you for your cooperation.<br>



>>>><br>
>>>><br>
>>>> On Mon, Oct 21, 2013 at 8:49 AM, Martin Alfke <<a href="mailto:tuxmea@gmail.com" target="_blank">tuxmea@gmail.com</a>> wrote:<br>
>>>>> Hi,<br>
>>>>><br>
>>>>> we used the contextualisation from<br>
>>>>> <a href="http://wiki.ieeta.pt/wiki/index.php/OpenNebula#Using_Windows_Images_" target="_blank">http://wiki.ieeta.pt/wiki/index.php/OpenNebula#Using_Windows_Images_</a><br>
>>>>> f o r_new_Virtual_Machines (which is also linked at the OpenNebula<br>
>>>>> Wiki) and did some minor changes.<br>
>>>>><br>
>>>>> We only assign IP address, hostname and enable RDP Hostname is set<br>
>>>>> as contextualisation variable: HOSTNAME = $name (We use the VM name<br>
>>>>> as fqdn).<br>
>>>>><br>
>>>>> We now only miss setting the DNS according to contextualisation (we need to split the variable into an array).<br>
>>>>><br>
>>>>><br>
>>>>> This is the diff to the one_context.ps1 file:<br>
>>>>><br>
>>>>> --- one-context_orig.ps1        2013-10-21 08:43:14.000000000 +0200<br>
>>>>> +++ one-contextWin8.ps1 2013-10-18 14:35:34.000000000 +0200<br>
>>>>> @@ -4,14 +4,14 @@<br>
>>>>> #####        DETI/IEETA Universidade de Aveiro 2011         #####<br>
>>>>> #################################################################<br>
>>>>><br>
>>>>> -Set-ExecutionPolicy unrestricted -force # not needed if already<br>
>>>>> done once on the VM<br>
>>>>> +Set-ExecutionPolicy Unrestricted -force # not needed if already<br>
>>>>> +done once on the VM<br>
>>>>> [string]$computerName = "$env:computername"<br>
>>>>> [string]$ConnectionString = "WinNT://$computerName"<br>
>>>>><br>
>>>>> function getContext($file) {<br>
>>>>>   $context = @{}<br>
>>>>>   switch -regex -file $file {<br>
>>>>> -        '(.+)="(.+)"' {<br>
>>>>> +        "(.+)='(.+)'" {<br>
>>>>>           $name,$value = $matches[1..2]<br>
>>>>>           $context[$name] = $value<br>
>>>>>       }<br>
>>>>> @@ -77,13 +77,14 @@<br>
>>>>> function configureNetwork($context) {<br>
>>>>>   $Nics = Get-WMIObject Win32_NetworkAdapterConfiguration | where {$_.IPEnabled -eq "TRUE" -and ($_.MACAddress)}<br>
>>>>>   foreach ($nic in $Nics) {<br>
>>>>> -        [String]$mac = $nic.MACAddress<br>
>>>>> -        [String]$ip = getIp($mac)<br>
>>>>> -        [String]$gw = getGateway($mac)<br>
>>>>> +        [String]$ip = $context["ETH0_IP"]<br>
>>>>> +        [String]$gw = $context["ETH0_GATEWAY"]<br>
>>>>> +        [String]$mask = $context["ETH0_MASK"]<br>
>>>>>       $nic.ReleaseDHCPLease()<br>
>>>>> -        $nic.EnableStatic($ip , "255.255.255.0")<br>
>>>>> +        $nic.EnableStatic($ip , $mask)<br>
>>>>>       $nic.SetGateways($gw)<br>
>>>>> -        $DNSServers = "193.136.172.20", "193.136.171.21"<br>
>>>>> +        $DNSServers = "10.175.4.11", "10.175.4.12"<br>
>>>>> +        # $DNSServers = $context["ETH0_DNS"]<br>
>>>>>       $nic.SetDNSServerSearchOrder($DNSServers)<br>
>>>>>       $nic.SetDynamicDNSRegistration("TRUE")<br>
>>>>>       $nic.SetWINSServer($DNSServers[0], $DNSServers[1]) @@ -91,8<br>
>>>>> +92,10 @@  }<br>
>>>>><br>
>>>>> function renameComputer($context) {<br>
>>>>> -    $ComputerInfo = Get-WmiObject -Class Win32_ComputerSystem<br>
>>>>> -    $ComputerInfo.rename($context["HOSTNAME"])<br>
>>>>> +    $fullName = $context["HOSTNAME"]<br>
>>>>> +    $computerName = $fullName.Split(".")[0]<br>
>>>>> +    $computerInfo = Get-WmiObject -Class Win32_ComputerSystem<br>
>>>>> +    $computerInfo.rename($computerName)<br>
>>>>> }<br>
>>>>><br>
>>>>> function enableRemoteDesktop()<br>
>>>>><br>
>>>>> hth,<br>
>>>>><br>
>>>>> Martin<br>
>>>>><br>
>>>>> On Oct 18, 2013, at 4:18 PM, Tino Vazquez <<a href="mailto:cvazquez@c12g.com" target="_blank">cvazquez@c12g.com</a>> wrote:<br>
>>>>><br>
>>>>>> Hi Martin,<br>
>>>>>><br>
>>>>>> That sounds great. Did you extend the ecosystem windows<br>
>>>>>> contextualization contribution, or is it something custom made from<br>
>>>>>> scratch?<br>
>>>>>><br>
>>>>>> Regards,<br>
>>>>>><br>
>>>>>> -Tino<br>
>>>>>> --<br>
>>>>>> OpenNebula - Flexible Enterprise Cloud Made Simple<br>
>>>>>><br>
>>>>>> --<br>
>>>>>> Constantino Vázquez Blanco, PhD, MSc Senior Infrastructure<br>
>>>>>> Architect at C12G Labs <a href="http://www.c12g.com" target="_blank">www.c12g.com</a> | @C12G |<br>
>>>>>> <a href="http://es.linkedin.com/in/tinova" target="_blank">es.linkedin.com/in/tinova</a><br>
>>>>>><br>
>>>>>> --<br>
>>>>>> Confidentiality Warning: The information contained in this e-mail<br>
>>>>>> and any accompanying documents, unless otherwise expressly<br>
>>>>>> indicated, is confidential and privileged, and is intended solely<br>
>>>>>> for the person and/or entity to whom it is addressed (i.e. those<br>
>>>>>> identified in the "To" and "cc" box). They are the property of C12G Labs S.L..<br>
>>>>>> Unauthorized distribution, review, use, disclosure, or copying of<br>
>>>>>> this communication, or any part thereof, is strictly prohibited and<br>
>>>>>> may be unlawful. If you have received this e-mail in error, please<br>
>>>>>> notify us immediately by e-mail at <a href="mailto:abuse@c12g.com" target="_blank">abuse@c12g.com</a> and delete the<br>
>>>>>> e-mail and attachments and any copy from your system. C12G thanks<br>
>>>>>> you for your cooperation.<br>
>>>>>><br>
>>>>>><br>
>>>>>> On Fri, Oct 18, 2013 at 3:40 PM, Martin Alfke <<a href="mailto:tuxmea@gmail.com" target="_blank">tuxmea@gmail.com</a>> wrote:<br>
>>>>>>> Hi Tino,<br>
>>>>>>><br>
>>>>>>> many thanks for the update.<br>
>>>>>>><br>
>>>>>>> @Michael:<br>
>>>>>>><br>
>>>>>>> we run ONE 4.2 using Windows contextualisation without troubles (Network settings and RDP enabling) for Win7 and Win8.<br>
>>>>>>><br>
>>>>>>> Kind regards,<br>
>>>>>>><br>
>>>>>>> Martin<br>
>>>>>>><br>
>>>>>>><br>
>>>>>>> On Oct 18, 2013, at 11:05 AM, Tino Vazquez <<a href="mailto:cvazquez@c12g.com" target="_blank">cvazquez@c12g.com</a>> wrote:<br>
>>>>>>><br>
>>>>>>>> Hi Michael,<br>
>>>>>>>><br>
>>>>>>>> The beta version of OpenNebula 4.4 is due in one week. The single<br>
>>>>>>>> quote issue would be resolved (we would love to hear your<br>
>>>>>>>> feedback on this as soon as it is out), RbVmomi in place and<br>
>>>>>>>> multiple system ds support.<br>
>>>>>>>><br>
>>>>>>>> We would appreciate it if you could elaborate a bit more on your<br>
>>>>>>>> plans regarding windows contextualization.<br>
>>>>>>>><br>
>>>>>>>> Best,<br>
>>>>>>>><br>
>>>>>>>> -Tino<br>
>>>>>>>> --<br>
>>>>>>>> OpenNebula - Flexible Enterprise Cloud Made Simple<br>
>>>>>>>><br>
>>>>>>>> --<br>
>>>>>>>> Constantino Vázquez Blanco, PhD, MSc Senior Infrastructure<br>
>>>>>>>> Architect at C12G Labs <a href="http://www.c12g.com" target="_blank">www.c12g.com</a> | @C12G |<br>
>>>>>>>> <a href="http://es.linkedin.com/in/tinova" target="_blank">es.linkedin.com/in/tinova</a><br>
>>>>>>>><br>
>>>>>>>> --<br>
>>>>>>>> Confidentiality Warning: The information contained in this e-mail<br>
>>>>>>>> and any accompanying documents, unless otherwise expressly<br>
>>>>>>>> indicated, is confidential and privileged, and is intended solely<br>
>>>>>>>> for the person and/or entity to whom it is addressed (i.e. those<br>
>>>>>>>> identified in the "To" and "cc" box). They are the property of C12G Labs S.L..<br>
>>>>>>>> Unauthorized distribution, review, use, disclosure, or copying of<br>
>>>>>>>> this communication, or any part thereof, is strictly prohibited<br>
>>>>>>>> and may be unlawful. If you have received this e-mail in error,<br>
>>>>>>>> please notify us immediately by e-mail at <a href="mailto:abuse@c12g.com" target="_blank">abuse@c12g.com</a> and<br>
>>>>>>>> delete the e-mail and attachments and any copy from your system.<br>
>>>>>>>> C12G thanks you for your cooperation.<br>
>>>>>>>><br>
>>>>>>>><br>
>>>>>>>> On Thu, Oct 17, 2013 at 2:58 PM, Michael Curran<br>
>>>>>>>> <<a href="mailto:michael.curran@connectsolutions.com" target="_blank">michael.curran@connectsolutions.com</a>> wrote:<br>
>>>>>>>>> Is there any expected release date for this yet? I have a fully<br>
>>>>>>>>> functional POC that handles *nix and windows, but cannot<br>
>>>>>>>>> contextualize windows because of the single quotes around<br>
>>>>>>>>> variables in the context.sh ... Which I was told would be<br>
>>>>>>>>> resolved in the next release, along with the move away from libvirt to rbvmomi for accessing the cIpher and multiple system datastores support.<br>
>>>>>>>>><br>
>>>>>>>>> Any news would help me while wee start build of an OpenStack poc<br>
>>>>>>>>> for comparison against<br>
>>>>>>>>><br>
>>>>>>>>> Sent from my Android phone using TouchDown (<a href="http://www.nitrodesk.com" target="_blank">www.nitrodesk.com</a>)<br>
>>>>>>>>><br>
>>>>>>>>> _______________________________________________<br>
>>>>>>>>> Users mailing list<br>
>>>>>>>>> <a href="mailto:Users@lists.opennebula.org" target="_blank">Users@lists.opennebula.org</a><br>
>>>>>>>>> <a href="http://lists.opennebula.org/listinfo.cgi/users-opennebula.org" target="_blank">http://lists.opennebula.org/listinfo.cgi/users-opennebula.org</a><br>
>>>>>>>>><br>
>>>>>>>> _______________________________________________<br>
>>>>>>>> Users mailing list<br>
>>>>>>>> <a href="mailto:Users@lists.opennebula.org" target="_blank">Users@lists.opennebula.org</a><br>
>>>>>>>> <a href="http://lists.opennebula.org/listinfo.cgi/users-opennebula.org" target="_blank">http://lists.opennebula.org/listinfo.cgi/users-opennebula.org</a><br>
>>>>>>><br>
>>>>>>> _______________________________________________<br>
>>>>>>> Users mailing list<br>
>>>>>>> <a href="mailto:Users@lists.opennebula.org" target="_blank">Users@lists.opennebula.org</a><br>
>>>>>>> <a href="http://lists.opennebula.org/listinfo.cgi/users-opennebula.org" target="_blank">http://lists.opennebula.org/listinfo.cgi/users-opennebula.org</a><br>
>>>>><br>
>>>>> _______________________________________________<br>
>>>>> Users mailing list<br>
>>>>> <a href="mailto:Users@lists.opennebula.org" target="_blank">Users@lists.opennebula.org</a><br>
>>>>> <a href="http://lists.opennebula.org/listinfo.cgi/users-opennebula.org" target="_blank">http://lists.opennebula.org/listinfo.cgi/users-opennebula.org</a><br>
>>>> _______________________________________________<br>
>>>> Users mailing list<br>
>>>> <a href="mailto:Users@lists.opennebula.org" target="_blank">Users@lists.opennebula.org</a><br>
>>>> <a href="http://lists.opennebula.org/listinfo.cgi/users-opennebula.org" target="_blank">http://lists.opennebula.org/listinfo.cgi/users-opennebula.org</a><br>
>>><br>
>>> _______________________________________________<br>
>>> Users mailing list<br>
>>> <a href="mailto:Users@lists.opennebula.org" target="_blank">Users@lists.opennebula.org</a><br>
>>> <a href="http://lists.opennebula.org/listinfo.cgi/users-opennebula.org" target="_blank">http://lists.opennebula.org/listinfo.cgi/users-opennebula.org</a><br>
>><br>
><br>
><br>
> _______________________________________________<br>
> Users mailing list<br>
> <a href="mailto:Users@lists.opennebula.org" target="_blank">Users@lists.opennebula.org</a><br>
> <a href="http://lists.opennebula.org/listinfo.cgi/users-opennebula.org" target="_blank">http://lists.opennebula.org/listinfo.cgi/users-opennebula.org</a><br>
><br>
<span><font color="#888888"><br>
<br>
<br>
--<br>
Javier Fontán Muiños<br>
Developer<br>
OpenNebula - The Open Source Toolkit for Data Center Virtualization<br>
<a href="http://www.OpenNebula.org" target="_blank">www.OpenNebula.org</a> | @OpenNebula | <a href="http://github.com/jfontan" target="_blank">github.com/jfontan</a><br>
</font></span></blockquote></div><br></div></div></div>
</blockquote></div><br><br clear="all"><div><br></div>-- <br>Javier Fontán Muiños<br>Developer<br>OpenNebula - The Open Source Toolkit for Data Center Virtualization<br><a href="http://www.OpenNebula.org" target="_blank">www.OpenNebula.org</a> | @OpenNebula | <a href="http://github.com/jfontan" target="_blank">github.com/jfontan</a>
</div>