Commit dfbe35d4 by Michael DeHaan

Rename apt-rpm to apt_rpm.

parent 535b2ba6
...@@ -21,6 +21,7 @@ New Modules: ...@@ -21,6 +21,7 @@ New Modules:
* packaging: composer (PHP) * packaging: composer (PHP)
* packaging: homebrew_tap (OS X) * packaging: homebrew_tap (OS X)
* packaging: homebrew_cask (OS X) * packaging: homebrew_cask (OS X)
* packaging: apt_rpm
* notification: nexmo (SMS) * notification: nexmo (SMS)
* notification: twilio (SMS) * notification: twilio (SMS)
* notification: slack (Slack.com) * notification: slack (Slack.com)
......
...@@ -21,8 +21,8 @@ ...@@ -21,8 +21,8 @@
DOCUMENTATION = ''' DOCUMENTATION = '''
--- ---
module: apt-rpm module: apt_rpm
short_description: apt-rpm package manager short_description: apt_rpm package manager
description: description:
- Manages packages with I(apt-rpm). Both low-level (I(rpm)) and high-level (I(apt-get)) package manager binaries required. - Manages packages with I(apt-rpm). Both low-level (I(rpm)) and high-level (I(apt-get)) package manager binaries required.
version_added: "1.5" version_added: "1.5"
...@@ -50,13 +50,13 @@ notes: [] ...@@ -50,13 +50,13 @@ notes: []
EXAMPLES = ''' EXAMPLES = '''
# install package foo # install package foo
- apt-rpm: pkg=foo state=present - apt_rpm: pkg=foo state=present
# remove package foo # remove package foo
- apt-rpm: pkg=foo state=absent - apt_rpm: pkg=foo state=absent
# description: remove packages foo and bar # description: remove packages foo and bar
- apt-rpm: pkg=foo,bar state=absent - apt_rpm: pkg=foo,bar state=absent
# description: update the package database and install bar (bar will be the updated if a newer version exists) # description: update the package database and install bar (bar will be the updated if a newer version exists)
- apt-rpm: name=bar state=present update_cache=yes - apt_rpm: name=bar state=present update_cache=yes
''' '''
......
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