mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #2006 from stoned/doc-fix-examples-yum
Fix yum module examples: the 'pkg' parameter is now 'name'
This commit is contained in:
commit
c3cfb450a9
1 changed files with 4 additions and 4 deletions
|
@ -121,19 +121,19 @@ with yum.
|
|||
|
||||
Ensure a package is installed, but don't update it::
|
||||
|
||||
$ ansible webservers -m yum -a "pkg=acme state=installed"
|
||||
$ ansible webservers -m yum -a "name=acme state=installed"
|
||||
|
||||
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 "name=acme-1.5 state=installed"
|
||||
|
||||
Ensure a package is at the latest version::
|
||||
|
||||
$ ansible webservers -m yum -a "pkg=acme state=latest"
|
||||
$ ansible webservers -m yum -a "name=acme state=latest"
|
||||
|
||||
Ensure a package is not installed::
|
||||
|
||||
$ ansible webservers -m yum -a "pkg=acme state=removed"
|
||||
$ ansible webservers -m yum -a "name=acme state=removed"
|
||||
|
||||
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
|
||||
|
|
Loading…
Reference in a new issue