foreman_ansible 7.0.4 → 8.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/controllers/api/v2/ansible_playbooks_controller.rb +66 -0
- data/app/controllers/foreman_ansible/api/v2/hostgroups_controller_extensions.rb +5 -1
- data/app/controllers/foreman_ansible/api/v2/hosts_controller_extensions.rb +3 -1
- data/app/graphql/presenters/ansible_role_presenter.rb +4 -0
- data/app/graphql/types/ansible_role.rb +1 -0
- data/app/graphql/types/inherited_ansible_role.rb +4 -0
- data/app/helpers/foreman_ansible/hosts_helper.rb +19 -0
- data/app/jobs/sync_playbooks.rb +25 -0
- data/app/lib/proxy_api/ansible.rb +13 -0
- data/app/services/foreman_ansible/import_playbooks_error_notification.rb +38 -0
- data/app/services/foreman_ansible/import_playbooks_success_notification.rb +33 -0
- data/app/services/foreman_ansible/playbooks_importer.rb +73 -0
- data/app/services/foreman_ansible/proxy_api.rb +3 -4
- data/app/services/foreman_ansible/variables_importer.rb +9 -9
- data/app/views/ansible_roles/index.html.erb +2 -0
- data/app/views/api/v2/ansible_playbooks/sync.json.rabl +5 -0
- data/app/views/api/v2/hostgroups/ansible_roles.json.rabl +9 -1
- data/app/views/api/v2/hosts/ansible_roles.json.rabl +9 -1
- data/app/views/foreman_ansible/job_templates/ansible_roles_-_install_from_git.erb +4 -1
- data/app/views/foreman_ansible/job_templates/ansible_windows_updates.erb +160 -0
- data/config/routes.rb +10 -3
- data/db/migrate/20200421201839_update_ansible_inv_template_name.rb +1 -5
- data/db/seeds.d/90_notification_blueprints.rb +14 -0
- data/lib/foreman_ansible/engine.rb +0 -1
- data/lib/foreman_ansible/register.rb +9 -3
- data/lib/foreman_ansible/version.rb +1 -1
- data/locale/action_names.rb +4 -3
- data/locale/ca/foreman_ansible.edit.po +1162 -0
- data/locale/ca/foreman_ansible.po +360 -45
- data/{webpack/components/withPagination.js → locale/ca/foreman_ansible.po.time_stamp} +0 -0
- data/locale/cs_CZ/foreman_ansible.edit.po +1207 -0
- data/locale/cs_CZ/foreman_ansible.po +372 -57
- data/locale/cs_CZ/foreman_ansible.po.time_stamp +0 -0
- data/locale/de/foreman_ansible.edit.po +1148 -0
- data/locale/de/foreman_ansible.po +355 -40
- data/locale/de/foreman_ansible.po.time_stamp +0 -0
- data/locale/en/foreman_ansible.edit.po +1146 -0
- data/locale/en/foreman_ansible.po +355 -40
- data/locale/en/foreman_ansible.po.time_stamp +0 -0
- data/locale/en_GB/foreman_ansible.edit.po +1155 -0
- data/locale/en_GB/foreman_ansible.po +357 -42
- data/locale/en_GB/foreman_ansible.po.time_stamp +0 -0
- data/locale/es/foreman_ansible.edit.po +1148 -0
- data/locale/es/foreman_ansible.po +355 -40
- data/locale/es/foreman_ansible.po.time_stamp +0 -0
- data/locale/foreman_ansible.pot +767 -263
- data/locale/fr/foreman_ansible.edit.po +1148 -0
- data/locale/fr/foreman_ansible.po +355 -40
- data/locale/fr/foreman_ansible.po.time_stamp +0 -0
- data/locale/gl/foreman_ansible.edit.po +1156 -0
- data/locale/gl/foreman_ansible.po +358 -43
- data/locale/gl/foreman_ansible.po.time_stamp +0 -0
- data/locale/it/foreman_ansible.edit.po +1148 -0
- data/locale/it/foreman_ansible.po +355 -40
- data/locale/it/foreman_ansible.po.time_stamp +0 -0
- data/locale/ja/foreman_ansible.edit.po +1148 -0
- data/locale/ja/foreman_ansible.po +355 -40
- data/locale/ja/foreman_ansible.po.time_stamp +0 -0
- data/locale/ko/foreman_ansible.edit.po +1148 -0
- data/locale/ko/foreman_ansible.po +355 -40
- data/locale/ko/foreman_ansible.po.time_stamp +0 -0
- data/locale/nl_NL/foreman_ansible.edit.po +1168 -0
- data/locale/nl_NL/foreman_ansible.po +359 -44
- data/locale/nl_NL/foreman_ansible.po.time_stamp +0 -0
- data/locale/pl/foreman_ansible.edit.po +1180 -0
- data/locale/pl/foreman_ansible.po +363 -48
- data/locale/pl/foreman_ansible.po.time_stamp +0 -0
- data/locale/pt_BR/foreman_ansible.edit.po +1148 -0
- data/locale/pt_BR/foreman_ansible.po +355 -40
- data/locale/pt_BR/foreman_ansible.po.time_stamp +0 -0
- data/locale/ru/foreman_ansible.edit.po +1149 -0
- data/locale/ru/foreman_ansible.po +355 -40
- data/locale/ru/foreman_ansible.po.time_stamp +0 -0
- data/locale/sv_SE/foreman_ansible.edit.po +1180 -0
- data/locale/sv_SE/foreman_ansible.po +363 -48
- data/locale/sv_SE/foreman_ansible.po.time_stamp +0 -0
- data/locale/zh_CN/foreman_ansible.edit.po +1148 -0
- data/locale/zh_CN/foreman_ansible.po +355 -40
- data/locale/zh_CN/foreman_ansible.po.time_stamp +0 -0
- data/locale/zh_TW/foreman_ansible.edit.po +1148 -0
- data/locale/zh_TW/foreman_ansible.po +355 -40
- data/locale/zh_TW/foreman_ansible.po.time_stamp +0 -0
- data/test/fixtures/playbooks_example_output.json +1 -0
- data/test/fixtures/sample_playbooks.json +10 -0
- data/test/functional/api/v2/ansible_playbooks_controller_test.rb +65 -0
- data/test/functional/hosts_controller_test.rb +2 -2
- data/test/graphql/queries/host_ansible_roles_query_test.rb +61 -0
- data/test/unit/import_playbooks_test.rb +51 -0
- data/test/unit/lib/proxy_api/ansible_test.rb +6 -0
- data/webpack/components/AnsibleHostDetail/components/AnsibleVariableOverrides/AnsibleVariableOverridesTable.js +58 -75
- data/webpack/components/AnsibleHostDetail/components/JobsTab/PreviousJobsTable.js +44 -58
- data/webpack/components/AnsibleHostDetail/components/JobsTab/PreviousJobsTable.js.orig +151 -0
- data/webpack/components/AnsibleHostDetail/components/RolesTab/AllRolesModal/AllRolesTable.js +43 -56
- data/webpack/components/AnsibleHostDetail/components/RolesTab/AllRolesModal/index.js +1 -1
- data/webpack/components/AnsibleHostDetail/components/RolesTab/EditRolesModal/EditRolesForm.js +26 -24
- data/webpack/components/AnsibleHostDetail/components/RolesTab/EditRolesModal/index.js +3 -2
- data/webpack/components/AnsibleHostDetail/components/RolesTab/RolesTable.js +39 -43
- data/webpack/components/AnsibleHostDetail/components/RolesTab/__test__/RolesTab.fixtures.js +30 -0
- data/webpack/components/AnsibleRolesAndVariables/AnsibleRolesAndVariables.js +27 -38
- data/webpack/components/AnsibleRolesAndVariables/AnsibleRolesAndVariablesActions.js +2 -1
- data/webpack/components/AnsibleRolesAndVariables/AnsibleRolesAndVariablesConstants.js +1 -0
- data/webpack/components/AnsibleRolesAndVariables/AnsibleRolesAndVariablesSelectors.js +6 -0
- data/webpack/components/AnsibleRolesAndVariables/index.js +7 -1
- data/webpack/components/AnsibleRolesSwitcher/__tests__/AnsibleRolesSwitcher.test.js +0 -2
- data/webpack/components/AnsibleRolesSwitcher/components/AnsibleRole.js +3 -12
- data/webpack/components/AnsibleRolesSwitcher/components/AvailableRolesList.js +2 -2
- data/webpack/components/AnsibleRolesSwitcher/components/OrderedRolesTooltip.js +11 -12
- data/webpack/components/AnsibleRolesSwitcher/components/__snapshots__/AnsibleRole.test.js.snap +6 -20
- data/webpack/components/AnsibleRolesSwitcher/components/__snapshots__/AvailableRolesList.test.js.snap +9 -6
- data/webpack/components/withLoading.js +7 -12
- data/webpack/graphql/queries/allAnsibleRoles.gql +3 -0
- data/webpack/graphql/queries/hostAnsibleRoles.gql +3 -0
- data/webpack/helpers/pageParamsHelper.js +3 -3
- metadata +87 -34
- data/app/helpers/foreman_ansible/hosts_helper_extensions.rb +0 -30
- data/webpack/helpers/paginationHelper.js +0 -9
@@ -19,12 +19,21 @@ msgstr ""
|
|
19
19
|
"Language: ca\n"
|
20
20
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
21
21
|
|
22
|
+
msgid "%(selectedCount)s of %(totalCount)s items selected"
|
23
|
+
msgstr ""
|
24
|
+
|
22
25
|
msgid "%s ago"
|
23
26
|
msgstr "fa %s"
|
24
27
|
|
25
28
|
msgid "%{cfgmgmt} out of sync disabled"
|
26
29
|
msgstr ""
|
27
30
|
|
31
|
+
msgid "(from host group)"
|
32
|
+
msgstr ""
|
33
|
+
|
34
|
+
msgid "A comma separated list of tags to use for Ansible run"
|
35
|
+
msgstr ""
|
36
|
+
|
28
37
|
msgid "Action with sub plans"
|
29
38
|
msgstr ""
|
30
39
|
|
@@ -34,31 +43,70 @@ msgstr "Accions"
|
|
34
43
|
msgid "Add"
|
35
44
|
msgstr "Afegeix"
|
36
45
|
|
46
|
+
msgid "Add all"
|
47
|
+
msgstr ""
|
48
|
+
|
49
|
+
msgid "Add selected"
|
50
|
+
msgstr ""
|
51
|
+
|
52
|
+
msgid "Add, remove or reorder host assigned Ansible roles. This host has also group assigned roles that are not displayed here and will always be executed prior to host assigned roles"
|
53
|
+
msgstr ""
|
54
|
+
|
55
|
+
msgid "All assigned Ansible roles"
|
56
|
+
msgstr ""
|
57
|
+
|
37
58
|
msgid "Ansible"
|
38
59
|
msgstr ""
|
39
60
|
|
61
|
+
msgid "Ansible playbooks names to be synced"
|
62
|
+
msgstr ""
|
63
|
+
|
40
64
|
msgid "Ansible Role"
|
41
65
|
msgstr ""
|
42
66
|
|
43
67
|
msgid "Ansible Roles"
|
44
68
|
msgstr ""
|
45
69
|
|
70
|
+
msgid "Ansible Roles were successfully assigned."
|
71
|
+
msgstr ""
|
72
|
+
|
46
73
|
msgid "Ansible Variable Details"
|
47
74
|
msgstr ""
|
48
75
|
|
49
76
|
msgid "Ansible Variable Details (Imported)"
|
50
77
|
msgstr ""
|
51
78
|
|
79
|
+
msgid "Ansible Variable not found by id: %s"
|
80
|
+
msgstr ""
|
81
|
+
|
52
82
|
msgid "Ansible Variables"
|
53
83
|
msgstr ""
|
54
84
|
|
85
|
+
msgid "Ansible check mode"
|
86
|
+
msgstr ""
|
87
|
+
|
88
|
+
msgid "Ansible job was successfully canceled."
|
89
|
+
msgstr ""
|
90
|
+
|
91
|
+
msgid "Ansible job was successfully created."
|
92
|
+
msgstr ""
|
93
|
+
|
94
|
+
msgid "Ansible provider specific inputs"
|
95
|
+
msgstr ""
|
96
|
+
|
55
97
|
msgid "Ansible report timeout"
|
56
98
|
msgstr ""
|
57
99
|
|
58
100
|
msgid "Ansible role"
|
59
101
|
msgstr ""
|
60
102
|
|
61
|
-
msgid "Ansible role names to
|
103
|
+
msgid "Ansible role names to be imported"
|
104
|
+
msgstr ""
|
105
|
+
|
106
|
+
msgid "Ansible role names to be synced"
|
107
|
+
msgstr ""
|
108
|
+
|
109
|
+
msgid "Ansible roles assigned directly to host"
|
62
110
|
msgstr ""
|
63
111
|
|
64
112
|
msgid "Ansible roles to assign to a host"
|
@@ -67,13 +115,31 @@ msgstr ""
|
|
67
115
|
msgid "Ansible roles to assign to a hostgroup"
|
68
116
|
msgstr ""
|
69
117
|
|
118
|
+
msgid "Ansible roles to ignore"
|
119
|
+
msgstr ""
|
120
|
+
|
70
121
|
msgid "Ansible support in Foreman"
|
71
122
|
msgstr ""
|
72
123
|
|
124
|
+
msgid "Ansible variable override successfully changed."
|
125
|
+
msgstr ""
|
126
|
+
|
127
|
+
msgid "Ansible variable override was successfully deleted."
|
128
|
+
msgstr ""
|
129
|
+
|
73
130
|
msgid "Ansible: Run Insights maintenance plan"
|
74
131
|
msgstr ""
|
75
132
|
|
76
|
-
msgid "
|
133
|
+
msgid "Are you sure you want to cancel Ansible config job?"
|
134
|
+
msgstr ""
|
135
|
+
|
136
|
+
msgid "Are you sure you want to delete override for %s?"
|
137
|
+
msgstr ""
|
138
|
+
|
139
|
+
msgid "Assign Ansible roles"
|
140
|
+
msgstr ""
|
141
|
+
|
142
|
+
msgid "Assigned Ansible Roles"
|
77
143
|
msgstr ""
|
78
144
|
|
79
145
|
msgid "Assigns Ansible roles to a host"
|
@@ -82,6 +148,12 @@ msgstr ""
|
|
82
148
|
msgid "Assigns Ansible roles to a hostgroup"
|
83
149
|
msgstr ""
|
84
150
|
|
151
|
+
msgid "Available Ansible Roles"
|
152
|
+
msgstr ""
|
153
|
+
|
154
|
+
msgid "Available Ansible roles"
|
155
|
+
msgstr ""
|
156
|
+
|
85
157
|
msgid "Avoid duplicate values when merging them (only array type)?"
|
86
158
|
msgstr ""
|
87
159
|
|
@@ -91,30 +163,27 @@ msgstr ""
|
|
91
163
|
msgid "Cancel"
|
92
164
|
msgstr "Cancel·la"
|
93
165
|
|
94
|
-
msgid "
|
166
|
+
msgid "Cancel Ansible config job"
|
95
167
|
msgstr ""
|
96
168
|
|
97
|
-
msgid "Changed Ansible
|
169
|
+
msgid "Changed Ansible roles"
|
98
170
|
msgstr ""
|
99
171
|
|
100
|
-
msgid "
|
101
|
-
msgstr ""
|
172
|
+
msgid "Clone"
|
173
|
+
msgstr "Clona"
|
102
174
|
|
103
|
-
msgid "
|
175
|
+
msgid "Close"
|
104
176
|
msgstr ""
|
105
177
|
|
106
|
-
msgid "
|
178
|
+
msgid "Configure Ansible Job"
|
107
179
|
msgstr ""
|
108
180
|
|
109
|
-
msgid "
|
181
|
+
msgid "Configure Recurring Job"
|
110
182
|
msgstr ""
|
111
183
|
|
112
|
-
msgid "
|
184
|
+
msgid "Confirm"
|
113
185
|
msgstr ""
|
114
186
|
|
115
|
-
msgid "Clone"
|
116
|
-
msgstr "Clona"
|
117
|
-
|
118
187
|
msgid "Connection type"
|
119
188
|
msgstr ""
|
120
189
|
|
@@ -133,33 +202,60 @@ msgstr ""
|
|
133
202
|
msgid "Create an override value for a specific ansible variable"
|
134
203
|
msgstr ""
|
135
204
|
|
205
|
+
msgid "DEPRECATED: Import Ansible roles"
|
206
|
+
msgstr ""
|
207
|
+
|
208
|
+
msgid "DEPRECATED: Import Ansible variables. This will only import variables for already existing roles, it will not import any new roles"
|
209
|
+
msgstr ""
|
210
|
+
|
211
|
+
msgid "DEPRECATED: Obsolete Ansible roles"
|
212
|
+
msgstr ""
|
213
|
+
|
214
|
+
msgid "DEPRECATED: Obsolete Ansible variables. This will only obsolete variables for already existing roles, it will not delete any old roles"
|
215
|
+
msgstr ""
|
216
|
+
|
136
217
|
msgid "Default Ansible inventory report template"
|
137
218
|
msgstr ""
|
138
219
|
|
139
220
|
msgid "Default Behavior"
|
140
221
|
msgstr ""
|
141
222
|
|
223
|
+
msgid "Default value"
|
224
|
+
msgstr ""
|
225
|
+
|
142
226
|
msgid "Default value of variable"
|
143
227
|
msgstr "Valor per defecte de la variable"
|
144
228
|
|
145
229
|
msgid "Default verbosity level"
|
146
230
|
msgstr ""
|
147
231
|
|
232
|
+
msgid "Delete"
|
233
|
+
msgstr ""
|
234
|
+
|
148
235
|
msgid "Delete %s?"
|
149
236
|
msgstr "Voleu suprimir %s?"
|
150
237
|
|
238
|
+
msgid "Delete Ansible variable override"
|
239
|
+
msgstr ""
|
240
|
+
|
151
241
|
msgid "Deletes Ansible role"
|
152
242
|
msgstr ""
|
153
243
|
|
154
244
|
msgid "Deletes Ansible variable"
|
155
245
|
msgstr ""
|
156
246
|
|
247
|
+
msgid "Description"
|
248
|
+
msgstr ""
|
249
|
+
|
157
250
|
msgid "Description of variable"
|
158
251
|
msgstr "Descripció de la variable"
|
159
252
|
|
160
253
|
msgid "Destroy an override value"
|
161
254
|
msgstr ""
|
162
255
|
|
256
|
+
msgid "Directly assigned to Host"
|
257
|
+
msgstr ""
|
258
|
+
|
163
259
|
msgid "Disable host configuration status turning to out of sync for %{cfgmgmt} after report does not arrive within configured interval"
|
164
260
|
msgstr ""
|
165
261
|
|
@@ -169,16 +265,34 @@ msgstr "Inhabilitada"
|
|
169
265
|
msgid "Edit %s"
|
170
266
|
msgstr "Edita %s"
|
171
267
|
|
268
|
+
msgid "Edit Ansible Roles"
|
269
|
+
msgstr ""
|
270
|
+
|
172
271
|
msgid "Edit Ansible Variable"
|
173
272
|
msgstr ""
|
174
273
|
|
274
|
+
msgid "Edit Ansible roles"
|
275
|
+
msgstr ""
|
276
|
+
|
277
|
+
msgid "Enable web console"
|
278
|
+
msgstr ""
|
279
|
+
|
175
280
|
msgid "Enable/disable WinRM server certificate validation when running Ansible playbooks. You can override this on hosts by adding a parameter \"ansible_winrm_server_cert_validation\""
|
176
281
|
msgstr ""
|
177
282
|
|
178
|
-
msgid "Error
|
283
|
+
msgid "Error!"
|
284
|
+
msgstr ""
|
285
|
+
|
286
|
+
msgid "Executed at"
|
287
|
+
msgstr ""
|
288
|
+
|
289
|
+
msgid "Failed to import roles and variables "
|
290
|
+
msgstr ""
|
291
|
+
|
292
|
+
msgid "Fetch Ansible playbooks available to be synced"
|
179
293
|
msgstr ""
|
180
294
|
|
181
|
-
msgid "Fetch Ansible roles available to be
|
295
|
+
msgid "Fetch Ansible roles available to be synced"
|
182
296
|
msgstr ""
|
183
297
|
|
184
298
|
msgid "Foreman"
|
@@ -199,21 +313,21 @@ msgstr ""
|
|
199
313
|
msgid "Hide all values for this parameter."
|
200
314
|
msgstr ""
|
201
315
|
|
316
|
+
msgid "Host assigned Ansible roles"
|
317
|
+
msgstr ""
|
318
|
+
|
202
319
|
msgid "Host group has no associated hosts"
|
203
320
|
msgstr ""
|
204
321
|
|
322
|
+
msgid "Host not found by id: %s"
|
323
|
+
msgstr ""
|
324
|
+
|
205
325
|
msgid "Hostgroups"
|
206
326
|
msgstr "Grups d'amfitrions"
|
207
327
|
|
208
|
-
msgid "Hostgroups count"
|
209
|
-
msgstr ""
|
210
|
-
|
211
328
|
msgid "Hosts"
|
212
329
|
msgstr "Amfitrions"
|
213
330
|
|
214
|
-
msgid "Hosts count"
|
215
|
-
msgstr ""
|
216
|
-
|
217
331
|
msgid "IDs of associated ansible roles"
|
218
332
|
msgstr ""
|
219
333
|
|
@@ -235,13 +349,10 @@ msgstr "En cas que estigui marcat, es produirà un error si no hi ha cap valor p
|
|
235
349
|
msgid "Import"
|
236
350
|
msgstr "Importa"
|
237
351
|
|
238
|
-
msgid "Import
|
239
|
-
msgstr ""
|
240
|
-
|
241
|
-
msgid "Import Ansible variables. This will only import variables for already existing roles, it will not import any new roles"
|
352
|
+
msgid "Import Puppet classes"
|
242
353
|
msgstr ""
|
243
354
|
|
244
|
-
msgid "Import
|
355
|
+
msgid "Import Role"
|
245
356
|
msgstr ""
|
246
357
|
|
247
358
|
msgid "Import facts"
|
@@ -250,7 +361,16 @@ msgstr ""
|
|
250
361
|
msgid "Import from %s"
|
251
362
|
msgstr "Importa de %s"
|
252
363
|
|
253
|
-
msgid "Import
|
364
|
+
msgid "Import playbooks has finished successfully"
|
365
|
+
msgstr ""
|
366
|
+
|
367
|
+
msgid "Import roles And Variables"
|
368
|
+
msgstr ""
|
369
|
+
|
370
|
+
msgid "Import roles and variables has finished successfully"
|
371
|
+
msgstr ""
|
372
|
+
|
373
|
+
msgid "Import roles and variables started: "
|
254
374
|
msgstr ""
|
255
375
|
|
256
376
|
msgid "Imported at"
|
@@ -265,9 +385,27 @@ msgstr ""
|
|
265
385
|
msgid "Include default value when merging all matching values."
|
266
386
|
msgstr ""
|
267
387
|
|
388
|
+
msgid "Include/Exclude Tags"
|
389
|
+
msgstr ""
|
390
|
+
|
391
|
+
msgid "Include\\Exclude tags for Ansible run"
|
392
|
+
msgstr ""
|
393
|
+
|
394
|
+
msgid "Inherited from Hostgroup"
|
395
|
+
msgstr ""
|
396
|
+
|
268
397
|
msgid "Insights remediation on %{hosts_count} host(s) has finished successfully"
|
269
398
|
msgstr ""
|
270
399
|
|
400
|
+
msgid "Invalid, expected one of: %s"
|
401
|
+
msgstr ""
|
402
|
+
|
403
|
+
msgid "Invalid, expected to match a regex: %s"
|
404
|
+
msgstr ""
|
405
|
+
|
406
|
+
msgid "Inventory"
|
407
|
+
msgstr ""
|
408
|
+
|
271
409
|
msgid "Job Details"
|
272
410
|
msgstr ""
|
273
411
|
|
@@ -313,7 +451,7 @@ msgstr ""
|
|
313
451
|
msgid "Message"
|
314
452
|
msgstr "Missatge"
|
315
453
|
|
316
|
-
msgid "
|
454
|
+
msgid "Must not be in the past"
|
317
455
|
msgstr ""
|
318
456
|
|
319
457
|
msgid "Name"
|
@@ -325,43 +463,61 @@ msgstr "Nom de la variable"
|
|
325
463
|
msgid "Nest"
|
326
464
|
msgstr ""
|
327
465
|
|
328
|
-
msgid "New"
|
329
|
-
msgstr "Nou"
|
330
|
-
|
331
466
|
msgid "New Ansible Variable"
|
332
467
|
msgstr ""
|
333
468
|
|
469
|
+
msgid "Next Run"
|
470
|
+
msgstr ""
|
471
|
+
|
334
472
|
msgid ""
|
335
|
-
"No
|
473
|
+
"No Ansible Roles were found in Foreman. If you want to assign roles to your hosts,\n"
|
336
474
|
" you have to import them first."
|
337
475
|
msgstr ""
|
338
476
|
|
339
|
-
msgid "No
|
477
|
+
msgid "No Ansible roles assigned"
|
478
|
+
msgstr ""
|
479
|
+
|
480
|
+
msgid "No Ansible variables found for Host"
|
481
|
+
msgstr ""
|
482
|
+
|
483
|
+
msgid "No added or removed roles nor variables detected on %s."
|
340
484
|
msgstr ""
|
341
485
|
|
342
|
-
msgid "No
|
486
|
+
msgid "No added or removed roles nor variables."
|
487
|
+
msgstr ""
|
488
|
+
|
489
|
+
msgid "No additional data"
|
490
|
+
msgstr ""
|
491
|
+
|
492
|
+
msgid "No changes detected in specified Ansible Roles and their variables"
|
343
493
|
msgstr ""
|
344
494
|
|
345
495
|
msgid "No changes in variables detected on %s."
|
346
496
|
msgstr ""
|
347
497
|
|
498
|
+
msgid "No config job for Ansible roles scheduled"
|
499
|
+
msgstr ""
|
500
|
+
|
501
|
+
msgid "No previous job executions found"
|
502
|
+
msgstr ""
|
503
|
+
|
348
504
|
msgid "No proxy found to import variables from, ensure that the smart proxy has the Ansible feature enabled."
|
349
505
|
msgstr ""
|
350
506
|
|
507
|
+
msgid "Nothing Found!"
|
508
|
+
msgstr ""
|
509
|
+
|
351
510
|
msgid "Nothing to show"
|
352
511
|
msgstr "Res a mostrar"
|
353
512
|
|
354
|
-
msgid "
|
355
|
-
msgstr "En desús"
|
356
|
-
|
357
|
-
msgid "Obsolete Ansible roles"
|
513
|
+
msgid "Notice that ansible roles run in check mode."
|
358
514
|
msgstr ""
|
359
515
|
|
360
|
-
msgid "
|
516
|
+
msgid "Number of tasks which should be sent to the smart proxy in one request, if foreman_tasks_proxy_batch_trigger is enabled. If set, overrides foreman_tasks_proxy_batch_size setting for Ansible jobs."
|
361
517
|
msgstr ""
|
362
518
|
|
363
|
-
msgid "
|
364
|
-
msgstr "
|
519
|
+
msgid "Only variables marked to Override are shown here."
|
520
|
+
msgstr ""
|
365
521
|
|
366
522
|
msgid "Optional Input Validator"
|
367
523
|
msgstr ""
|
@@ -381,9 +537,27 @@ msgstr ""
|
|
381
537
|
msgid "Overriden"
|
382
538
|
msgstr ""
|
383
539
|
|
540
|
+
msgid "Permission Denied"
|
541
|
+
msgstr ""
|
542
|
+
|
543
|
+
msgid "Permission denied"
|
544
|
+
msgstr ""
|
545
|
+
|
546
|
+
msgid "Playbooks"
|
547
|
+
msgstr ""
|
548
|
+
|
549
|
+
msgid "Please request one of the required permissions listed below from a Foreman administrator:"
|
550
|
+
msgstr ""
|
551
|
+
|
384
552
|
msgid "Post-provision timeout"
|
385
553
|
msgstr ""
|
386
554
|
|
555
|
+
msgid "Preupgrade job"
|
556
|
+
msgstr ""
|
557
|
+
|
558
|
+
msgid "Previously executed jobs"
|
559
|
+
msgstr ""
|
560
|
+
|
387
561
|
msgid "Prioritize Attribute Order"
|
388
562
|
msgstr ""
|
389
563
|
|
@@ -393,6 +567,9 @@ msgstr ""
|
|
393
567
|
msgid "Proxy not found"
|
394
568
|
msgstr ""
|
395
569
|
|
570
|
+
msgid "Proxy tasks batch size for Ansible"
|
571
|
+
msgstr ""
|
572
|
+
|
396
573
|
msgid "Remediation Plan"
|
397
574
|
msgstr ""
|
398
575
|
|
@@ -402,12 +579,27 @@ msgstr ""
|
|
402
579
|
msgid "Remove"
|
403
580
|
msgstr "Suprimeix"
|
404
581
|
|
582
|
+
msgid "Remove Role"
|
583
|
+
msgstr ""
|
584
|
+
|
585
|
+
msgid "Remove all"
|
586
|
+
msgstr ""
|
587
|
+
|
405
588
|
msgid "Remove duplicate values (only array type)"
|
406
589
|
msgstr ""
|
407
590
|
|
591
|
+
msgid "Remove selected"
|
592
|
+
msgstr ""
|
593
|
+
|
408
594
|
msgid "Report format, defaults to '%s'"
|
409
595
|
msgstr ""
|
410
596
|
|
597
|
+
msgid "Request the following permissions from administrator: %s."
|
598
|
+
msgstr ""
|
599
|
+
|
600
|
+
msgid "Result"
|
601
|
+
msgstr ""
|
602
|
+
|
411
603
|
msgid "Role ID"
|
412
604
|
msgstr ""
|
413
605
|
|
@@ -429,6 +621,9 @@ msgstr ""
|
|
429
621
|
msgid "Run an Ansible playbook against given hosts"
|
430
622
|
msgstr ""
|
431
623
|
|
624
|
+
msgid "Run an Ansible playbook to enable web console on given hosts"
|
625
|
+
msgstr ""
|
626
|
+
|
432
627
|
msgid "Run playbook"
|
433
628
|
msgstr ""
|
434
629
|
|
@@ -450,10 +645,16 @@ msgstr ""
|
|
450
645
|
msgid "Runs an Ansible playbook which contains all the roles defined for a host"
|
451
646
|
msgstr ""
|
452
647
|
|
648
|
+
msgid "Schedule"
|
649
|
+
msgstr ""
|
650
|
+
|
453
651
|
msgid "Schedule generating of Ansible Inventory report"
|
454
652
|
msgstr ""
|
455
653
|
|
456
|
-
msgid "
|
654
|
+
msgid "Schedule recurring job"
|
655
|
+
msgstr ""
|
656
|
+
|
657
|
+
msgid "Scheduled recurring jobs"
|
457
658
|
msgstr ""
|
458
659
|
|
459
660
|
msgid "Set the order in which values are resolved."
|
@@ -477,12 +678,42 @@ msgstr ""
|
|
477
678
|
msgid "Smart Proxy to import from"
|
478
679
|
msgstr ""
|
479
680
|
|
681
|
+
msgid "Smart Proxy to sync from"
|
682
|
+
msgstr ""
|
683
|
+
|
480
684
|
msgid "Smart proxy id is required"
|
481
685
|
msgstr ""
|
482
686
|
|
687
|
+
msgid "Source"
|
688
|
+
msgstr ""
|
689
|
+
|
690
|
+
msgid "Source attribute"
|
691
|
+
msgstr ""
|
692
|
+
|
483
693
|
msgid "Specify Matchers"
|
484
694
|
msgstr ""
|
485
695
|
|
696
|
+
msgid "State"
|
697
|
+
msgstr ""
|
698
|
+
|
699
|
+
msgid "Submit"
|
700
|
+
msgstr ""
|
701
|
+
|
702
|
+
msgid "Sync Ansible playbooks"
|
703
|
+
msgstr ""
|
704
|
+
|
705
|
+
msgid "Sync Ansible roles"
|
706
|
+
msgstr ""
|
707
|
+
|
708
|
+
msgid "Tags"
|
709
|
+
msgstr ""
|
710
|
+
|
711
|
+
msgid "Task"
|
712
|
+
msgstr ""
|
713
|
+
|
714
|
+
msgid "Task Details"
|
715
|
+
msgstr ""
|
716
|
+
|
486
717
|
msgid "The order in which matchers keys are processed, first match wins.<br> You may use multiple attributes as a matcher key, for example, an order of <code>host group, environment</code> would expect a matcher such as <code>hostgroup = \"web servers\", environment = production</code>"
|
487
718
|
msgstr ""
|
488
719
|
"L'ordre en el qual es processen les claus del classificador, la primera coincidència guanya.<br> Podeu utilitzar diversos atributs com a part d'una clau del classificador, per exemple, amb un ordre de\n"
|
@@ -495,13 +726,37 @@ msgstr "L'ordre en què es resolen els valors"
|
|
495
726
|
msgid "There are no Ansible roles to play"
|
496
727
|
msgstr ""
|
497
728
|
|
498
|
-
msgid "
|
729
|
+
msgid "There was a following error when assigning Ansible Roles: %s"
|
499
730
|
msgstr ""
|
500
731
|
|
501
|
-
msgid "
|
732
|
+
msgid "There was a following error when changing Ansible variable override: %s"
|
733
|
+
msgstr ""
|
734
|
+
|
735
|
+
msgid "There was a following error when creating Ansible job: %s"
|
736
|
+
msgstr ""
|
737
|
+
|
738
|
+
msgid "There was a following error when deleting Ansible config job: %s"
|
739
|
+
msgstr ""
|
740
|
+
|
741
|
+
msgid "There was a following error when deleting Ansible variable override: %s"
|
742
|
+
msgstr ""
|
743
|
+
|
744
|
+
msgid "This Ansible role is inherited from host group"
|
745
|
+
msgstr ""
|
746
|
+
|
747
|
+
msgid "This Ansible role is inherited from parent host group"
|
748
|
+
msgstr ""
|
749
|
+
|
750
|
+
msgid "This list consists of host assigned roles and group assigned roles. Group assigned roles will always be executed prior to host assigned roles"
|
502
751
|
msgstr ""
|
503
752
|
|
504
|
-
msgid "
|
753
|
+
msgid "Those roles will be excluded when importing roles from smart proxy, The expected input is comma separated values and you can use * wildcard metacharactersFor example: foo*, *b*,*bar"
|
754
|
+
msgstr ""
|
755
|
+
|
756
|
+
msgid "Timeout (in minutes) when hosts should have reported."
|
757
|
+
msgstr ""
|
758
|
+
|
759
|
+
msgid "Timeout (in seconds) to set when Foreman will trigger a play Ansible roles task after a host is fully provisioned. Set this to the maximum time you expect a host to take until it is ready after a reboot."
|
505
760
|
msgstr ""
|
506
761
|
|
507
762
|
msgid "Type"
|
@@ -513,6 +768,12 @@ msgstr "Tipus de valors de validació"
|
|
513
768
|
msgid "Types of variable values"
|
514
769
|
msgstr "Tipus de valors de la variable"
|
515
770
|
|
771
|
+
msgid "Unable to get playbook's names from Ansible"
|
772
|
+
msgstr ""
|
773
|
+
|
774
|
+
msgid "Unable to get playbooks from Ansible"
|
775
|
+
msgstr ""
|
776
|
+
|
516
777
|
msgid "Unable to get roles from Ansible"
|
517
778
|
msgstr ""
|
518
779
|
|
@@ -522,9 +783,24 @@ msgstr ""
|
|
522
783
|
msgid "Update"
|
523
784
|
msgstr "Actualitza"
|
524
785
|
|
786
|
+
msgid "Update Role Variables"
|
787
|
+
msgstr ""
|
788
|
+
|
525
789
|
msgid "Updates Ansible variable"
|
526
790
|
msgstr ""
|
527
791
|
|
792
|
+
msgid "Upgrade Capsules on given Capsule server hosts"
|
793
|
+
msgstr ""
|
794
|
+
|
795
|
+
msgid "Upgrade Capsules on given hosts"
|
796
|
+
msgstr ""
|
797
|
+
|
798
|
+
msgid "Use drag and drop to change order of the roles. Ordering of roles is respected for Ansible runs, inherited roles are always before those assigned directly"
|
799
|
+
msgstr ""
|
800
|
+
|
801
|
+
msgid "Use sync instead, to sync roles from Smart Proxy with Ansible feature enabled"
|
802
|
+
msgstr ""
|
803
|
+
|
528
804
|
msgid "Use this connection type by default when running Ansible playbooks. You can override this on hosts by adding a parameter \"ansible_connection\""
|
529
805
|
msgstr ""
|
530
806
|
|
@@ -534,6 +810,9 @@ msgstr ""
|
|
534
810
|
msgid "Used to enforce certain values for the parameter values"
|
535
811
|
msgstr ""
|
536
812
|
|
813
|
+
msgid "Value"
|
814
|
+
msgstr ""
|
815
|
+
|
537
816
|
msgid "Value to use when there is no match."
|
538
817
|
msgstr ""
|
539
818
|
|
@@ -554,3 +833,39 @@ msgstr ""
|
|
554
833
|
|
555
834
|
msgid "WinRM cert Validation"
|
556
835
|
msgstr ""
|
836
|
+
|
837
|
+
msgid "You are not authorized to perform this action."
|
838
|
+
msgstr ""
|
839
|
+
|
840
|
+
msgid "You are not authorized to view the page. "
|
841
|
+
msgstr ""
|
842
|
+
|
843
|
+
msgid "can't be blank"
|
844
|
+
msgstr ""
|
845
|
+
|
846
|
+
msgid "daily"
|
847
|
+
msgstr ""
|
848
|
+
|
849
|
+
msgid "false"
|
850
|
+
msgstr ""
|
851
|
+
|
852
|
+
msgid "hourly"
|
853
|
+
msgstr ""
|
854
|
+
|
855
|
+
msgid "is required"
|
856
|
+
msgstr ""
|
857
|
+
|
858
|
+
msgid "monthly"
|
859
|
+
msgstr ""
|
860
|
+
|
861
|
+
msgid "true"
|
862
|
+
msgstr ""
|
863
|
+
|
864
|
+
msgid "view all assigned roles"
|
865
|
+
msgstr ""
|
866
|
+
|
867
|
+
msgid "view the task in progress"
|
868
|
+
msgstr ""
|
869
|
+
|
870
|
+
msgid "weekly"
|
871
|
+
msgstr ""
|
File without changes
|