From c0bcbf3b880bcf2d1d51a76db2ee12da04bfcc2e Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Sun, 19 Jul 2015 17:33:26 -0400 Subject: [PATCH] more changes from feedback --- docsite/rst/intro_configuration.rst | 2 +- docsite/rst/playbooks_strategies.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docsite/rst/intro_configuration.rst b/docsite/rst/intro_configuration.rst index 933ed1dc5d..11b2c7fd6b 100644 --- a/docsite/rst/intro_configuration.rst +++ b/docsite/rst/intro_configuration.rst @@ -307,7 +307,7 @@ gathering New in 1.6, the 'gathering' setting controls the default policy of facts gathering (variables discovered about remote systems). -The value 'implicit' is the default, meaning facts will be gathered per play unless 'gather_facts: False' is set in the play and fact caching will be ignored. +The value 'implicit' is the default, which means that the fact cache will be ignored and facts will be gathered per play unless 'gather_facts: False' is set. The value 'explicit' is the inverse, facts will not be gathered unless directly requested in the play. The value 'smart' means each new host that has no facts discovered will be scanned, but if the same host is addressed in multiple plays it will not be contacted again in the playbook run. This option can be useful for those wishing to save fact gathering time. Both 'smart' and 'explicit' will use the fact cache. diff --git a/docsite/rst/playbooks_strategies.rst b/docsite/rst/playbooks_strategies.rst index ae9553a5dc..4f5de590c0 100644 --- a/docsite/rst/playbooks_strategies.rst +++ b/docsite/rst/playbooks_strategies.rst @@ -23,7 +23,7 @@ Strategy Plugins ````````````````` The strategies are implelented via a new type of plugin, this means that in the future new -execution types can be added in the future, either locally by users or to Ansible itself by +execution types can be added, either locally by users or to Ansible itself by a code contribution. .. seealso::