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
@@ -25,12 +25,21 @@ msgstr ""
|
|
25
25
|
"Language: nl_NL\n"
|
26
26
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
27
27
|
|
28
|
+
msgid "%(selectedCount)s of %(totalCount)s items selected"
|
29
|
+
msgstr ""
|
30
|
+
|
28
31
|
msgid "%s ago"
|
29
32
|
msgstr "%s geleden"
|
30
33
|
|
31
34
|
msgid "%{cfgmgmt} out of sync disabled"
|
32
35
|
msgstr ""
|
33
36
|
|
37
|
+
msgid "(from host group)"
|
38
|
+
msgstr ""
|
39
|
+
|
40
|
+
msgid "A comma separated list of tags to use for Ansible run"
|
41
|
+
msgstr ""
|
42
|
+
|
34
43
|
msgid "Action with sub plans"
|
35
44
|
msgstr ""
|
36
45
|
|
@@ -40,31 +49,70 @@ msgstr "Acties"
|
|
40
49
|
msgid "Add"
|
41
50
|
msgstr ""
|
42
51
|
|
52
|
+
msgid "Add all"
|
53
|
+
msgstr ""
|
54
|
+
|
55
|
+
msgid "Add selected"
|
56
|
+
msgstr ""
|
57
|
+
|
58
|
+
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"
|
59
|
+
msgstr ""
|
60
|
+
|
61
|
+
msgid "All assigned Ansible roles"
|
62
|
+
msgstr ""
|
63
|
+
|
43
64
|
msgid "Ansible"
|
44
65
|
msgstr "Ansible"
|
45
66
|
|
67
|
+
msgid "Ansible playbooks names to be synced"
|
68
|
+
msgstr ""
|
69
|
+
|
46
70
|
msgid "Ansible Role"
|
47
71
|
msgstr ""
|
48
72
|
|
49
73
|
msgid "Ansible Roles"
|
50
74
|
msgstr ""
|
51
75
|
|
76
|
+
msgid "Ansible Roles were successfully assigned."
|
77
|
+
msgstr ""
|
78
|
+
|
52
79
|
msgid "Ansible Variable Details"
|
53
80
|
msgstr ""
|
54
81
|
|
55
82
|
msgid "Ansible Variable Details (Imported)"
|
56
83
|
msgstr ""
|
57
84
|
|
85
|
+
msgid "Ansible Variable not found by id: %s"
|
86
|
+
msgstr ""
|
87
|
+
|
58
88
|
msgid "Ansible Variables"
|
59
89
|
msgstr ""
|
60
90
|
|
91
|
+
msgid "Ansible check mode"
|
92
|
+
msgstr ""
|
93
|
+
|
94
|
+
msgid "Ansible job was successfully canceled."
|
95
|
+
msgstr ""
|
96
|
+
|
97
|
+
msgid "Ansible job was successfully created."
|
98
|
+
msgstr ""
|
99
|
+
|
100
|
+
msgid "Ansible provider specific inputs"
|
101
|
+
msgstr ""
|
102
|
+
|
61
103
|
msgid "Ansible report timeout"
|
62
104
|
msgstr ""
|
63
105
|
|
64
106
|
msgid "Ansible role"
|
65
107
|
msgstr ""
|
66
108
|
|
67
|
-
msgid "Ansible role names to
|
109
|
+
msgid "Ansible role names to be imported"
|
110
|
+
msgstr ""
|
111
|
+
|
112
|
+
msgid "Ansible role names to be synced"
|
113
|
+
msgstr ""
|
114
|
+
|
115
|
+
msgid "Ansible roles assigned directly to host"
|
68
116
|
msgstr ""
|
69
117
|
|
70
118
|
msgid "Ansible roles to assign to a host"
|
@@ -73,13 +121,31 @@ msgstr ""
|
|
73
121
|
msgid "Ansible roles to assign to a hostgroup"
|
74
122
|
msgstr ""
|
75
123
|
|
124
|
+
msgid "Ansible roles to ignore"
|
125
|
+
msgstr ""
|
126
|
+
|
76
127
|
msgid "Ansible support in Foreman"
|
77
128
|
msgstr "Ansible ondersteuning in Foreman"
|
78
129
|
|
130
|
+
msgid "Ansible variable override successfully changed."
|
131
|
+
msgstr ""
|
132
|
+
|
133
|
+
msgid "Ansible variable override was successfully deleted."
|
134
|
+
msgstr ""
|
135
|
+
|
79
136
|
msgid "Ansible: Run Insights maintenance plan"
|
80
137
|
msgstr ""
|
81
138
|
|
82
|
-
msgid "
|
139
|
+
msgid "Are you sure you want to cancel Ansible config job?"
|
140
|
+
msgstr ""
|
141
|
+
|
142
|
+
msgid "Are you sure you want to delete override for %s?"
|
143
|
+
msgstr ""
|
144
|
+
|
145
|
+
msgid "Assign Ansible roles"
|
146
|
+
msgstr ""
|
147
|
+
|
148
|
+
msgid "Assigned Ansible Roles"
|
83
149
|
msgstr ""
|
84
150
|
|
85
151
|
msgid "Assigns Ansible roles to a host"
|
@@ -88,6 +154,12 @@ msgstr ""
|
|
88
154
|
msgid "Assigns Ansible roles to a hostgroup"
|
89
155
|
msgstr ""
|
90
156
|
|
157
|
+
msgid "Available Ansible Roles"
|
158
|
+
msgstr ""
|
159
|
+
|
160
|
+
msgid "Available Ansible roles"
|
161
|
+
msgstr ""
|
162
|
+
|
91
163
|
msgid "Avoid duplicate values when merging them (only array type)?"
|
92
164
|
msgstr ""
|
93
165
|
|
@@ -97,29 +169,26 @@ msgstr ""
|
|
97
169
|
msgid "Cancel"
|
98
170
|
msgstr "Annuleren"
|
99
171
|
|
100
|
-
msgid "
|
172
|
+
msgid "Cancel Ansible config job"
|
101
173
|
msgstr ""
|
102
174
|
|
103
|
-
msgid "Changed Ansible
|
175
|
+
msgid "Changed Ansible roles"
|
104
176
|
msgstr ""
|
105
177
|
|
106
|
-
msgid "
|
107
|
-
msgstr "
|
108
|
-
|
109
|
-
msgid "Check/Uncheck all %s changes"
|
110
|
-
msgstr "Vink alle %s wijzigingen aan/uit"
|
178
|
+
msgid "Clone"
|
179
|
+
msgstr "Klonen"
|
111
180
|
|
112
|
-
msgid "
|
113
|
-
msgstr "
|
181
|
+
msgid "Close"
|
182
|
+
msgstr ""
|
114
183
|
|
115
|
-
msgid "
|
116
|
-
msgstr "
|
184
|
+
msgid "Configure Ansible Job"
|
185
|
+
msgstr ""
|
117
186
|
|
118
|
-
msgid "
|
187
|
+
msgid "Configure Recurring Job"
|
119
188
|
msgstr ""
|
120
189
|
|
121
|
-
msgid "
|
122
|
-
msgstr "
|
190
|
+
msgid "Confirm"
|
191
|
+
msgstr ""
|
123
192
|
|
124
193
|
msgid "Connection type"
|
125
194
|
msgstr ""
|
@@ -139,33 +208,60 @@ msgstr ""
|
|
139
208
|
msgid "Create an override value for a specific ansible variable"
|
140
209
|
msgstr ""
|
141
210
|
|
211
|
+
msgid "DEPRECATED: Import Ansible roles"
|
212
|
+
msgstr ""
|
213
|
+
|
214
|
+
msgid "DEPRECATED: Import Ansible variables. This will only import variables for already existing roles, it will not import any new roles"
|
215
|
+
msgstr ""
|
216
|
+
|
217
|
+
msgid "DEPRECATED: Obsolete Ansible roles"
|
218
|
+
msgstr ""
|
219
|
+
|
220
|
+
msgid "DEPRECATED: Obsolete Ansible variables. This will only obsolete variables for already existing roles, it will not delete any old roles"
|
221
|
+
msgstr ""
|
222
|
+
|
142
223
|
msgid "Default Ansible inventory report template"
|
143
224
|
msgstr ""
|
144
225
|
|
145
226
|
msgid "Default Behavior"
|
146
227
|
msgstr ""
|
147
228
|
|
229
|
+
msgid "Default value"
|
230
|
+
msgstr ""
|
231
|
+
|
148
232
|
msgid "Default value of variable"
|
149
233
|
msgstr "Standaard waarde van een variabele"
|
150
234
|
|
151
235
|
msgid "Default verbosity level"
|
152
236
|
msgstr ""
|
153
237
|
|
238
|
+
msgid "Delete"
|
239
|
+
msgstr ""
|
240
|
+
|
154
241
|
msgid "Delete %s?"
|
155
242
|
msgstr "%s verwijderen?"
|
156
243
|
|
244
|
+
msgid "Delete Ansible variable override"
|
245
|
+
msgstr ""
|
246
|
+
|
157
247
|
msgid "Deletes Ansible role"
|
158
248
|
msgstr ""
|
159
249
|
|
160
250
|
msgid "Deletes Ansible variable"
|
161
251
|
msgstr ""
|
162
252
|
|
253
|
+
msgid "Description"
|
254
|
+
msgstr ""
|
255
|
+
|
163
256
|
msgid "Description of variable"
|
164
257
|
msgstr "Beschrijving van een variabele"
|
165
258
|
|
166
259
|
msgid "Destroy an override value"
|
167
260
|
msgstr ""
|
168
261
|
|
262
|
+
msgid "Directly assigned to Host"
|
263
|
+
msgstr ""
|
264
|
+
|
169
265
|
msgid "Disable host configuration status turning to out of sync for %{cfgmgmt} after report does not arrive within configured interval"
|
170
266
|
msgstr ""
|
171
267
|
|
@@ -175,16 +271,34 @@ msgstr ""
|
|
175
271
|
msgid "Edit %s"
|
176
272
|
msgstr "Bewerken %s"
|
177
273
|
|
274
|
+
msgid "Edit Ansible Roles"
|
275
|
+
msgstr ""
|
276
|
+
|
178
277
|
msgid "Edit Ansible Variable"
|
179
278
|
msgstr ""
|
180
279
|
|
280
|
+
msgid "Edit Ansible roles"
|
281
|
+
msgstr ""
|
282
|
+
|
283
|
+
msgid "Enable web console"
|
284
|
+
msgstr ""
|
285
|
+
|
181
286
|
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\""
|
182
287
|
msgstr ""
|
183
288
|
|
184
|
-
msgid "Error
|
289
|
+
msgid "Error!"
|
290
|
+
msgstr ""
|
291
|
+
|
292
|
+
msgid "Executed at"
|
185
293
|
msgstr ""
|
186
294
|
|
187
|
-
msgid "
|
295
|
+
msgid "Failed to import roles and variables "
|
296
|
+
msgstr ""
|
297
|
+
|
298
|
+
msgid "Fetch Ansible playbooks available to be synced"
|
299
|
+
msgstr ""
|
300
|
+
|
301
|
+
msgid "Fetch Ansible roles available to be synced"
|
188
302
|
msgstr ""
|
189
303
|
|
190
304
|
msgid "Foreman"
|
@@ -205,19 +319,19 @@ msgstr ""
|
|
205
319
|
msgid "Hide all values for this parameter."
|
206
320
|
msgstr ""
|
207
321
|
|
208
|
-
msgid "Host
|
322
|
+
msgid "Host assigned Ansible roles"
|
209
323
|
msgstr ""
|
210
324
|
|
211
|
-
msgid "
|
325
|
+
msgid "Host group has no associated hosts"
|
212
326
|
msgstr ""
|
213
327
|
|
214
|
-
msgid "
|
328
|
+
msgid "Host not found by id: %s"
|
215
329
|
msgstr ""
|
216
330
|
|
217
|
-
msgid "
|
331
|
+
msgid "Hostgroups"
|
218
332
|
msgstr ""
|
219
333
|
|
220
|
-
msgid "Hosts
|
334
|
+
msgid "Hosts"
|
221
335
|
msgstr ""
|
222
336
|
|
223
337
|
msgid "IDs of associated ansible roles"
|
@@ -241,13 +355,10 @@ msgstr "Wanneer aangevinkt, zal een fout geven als er geen standaardwaarde is en
|
|
241
355
|
msgid "Import"
|
242
356
|
msgstr "Geimporteerd"
|
243
357
|
|
244
|
-
msgid "Import
|
245
|
-
msgstr ""
|
246
|
-
|
247
|
-
msgid "Import Ansible variables. This will only import variables for already existing roles, it will not import any new roles"
|
358
|
+
msgid "Import Puppet classes"
|
248
359
|
msgstr ""
|
249
360
|
|
250
|
-
msgid "Import
|
361
|
+
msgid "Import Role"
|
251
362
|
msgstr ""
|
252
363
|
|
253
364
|
msgid "Import facts"
|
@@ -256,7 +367,16 @@ msgstr ""
|
|
256
367
|
msgid "Import from %s"
|
257
368
|
msgstr ""
|
258
369
|
|
259
|
-
msgid "Import
|
370
|
+
msgid "Import playbooks has finished successfully"
|
371
|
+
msgstr ""
|
372
|
+
|
373
|
+
msgid "Import roles And Variables"
|
374
|
+
msgstr ""
|
375
|
+
|
376
|
+
msgid "Import roles and variables has finished successfully"
|
377
|
+
msgstr ""
|
378
|
+
|
379
|
+
msgid "Import roles and variables started: "
|
260
380
|
msgstr ""
|
261
381
|
|
262
382
|
msgid "Imported at"
|
@@ -271,9 +391,27 @@ msgstr "Voeg een default value toe wanneer alle matching waarden worden samengev
|
|
271
391
|
msgid "Include default value when merging all matching values."
|
272
392
|
msgstr ""
|
273
393
|
|
394
|
+
msgid "Include/Exclude Tags"
|
395
|
+
msgstr ""
|
396
|
+
|
397
|
+
msgid "Include\\Exclude tags for Ansible run"
|
398
|
+
msgstr ""
|
399
|
+
|
400
|
+
msgid "Inherited from Hostgroup"
|
401
|
+
msgstr ""
|
402
|
+
|
274
403
|
msgid "Insights remediation on %{hosts_count} host(s) has finished successfully"
|
275
404
|
msgstr ""
|
276
405
|
|
406
|
+
msgid "Invalid, expected one of: %s"
|
407
|
+
msgstr ""
|
408
|
+
|
409
|
+
msgid "Invalid, expected to match a regex: %s"
|
410
|
+
msgstr ""
|
411
|
+
|
412
|
+
msgid "Inventory"
|
413
|
+
msgstr ""
|
414
|
+
|
277
415
|
msgid "Job Details"
|
278
416
|
msgstr ""
|
279
417
|
|
@@ -319,7 +457,7 @@ msgstr "Voeg alle matching values samen (alleen array/hash types)"
|
|
319
457
|
msgid "Message"
|
320
458
|
msgstr "Bericht"
|
321
459
|
|
322
|
-
msgid "
|
460
|
+
msgid "Must not be in the past"
|
323
461
|
msgstr ""
|
324
462
|
|
325
463
|
msgid "Name"
|
@@ -331,42 +469,60 @@ msgstr "Naam van een variabele"
|
|
331
469
|
msgid "Nest"
|
332
470
|
msgstr ""
|
333
471
|
|
334
|
-
msgid "New"
|
472
|
+
msgid "New Ansible Variable"
|
335
473
|
msgstr ""
|
336
474
|
|
337
|
-
msgid "
|
475
|
+
msgid "Next Run"
|
338
476
|
msgstr ""
|
339
477
|
|
340
478
|
msgid ""
|
341
|
-
"No
|
479
|
+
"No Ansible Roles were found in Foreman. If you want to assign roles to your hosts,\n"
|
342
480
|
" you have to import them first."
|
343
481
|
msgstr ""
|
344
482
|
|
345
|
-
msgid "No
|
483
|
+
msgid "No Ansible roles assigned"
|
484
|
+
msgstr ""
|
485
|
+
|
486
|
+
msgid "No Ansible variables found for Host"
|
487
|
+
msgstr ""
|
488
|
+
|
489
|
+
msgid "No added or removed roles nor variables detected on %s."
|
490
|
+
msgstr ""
|
491
|
+
|
492
|
+
msgid "No added or removed roles nor variables."
|
493
|
+
msgstr ""
|
494
|
+
|
495
|
+
msgid "No additional data"
|
346
496
|
msgstr ""
|
347
497
|
|
348
|
-
msgid "No changes in
|
498
|
+
msgid "No changes detected in specified Ansible Roles and their variables"
|
349
499
|
msgstr ""
|
350
500
|
|
351
501
|
msgid "No changes in variables detected on %s."
|
352
502
|
msgstr ""
|
353
503
|
|
504
|
+
msgid "No config job for Ansible roles scheduled"
|
505
|
+
msgstr ""
|
506
|
+
|
507
|
+
msgid "No previous job executions found"
|
508
|
+
msgstr ""
|
509
|
+
|
354
510
|
msgid "No proxy found to import variables from, ensure that the smart proxy has the Ansible feature enabled."
|
355
511
|
msgstr ""
|
356
512
|
|
357
|
-
msgid "Nothing
|
513
|
+
msgid "Nothing Found!"
|
358
514
|
msgstr ""
|
359
515
|
|
360
|
-
msgid "
|
516
|
+
msgid "Nothing to show"
|
361
517
|
msgstr ""
|
362
518
|
|
363
|
-
msgid "
|
519
|
+
msgid "Notice that ansible roles run in check mode."
|
364
520
|
msgstr ""
|
365
521
|
|
366
|
-
msgid "
|
522
|
+
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."
|
367
523
|
msgstr ""
|
368
524
|
|
369
|
-
msgid "
|
525
|
+
msgid "Only variables marked to Override are shown here."
|
370
526
|
msgstr ""
|
371
527
|
|
372
528
|
msgid "Optional Input Validator"
|
@@ -387,9 +543,27 @@ msgstr "Override waarde, verplicht als uitsluiten uit staat"
|
|
387
543
|
msgid "Overriden"
|
388
544
|
msgstr ""
|
389
545
|
|
546
|
+
msgid "Permission Denied"
|
547
|
+
msgstr ""
|
548
|
+
|
549
|
+
msgid "Permission denied"
|
550
|
+
msgstr ""
|
551
|
+
|
552
|
+
msgid "Playbooks"
|
553
|
+
msgstr ""
|
554
|
+
|
555
|
+
msgid "Please request one of the required permissions listed below from a Foreman administrator:"
|
556
|
+
msgstr ""
|
557
|
+
|
390
558
|
msgid "Post-provision timeout"
|
391
559
|
msgstr ""
|
392
560
|
|
561
|
+
msgid "Preupgrade job"
|
562
|
+
msgstr ""
|
563
|
+
|
564
|
+
msgid "Previously executed jobs"
|
565
|
+
msgstr ""
|
566
|
+
|
393
567
|
msgid "Prioritize Attribute Order"
|
394
568
|
msgstr ""
|
395
569
|
|
@@ -399,6 +573,9 @@ msgstr ""
|
|
399
573
|
msgid "Proxy not found"
|
400
574
|
msgstr ""
|
401
575
|
|
576
|
+
msgid "Proxy tasks batch size for Ansible"
|
577
|
+
msgstr ""
|
578
|
+
|
402
579
|
msgid "Remediation Plan"
|
403
580
|
msgstr ""
|
404
581
|
|
@@ -408,12 +585,27 @@ msgstr ""
|
|
408
585
|
msgid "Remove"
|
409
586
|
msgstr ""
|
410
587
|
|
588
|
+
msgid "Remove Role"
|
589
|
+
msgstr ""
|
590
|
+
|
591
|
+
msgid "Remove all"
|
592
|
+
msgstr ""
|
593
|
+
|
411
594
|
msgid "Remove duplicate values (only array type)"
|
412
595
|
msgstr "Verwijder dubbele waarden (alleen array type)"
|
413
596
|
|
597
|
+
msgid "Remove selected"
|
598
|
+
msgstr ""
|
599
|
+
|
414
600
|
msgid "Report format, defaults to '%s'"
|
415
601
|
msgstr ""
|
416
602
|
|
603
|
+
msgid "Request the following permissions from administrator: %s."
|
604
|
+
msgstr ""
|
605
|
+
|
606
|
+
msgid "Result"
|
607
|
+
msgstr ""
|
608
|
+
|
417
609
|
msgid "Role ID"
|
418
610
|
msgstr ""
|
419
611
|
|
@@ -435,6 +627,9 @@ msgstr ""
|
|
435
627
|
msgid "Run an Ansible playbook against given hosts"
|
436
628
|
msgstr ""
|
437
629
|
|
630
|
+
msgid "Run an Ansible playbook to enable web console on given hosts"
|
631
|
+
msgstr ""
|
632
|
+
|
438
633
|
msgid "Run playbook"
|
439
634
|
msgstr ""
|
440
635
|
|
@@ -456,10 +651,16 @@ msgstr ""
|
|
456
651
|
msgid "Runs an Ansible playbook which contains all the roles defined for a host"
|
457
652
|
msgstr ""
|
458
653
|
|
654
|
+
msgid "Schedule"
|
655
|
+
msgstr ""
|
656
|
+
|
459
657
|
msgid "Schedule generating of Ansible Inventory report"
|
460
658
|
msgstr ""
|
461
659
|
|
462
|
-
msgid "
|
660
|
+
msgid "Schedule recurring job"
|
661
|
+
msgstr ""
|
662
|
+
|
663
|
+
msgid "Scheduled recurring jobs"
|
463
664
|
msgstr ""
|
464
665
|
|
465
666
|
msgid "Set the order in which values are resolved."
|
@@ -483,12 +684,42 @@ msgstr ""
|
|
483
684
|
msgid "Smart Proxy to import from"
|
484
685
|
msgstr ""
|
485
686
|
|
687
|
+
msgid "Smart Proxy to sync from"
|
688
|
+
msgstr ""
|
689
|
+
|
486
690
|
msgid "Smart proxy id is required"
|
487
691
|
msgstr ""
|
488
692
|
|
693
|
+
msgid "Source"
|
694
|
+
msgstr ""
|
695
|
+
|
696
|
+
msgid "Source attribute"
|
697
|
+
msgstr ""
|
698
|
+
|
489
699
|
msgid "Specify Matchers"
|
490
700
|
msgstr ""
|
491
701
|
|
702
|
+
msgid "State"
|
703
|
+
msgstr ""
|
704
|
+
|
705
|
+
msgid "Submit"
|
706
|
+
msgstr ""
|
707
|
+
|
708
|
+
msgid "Sync Ansible playbooks"
|
709
|
+
msgstr ""
|
710
|
+
|
711
|
+
msgid "Sync Ansible roles"
|
712
|
+
msgstr ""
|
713
|
+
|
714
|
+
msgid "Tags"
|
715
|
+
msgstr ""
|
716
|
+
|
717
|
+
msgid "Task"
|
718
|
+
msgstr ""
|
719
|
+
|
720
|
+
msgid "Task Details"
|
721
|
+
msgstr ""
|
722
|
+
|
492
723
|
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>"
|
493
724
|
msgstr ""
|
494
725
|
|
@@ -498,13 +729,37 @@ msgstr "De volgorde waarin waarden worden opgezocht"
|
|
498
729
|
msgid "There are no Ansible roles to play"
|
499
730
|
msgstr ""
|
500
731
|
|
501
|
-
msgid "
|
732
|
+
msgid "There was a following error when assigning Ansible Roles: %s"
|
502
733
|
msgstr ""
|
503
734
|
|
504
|
-
msgid "
|
735
|
+
msgid "There was a following error when changing Ansible variable override: %s"
|
736
|
+
msgstr ""
|
737
|
+
|
738
|
+
msgid "There was a following error when creating Ansible job: %s"
|
739
|
+
msgstr ""
|
740
|
+
|
741
|
+
msgid "There was a following error when deleting Ansible config job: %s"
|
742
|
+
msgstr ""
|
743
|
+
|
744
|
+
msgid "There was a following error when deleting Ansible variable override: %s"
|
745
|
+
msgstr ""
|
746
|
+
|
747
|
+
msgid "This Ansible role is inherited from host group"
|
748
|
+
msgstr ""
|
749
|
+
|
750
|
+
msgid "This Ansible role is inherited from parent host group"
|
751
|
+
msgstr ""
|
752
|
+
|
753
|
+
msgid "This list consists of host assigned roles and group assigned roles. Group assigned roles will always be executed prior to host assigned roles"
|
754
|
+
msgstr ""
|
755
|
+
|
756
|
+
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"
|
757
|
+
msgstr ""
|
758
|
+
|
759
|
+
msgid "Timeout (in minutes) when hosts should have reported."
|
505
760
|
msgstr ""
|
506
761
|
|
507
|
-
msgid "
|
762
|
+
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."
|
508
763
|
msgstr ""
|
509
764
|
|
510
765
|
msgid "Type"
|
@@ -516,6 +771,12 @@ msgstr "Types van validatie waarden"
|
|
516
771
|
msgid "Types of variable values"
|
517
772
|
msgstr "Types van variabelen"
|
518
773
|
|
774
|
+
msgid "Unable to get playbook's names from Ansible"
|
775
|
+
msgstr ""
|
776
|
+
|
777
|
+
msgid "Unable to get playbooks from Ansible"
|
778
|
+
msgstr ""
|
779
|
+
|
519
780
|
msgid "Unable to get roles from Ansible"
|
520
781
|
msgstr ""
|
521
782
|
|
@@ -525,9 +786,24 @@ msgstr ""
|
|
525
786
|
msgid "Update"
|
526
787
|
msgstr ""
|
527
788
|
|
789
|
+
msgid "Update Role Variables"
|
790
|
+
msgstr ""
|
791
|
+
|
528
792
|
msgid "Updates Ansible variable"
|
529
793
|
msgstr ""
|
530
794
|
|
795
|
+
msgid "Upgrade Capsules on given Capsule server hosts"
|
796
|
+
msgstr ""
|
797
|
+
|
798
|
+
msgid "Upgrade Capsules on given hosts"
|
799
|
+
msgstr ""
|
800
|
+
|
801
|
+
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"
|
802
|
+
msgstr ""
|
803
|
+
|
804
|
+
msgid "Use sync instead, to sync roles from Smart Proxy with Ansible feature enabled"
|
805
|
+
msgstr ""
|
806
|
+
|
531
807
|
msgid "Use this connection type by default when running Ansible playbooks. You can override this on hosts by adding a parameter \"ansible_connection\""
|
532
808
|
msgstr ""
|
533
809
|
|
@@ -537,6 +813,9 @@ msgstr ""
|
|
537
813
|
msgid "Used to enforce certain values for the parameter values"
|
538
814
|
msgstr "Gebruikt om sommige waarden af te dwingen voor de parameterwaarden"
|
539
815
|
|
816
|
+
msgid "Value"
|
817
|
+
msgstr ""
|
818
|
+
|
540
819
|
msgid "Value to use when there is no match."
|
541
820
|
msgstr ""
|
542
821
|
|
@@ -557,3 +836,39 @@ msgstr ""
|
|
557
836
|
|
558
837
|
msgid "WinRM cert Validation"
|
559
838
|
msgstr ""
|
839
|
+
|
840
|
+
msgid "You are not authorized to perform this action."
|
841
|
+
msgstr ""
|
842
|
+
|
843
|
+
msgid "You are not authorized to view the page. "
|
844
|
+
msgstr ""
|
845
|
+
|
846
|
+
msgid "can't be blank"
|
847
|
+
msgstr ""
|
848
|
+
|
849
|
+
msgid "daily"
|
850
|
+
msgstr ""
|
851
|
+
|
852
|
+
msgid "false"
|
853
|
+
msgstr ""
|
854
|
+
|
855
|
+
msgid "hourly"
|
856
|
+
msgstr ""
|
857
|
+
|
858
|
+
msgid "is required"
|
859
|
+
msgstr ""
|
860
|
+
|
861
|
+
msgid "monthly"
|
862
|
+
msgstr ""
|
863
|
+
|
864
|
+
msgid "true"
|
865
|
+
msgstr ""
|
866
|
+
|
867
|
+
msgid "view all assigned roles"
|
868
|
+
msgstr ""
|
869
|
+
|
870
|
+
msgid "view the task in progress"
|
871
|
+
msgstr ""
|
872
|
+
|
873
|
+
msgid "weekly"
|
874
|
+
msgstr ""
|
File without changes
|