-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathargument_specs.yaml
38 lines (38 loc) · 1.41 KB
/
argument_specs.yaml
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
---
argument_specs:
main:
short_description: This role creates directories and symlinks files found in dotfiles_src to dotfiles_dest
options:
dotfiles_src:
type: str
required: false
default: "files"
description: |
The source folder (relative to the calling role/play) that files will be symlinked from
dotfiles_dest:
type: str
required: false
default: "~"
description: The destination folder to put symlinks
dotfiles_mode:
type: str
required: false
description: |
The permissions that the resulting symlinks and created directories should have.
When not specified, the default for ansible.builtin.file will be used (usually the umask)
dotfiles_owner:
type: str
required: false
description: |
The name of the user that should own the resulting links.
When not specified, the default for ansible.builtin.file will be used (the current user)
dotfiles_group:
type: str
required: false
description: |
The name of the group that should own the resulting links
When not specified, the default for ansible.builtin.file will be used (the current group of the current user)
dotfiles_become:
type: bool
required: false
description: Activate privilege escalation for file operations