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

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

# Copyright (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): 

 

# common shelldocumentation fragment 

DOCUMENTATION = """ 

options: 

remote_tmp: 

description: 

- Temporary directory to use on targets when executing tasks. 

default: '~/.ansible/tmp' 

env: [{name: ANSIBLE_REMOTE_TEMP}, {name: ANSIBLE_REMOTE_TMP}] 

ini: 

- section: defaults 

key: remote_tmp 

vars: 

- name: ansible_remote_tmp 

system_tmpdirs: 

description: 

- "List of valid system temporary directories for Ansible to choose when it cannot use 

``remote_tmp``, normally due to permission issues. These must be world readable, writable, 

and executable." 

default: [ /var/tmp, /tmp ] 

type: list 

env: [{name: ANSIBLE_SYSTEM_TMPDIRS}] 

ini: 

- section: defaults 

key: system_tmpdirs 

vars: 

- name: ansible_system_tmpdirs 

async_dir: 

description: 

- Directory in which ansible will keep async job inforamtion 

default: '~/.ansible_async' 

env: [{name: ANSIBLE_ASYNC_DIR}] 

ini: 

- section: defaults 

key: async_dir 

vars: 

- name: ansible_async_dir 

environment: 

type: dict 

default: {} 

description: 

- dictionary of environment variables and their values to use when executing commands. 

admin_users: 

type: list 

default: ['root', 'toor', 'admin'] 

description: 

- list of users to be expected to have admin privileges, for BSD you might want to add 'toor' for windows 'Administrator'. 

env: 

- name: ANSIBLE_ADMIN_USERS 

ini: 

- section: defaults 

key: admin_users 

vars: 

- name: ansible_admin_users 

"""