Ansible 1.9.2 rc1 is now available for testing

320 views
Skip to first unread message

James Cammarata

unread,
May 15, 2015, 10:27:14 PM5/15/15
to ansible...@googlegroups.com, ansibl...@googlegroups.com
Hi all, we've just tagged the rc1 release for 1.9.2, which includes several fixes for modules (service, rds, among others) as well as some other minor fixes and improvements.

To test from source, simply clone the git repository (if you haven't already) and do the following:

$ git checkout v1.9.2-0.1.rc1
$ git submodule update
$ . hacking/env-setup

After which time you can run ansible and ansible-playbook like normal. If you're not familiar with the hacking/env-setup script, please refer to the documentation here: 


To make a tar ball, RPM or DEB with which to test, do the following:

$ git checkout v1.9.2-0.1.rc1
$ git submodule update

# for a .tar.gz (output is dist/ansible-1.9.2.tar.gz)
$ make sdist
# for RPMs
$ OFFICIAL=yes make rpm
# for DEBs
$ OFFICIAL=yes make deb

If you discover any errors related to this release candidate, please open a Github issue and be sure to mention which version you're testing. We will be looking to evaluate the status of this release candidate in one week.

Thanks!

James Cammarata
Director, Ansible Core Engineering
github: jimi-c

René Moser

unread,
May 22, 2015, 9:46:47 AM5/22/15
to ansibl...@googlegroups.com, ansible...@googlegroups.com
all good, didn't see any issues.

+1

Philippe Eveque

unread,
May 22, 2015, 12:44:25 PM5/22/15
to René Moser, ansibl...@googlegroups.com, ansible...@googlegroups.com
same on the playbooks/module/plugin we have here

+1


2015-05-22 15:46 GMT+02:00 René Moser <rene....@gmail.com>:
all good, didn't see any issues.

+1

--
You received this message because you are subscribed to the Google Groups "Ansible Development" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ansible-deve...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

James Cammarata

unread,
May 22, 2015, 1:45:54 PM5/22/15
to Philippe Eveque, René Moser, ansibl...@googlegroups.com, ansible...@googlegroups.com
I will be releasing a rc2 for this today, which will incorporate this PR (which was reverted): https://github.com/ansible/ansible-modules-core/pull/384

James Cammarata
Director, Ansible Core Engineering
github: jimi-c

Trond Hindenes

unread,
May 22, 2015, 4:04:19 PM5/22/15
to ansibl...@googlegroups.com, ansible...@googlegroups.com, philipp...@gmail.com, rene....@gmail.com
I'm seeing a bunch of issues with the win_copy version in the devel branch. If this is the one planned for inclusion in 1.9.2 rc2 I'd say it's not quite ready:

Mikhail Koshelev

unread,
May 22, 2015, 6:47:40 PM5/22/15
to ansible...@googlegroups.com, philipp...@gmail.com, ansibl...@googlegroups.com, rene....@gmail.com
I use these modules (win_copy, win_template) locally and I had to patch win_copy.ps1 for the modules to properly handle changes in files/templates.
Here is the patch:

--- win_copy.ps1.orig    2014-12-11 13:50:17.000000000 -0800
+++ win_copy.ps1    2015-05-14 16:56:09.683278480 -0700
@@ -52,17 +52,17 @@
 
 
If (Test-Path $dest)
 
{
-    $dest_checksum = Get-FileChecksum ($dest);
-    $src_checksum = Get-FileChecksum ($src);
+    [string] $dest_checksum = Get-FileChecksum ($dest);
+    [string] $src_checksum = Get-FileChecksum ($src);
 
-    If (! $src_checksum.CompareTo($dest_checksum))
+    If ( $src_checksum.CompareTo($dest_checksum))
     
{
         
# New-Item -Force creates subdirs for recursive copies
         
New-Item -Force $dest -Type file;
         
Copy-Item -Path $src -Destination $dest -Force;
     
}
-    $dest_checksum = Get-FileChecksum ($dest);
-    If ( $src_checksum.CompareTo($dest_checksum))
+    [string] $dest_checksum = Get-FileChecksum ($dest);
+    If (! $src_checksum.CompareTo($dest_checksum))
     
{
         $result
.changed = $TRUE;
     
}

jhawkesworth

unread,
May 29, 2015, 8:18:59 AM5/29/15
to ansibl...@googlegroups.com, philipp...@gmail.com, rene....@gmail.com, ansible...@googlegroups.com
Just in case anyone is looking at this but not following the github issue, I've pushed a pair of PRs to fix this. Both are needed in order to fix.

jhawkesworth

unread,
Jun 1, 2015, 5:19:03 PM6/1/15
to ansibl...@googlegroups.com, philipp...@gmail.com, ansible...@googlegroups.com, rene....@gmail.com
Just to update about this, I have created

https://github.com/ansible/ansible/pull/11115

to replace

https://github.com/ansible/ansible/pull/11086 which had some unwanted changes.

Please test.  Really sorry if this has held up 1.9.2

Jon

Barry Kaplan

unread,
Jun 2, 2015, 12:17:03 PM6/2/15
to ansible...@googlegroups.com, ansibl...@googlegroups.com
Been working great for me all day.
Reply all
Reply to author
Forward
0 new messages