diff options
Diffstat (limited to 'examples/ansible.cfg')
-rw-r--r-- | examples/ansible.cfg | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/examples/ansible.cfg b/examples/ansible.cfg index 181630f9c6..fe60bc71aa 100644 --- a/examples/ansible.cfg +++ b/examples/ansible.cfg @@ -33,19 +33,16 @@ # by default retrieve all facts subsets # all - gather all subsets -# min - gather a very limited set of facts # network - gather min and network facts # hardware - gather hardware facts (longest facts to retrieve) # virtual - gather min and virtual facts -# You can combine them using comma (ex: min,network,virtual) +# facter - import facts from facter +# ohai - import facts from ohai +# You can combine them using comma (ex: network,virtual) +# You can negate them using ! (ex: !hardware,!facter,!ohai) +# A minimal set of facts is always gathered. #gather_subset = all -# by default run ohai -#ignore_ohai = False - -# by default run facter -#ignore_facter = False - # additional paths to search for roles in, colon separated #roles_path = /etc/ansible/roles |