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