Commit 71350a17 by Michael DeHaan

Merge pull request #112 from wgjohnson/examples-edits

removed '-' from ansible calls
parents 9395ebd4 992c2b82
...@@ -131,7 +131,7 @@ Ensure a package is installed, but don't update it:: ...@@ -131,7 +131,7 @@ Ensure a package is installed, but don't update it::
Ensure a package is installed to a specific version:: Ensure a package is installed to a specific version::
ansible-webservers -m yum -a "pkg=acme-1.5 state=installed" ansible webservers -m yum -a "pkg=acme-1.5 state=installed"
Ensure a package is at the latest version:: Ensure a package is at the latest version::
...@@ -139,7 +139,7 @@ Ensure a package is at the latest version:: ...@@ -139,7 +139,7 @@ Ensure a package is at the latest version::
Ensure a package is not installed:: Ensure a package is not installed::
ansible-webservers -m yum -a "pkg=acme state=removed" ansible webservers -m yum -a "pkg=acme state=removed"
Currently Ansible only has modules for managing packages with yum and apt. You can install Currently Ansible only has modules for managing packages with yum and apt. You can install
for other packages for now using the command module or (better!) contribute a module for other packages for now using the command module or (better!) contribute a module
......
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