Commit f6c7e345 by Michael DeHaan

Merge pull request #7931 from quiver/fix-yum-module-doc

In yum module example, use present/absent instead of installed/removed
parents a91ab1ed 779c6cb7
......@@ -107,10 +107,10 @@ EXAMPLES = '''
yum: name=httpd state=latest
- name: remove the Apache package
yum: name=httpd state=removed
yum: name=httpd state=absent
- name: install the latest version of Apache from the testing repo
yum: name=httpd enablerepo=testing state=installed
yum: name=httpd enablerepo=testing state=present
- name: upgrade all packages
yum: name=* state=latest
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment