Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

# (c) 2017 Ansible Project 

# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) 

 

 

class ModuleDocFragment(object): 

 

DOCUMENTATION = """ 

options: 

show_skipped_hosts: 

name: Show skipped hosts 

description: "Toggle to control displaying skipped task/host results in a task" 

default: True 

env: 

- name: DISPLAY_SKIPPED_HOSTS 

ini: 

- key: display_skipped_hosts 

section: defaults 

type: boolean 

show_custom_stats: 

name: Show custom stats 

description: 'This adds the custom stats set via the set_stats plugin to the play recap' 

default: False 

env: 

- name: ANSIBLE_SHOW_CUSTOM_STATS 

ini: 

- key: show_custom_stats 

section: defaults 

type: bool 

"""