From 49385bb3a31d400c7de2e20270ecb1030a1f09c2 Mon Sep 17 00:00:00 2001 From: Lorin Hochstein Date: Tue, 31 Jul 2012 09:02:37 -0400 Subject: [PATCH] Minor doc fixups for apt module. Change hyphens to underscores in argument names, e.g.: update-cache -> update_cache Remove question mark in description of behavior of update_cache. --- rst/modules.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rst/modules.rst b/rst/modules.rst index 01962d97709..3ffada75717 100644 --- a/rst/modules.rst +++ b/rst/modules.rst @@ -48,14 +48,14 @@ Manages apt-packages (such as for Debian/Ubuntu). +--------------------+----------+---------+----------------------------------------------------------------------------+ | state | no | present | 'absent', 'present', or 'latest'. | +--------------------+----------+---------+----------------------------------------------------------------------------+ -| update-cache | no | no | run the equivalent of apt-get update before the operation? | +| update_cache | no | no | Run the equivalent of apt-get update before the operation. | | | | | Can be run as part of the package installation or a seperate step | +--------------------+----------+---------+----------------------------------------------------------------------------+ | purge | no | no | Will forge purge of configuration files if state is set to 'removed'. | +--------------------+----------+---------+----------------------------------------------------------------------------+ -| default-release | no | | Corresponds to the -t option for apt and sets pin priorities | +| default_release | no | | Corresponds to the -t option for apt and sets pin priorities | +--------------------+----------+---------+----------------------------------------------------------------------------+ -| install-recommends | no | yes | Corresponds to the --no-install-recommends option for apt, default | +| install_recommends | no | yes | Corresponds to the --no-install-recommends option for apt, default | | | | | behavior works as apt's default behavior, 'no' does not install | | | | | recommended packages. Suggested packages are never installed. | +--------------------+----------+---------+----------------------------------------------------------------------------+