Commit 12403abc by Michael DeHaan

Merge pull request #1924 from blair/consistly-use-underscores

library/apt: consistently use underscores in examples.
parents 07b056fb 811c7113
...@@ -70,7 +70,7 @@ options: ...@@ -70,7 +70,7 @@ options:
author: Matthew Williams author: Matthew Williams
notes: [] notes: []
examples: examples:
- code: "apt: pkg=foo update-cache=yes" - code: "apt: pkg=foo update_cache=yes"
description: Update repositories cache and install C(foo) package description: Update repositories cache and install C(foo) package
- code: "apt: pkg=foo state=removed" - code: "apt: pkg=foo state=removed"
description: Remove C(foo) package description: Remove C(foo) package
...@@ -78,9 +78,9 @@ examples: ...@@ -78,9 +78,9 @@ examples:
description: Install the package C(foo) description: Install the package C(foo)
- code: "apt: pkg=foo=1.00 state=installed" - code: "apt: pkg=foo=1.00 state=installed"
description: Install the version '1.00' of package C(foo) description: Install the version '1.00' of package C(foo)
- code: "apt: pkg=nginx state=latest default-release=squeeze-backports update-cache=yes" - code: "apt: pkg=nginx state=latest default_release=squeeze-backports update_cache=yes"
description: Update the repository cache and update package C(ngnix) to latest version using default release C(squeeze-backport) description: Update the repository cache and update package C(ngnix) to latest version using default release C(squeeze-backport)
- code: "apt: pkg=openjdk-6-jdk state=latest install-recommends=no" - code: "apt: pkg=openjdk-6-jdk state=latest install_recommends=no"
description: Install latest version of C(openjdk-6-jdk) ignoring C(install-reccomends) description: Install latest version of C(openjdk-6-jdk) ignoring C(install-reccomends)
''' '''
......
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