From 2e40773034671ade8d51d9e359211203b5be662b Mon Sep 17 00:00:00 2001 From: AlejandroF Date: Wed, 28 Jan 2015 11:29:29 -0300 Subject: [PATCH] Example added How to define specific version of the package we need... --- lib/ansible/modules/packaging/os/yum.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/ansible/modules/packaging/os/yum.py b/lib/ansible/modules/packaging/os/yum.py index 24123392594..671dbf7fde3 100644 --- a/lib/ansible/modules/packaging/os/yum.py +++ b/lib/ansible/modules/packaging/os/yum.py @@ -123,6 +123,9 @@ EXAMPLES = ''' - name: install the latest version of Apache from the testing repo yum: name=httpd enablerepo=testing state=present +- name: install one specific version of Apache + yum: name=httpd-2.2.29-1.4.amzn1 state=present + - name: upgrade all packages yum: name=* state=latest