-
Notifications
You must be signed in to change notification settings - Fork 0
/
argument_specs.yml
190 lines (190 loc) · 4.72 KB
/
argument_specs.yml
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
# Copyright 2022-2024 Chris Croome
#
# This file is part of the Webarchitects Firefox Ansible role.
#
# The Webarchitects Firefox Ansible role is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
#
# The Webarchitects Firefox Ansible role is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along with the Webarchitects Firefox Ansible role. If not, see <https://www.gnu.org/licenses/>.
---
argument_specs:
main:
author: Chris Croome
description: An Ansible role for installing Firefox on Linux x86_64 and i386.
short_description: The main entry point for the Ansible role.
options:
firefox:
type: bool
required: true
description: Run the tasks in this role.
firefox_backports:
type: str
required: true
description: Debian version backports string.
firefox_desktop:
type: dict
required: false
description: Internal dictionary of configuration for the Firefox Desktop file for Firejail.
firefox_editions:
type: list
required: true
description: A list of Firefox versions.
options:
name:
type: str
required: true
description: The Firefox edition name.
pkg:
type: str
required: true
description: The Firefox edition package.
firefox_firejail:
type: bool
required: true
description: Install firejail.
firefox_gpg_checksum:
type: str
required: true
description: Internal Firefox GPG checksum.
firefox_gpg_checksum_raw:
type: str
required: true
description: Internal Firefox GPG checksum including sha256 prefix.
firefox_gpg_fingerprints:
type: list
elements: str
required: true
description: A internal list of the fingerprints of the Firefox GPG key.
firefox_gpg_fingerprints_query:
type: str
required: true
description: A internal JMESPath query for the Firefox GPG fingerprints.
firefox_gpg_url:
type: str
required: true
description: A internal URL for the Firefox GPG key.
firefox_lang:
type: str
required: true
description: The Firefox language taken from the selet list at https://www.mozilla.org/en-GB/firefox/all/.
choices:
- ach
- af
- an
- ar
- ast
- az
- be
- bg
- bn
- bo
- br
- bs
- ca
- cak
- ca-valencia
- ckb
- cs
- cy
- da
- de
- dsb
- el
- en-CA
- en-GB
- en-US
- eo
- es-AR
- es-CL
- es-ES
- es-MX
- et
- eu
- fa
- ff
- fi
- fr
- fy-NL
- ga-IE
- gd
- gl
- gn
- gu-IN
- he
- hi-IN
- hr
- hsb
- hu
- hy-AM
- ia
- id
- is
- it
- ja
- ka
- kab
- kk
- km
- kn
- ko
- lij
- lo
- lt
- ltg
- lv
- meh
- mk
- mr
- ms
- my
- nb-NO
- ne-NP
- nl
- nn-NO
- oc
- pa-IN
- pl
- pt-BR
- pt-PT
- rm
- ro
- ru
- sat
- sc
- scn
- sco
- si
- sk
- skr
- sl
- son
- sq
- sr
- sv-SE
- szl
- ta
- te
- tg
- th
- tl
- tr
- trs
- uk
- ur
- uz
- vi
- wo
- xh
- zh-CN
- zh-TW
firefox_pkg:
type: list
elements: str
required: true
description: A list of Firefox packages.
firefox_validate:
type: bool
required: true
description: Use ansible.builtin.validate_argument_spec module to validate role argument specs.
...