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
@@ -22,12 +22,21 @@ msgstr ""
|
|
22
22
|
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= "
|
23
23
|
"4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
24
24
|
|
25
|
+
msgid "%(selectedCount)s of %(totalCount)s items selected"
|
26
|
+
msgstr ""
|
27
|
+
|
25
28
|
msgid "%s ago"
|
26
29
|
msgstr "před %s"
|
27
30
|
|
28
31
|
msgid "%{cfgmgmt} out of sync disabled"
|
29
32
|
msgstr ""
|
30
33
|
|
34
|
+
msgid "(from host group)"
|
35
|
+
msgstr ""
|
36
|
+
|
37
|
+
msgid "A comma separated list of tags to use for Ansible run"
|
38
|
+
msgstr ""
|
39
|
+
|
31
40
|
msgid "Action with sub plans"
|
32
41
|
msgstr "Akce s dílčími plány"
|
33
42
|
|
@@ -37,32 +46,71 @@ msgstr "Akce"
|
|
37
46
|
msgid "Add"
|
38
47
|
msgstr "Přidat"
|
39
48
|
|
49
|
+
msgid "Add all"
|
50
|
+
msgstr ""
|
51
|
+
|
52
|
+
msgid "Add selected"
|
53
|
+
msgstr ""
|
54
|
+
|
55
|
+
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"
|
56
|
+
msgstr ""
|
57
|
+
|
58
|
+
msgid "All assigned Ansible roles"
|
59
|
+
msgstr ""
|
60
|
+
|
40
61
|
msgid "Ansible"
|
41
62
|
msgstr "Ansible"
|
42
63
|
|
64
|
+
msgid "Ansible playbooks names to be synced"
|
65
|
+
msgstr ""
|
66
|
+
|
43
67
|
msgid "Ansible Role"
|
44
68
|
msgstr "Ansible role"
|
45
69
|
|
46
70
|
msgid "Ansible Roles"
|
47
71
|
msgstr "Ansilbe role"
|
48
72
|
|
73
|
+
msgid "Ansible Roles were successfully assigned."
|
74
|
+
msgstr ""
|
75
|
+
|
49
76
|
msgid "Ansible Variable Details"
|
50
77
|
msgstr "Podrobnosti o Ansible proměnné"
|
51
78
|
|
52
79
|
msgid "Ansible Variable Details (Imported)"
|
53
80
|
msgstr "Podrobnosti o Ansible proměnné (importováno)"
|
54
81
|
|
82
|
+
msgid "Ansible Variable not found by id: %s"
|
83
|
+
msgstr ""
|
84
|
+
|
55
85
|
msgid "Ansible Variables"
|
56
86
|
msgstr "Ansible proměnné"
|
57
87
|
|
88
|
+
msgid "Ansible check mode"
|
89
|
+
msgstr ""
|
90
|
+
|
91
|
+
msgid "Ansible job was successfully canceled."
|
92
|
+
msgstr ""
|
93
|
+
|
94
|
+
msgid "Ansible job was successfully created."
|
95
|
+
msgstr ""
|
96
|
+
|
97
|
+
msgid "Ansible provider specific inputs"
|
98
|
+
msgstr ""
|
99
|
+
|
58
100
|
msgid "Ansible report timeout"
|
59
101
|
msgstr ""
|
60
102
|
|
61
103
|
msgid "Ansible role"
|
62
104
|
msgstr "Ansible role"
|
63
105
|
|
64
|
-
msgid "Ansible role names to
|
65
|
-
msgstr "
|
106
|
+
msgid "Ansible role names to be imported"
|
107
|
+
msgstr ""
|
108
|
+
|
109
|
+
msgid "Ansible role names to be synced"
|
110
|
+
msgstr ""
|
111
|
+
|
112
|
+
msgid "Ansible roles assigned directly to host"
|
113
|
+
msgstr ""
|
66
114
|
|
67
115
|
msgid "Ansible roles to assign to a host"
|
68
116
|
msgstr "Ansible role, které přidělit hostiteli"
|
@@ -70,14 +118,32 @@ msgstr "Ansible role, které přidělit hostiteli"
|
|
70
118
|
msgid "Ansible roles to assign to a hostgroup"
|
71
119
|
msgstr ""
|
72
120
|
|
121
|
+
msgid "Ansible roles to ignore"
|
122
|
+
msgstr ""
|
123
|
+
|
73
124
|
msgid "Ansible support in Foreman"
|
74
125
|
msgstr "Podpora Ansible ve Foreman"
|
75
126
|
|
127
|
+
msgid "Ansible variable override successfully changed."
|
128
|
+
msgstr ""
|
129
|
+
|
130
|
+
msgid "Ansible variable override was successfully deleted."
|
131
|
+
msgstr ""
|
132
|
+
|
76
133
|
msgid "Ansible: Run Insights maintenance plan"
|
77
134
|
msgstr ""
|
78
135
|
|
79
|
-
msgid "
|
80
|
-
msgstr "
|
136
|
+
msgid "Are you sure you want to cancel Ansible config job?"
|
137
|
+
msgstr ""
|
138
|
+
|
139
|
+
msgid "Are you sure you want to delete override for %s?"
|
140
|
+
msgstr ""
|
141
|
+
|
142
|
+
msgid "Assign Ansible roles"
|
143
|
+
msgstr ""
|
144
|
+
|
145
|
+
msgid "Assigned Ansible Roles"
|
146
|
+
msgstr ""
|
81
147
|
|
82
148
|
msgid "Assigns Ansible roles to a host"
|
83
149
|
msgstr "Přiřadit stroji Ansible role"
|
@@ -85,6 +151,12 @@ msgstr "Přiřadit stroji Ansible role"
|
|
85
151
|
msgid "Assigns Ansible roles to a hostgroup"
|
86
152
|
msgstr "Přiřadit Ansible role skupině strojů"
|
87
153
|
|
154
|
+
msgid "Available Ansible Roles"
|
155
|
+
msgstr ""
|
156
|
+
|
157
|
+
msgid "Available Ansible roles"
|
158
|
+
msgstr ""
|
159
|
+
|
88
160
|
msgid "Avoid duplicate values when merging them (only array type)?"
|
89
161
|
msgstr ""
|
90
162
|
|
@@ -94,29 +166,26 @@ msgstr ""
|
|
94
166
|
msgid "Cancel"
|
95
167
|
msgstr "Storno"
|
96
168
|
|
169
|
+
msgid "Cancel Ansible config job"
|
170
|
+
msgstr ""
|
171
|
+
|
97
172
|
msgid "Changed Ansible roles"
|
98
173
|
msgstr "Změněné Ansible role"
|
99
174
|
|
100
|
-
msgid "
|
101
|
-
msgstr "
|
102
|
-
|
103
|
-
msgid "Check/Uncheck all"
|
104
|
-
msgstr "Zaškrtnout / zrušit zaškrtnutí všeho"
|
105
|
-
|
106
|
-
msgid "Check/Uncheck all %s changes"
|
107
|
-
msgstr "Zaškrtnout / zrušit zaškrtnutí %s změn"
|
175
|
+
msgid "Clone"
|
176
|
+
msgstr "Klonovat"
|
108
177
|
|
109
|
-
msgid "
|
110
|
-
msgstr "
|
178
|
+
msgid "Close"
|
179
|
+
msgstr ""
|
111
180
|
|
112
|
-
msgid "
|
113
|
-
msgstr "
|
181
|
+
msgid "Configure Ansible Job"
|
182
|
+
msgstr ""
|
114
183
|
|
115
|
-
msgid "
|
184
|
+
msgid "Configure Recurring Job"
|
116
185
|
msgstr ""
|
117
186
|
|
118
|
-
msgid "
|
119
|
-
msgstr "
|
187
|
+
msgid "Confirm"
|
188
|
+
msgstr ""
|
120
189
|
|
121
190
|
msgid "Connection type"
|
122
191
|
msgstr "Typ připojení"
|
@@ -136,33 +205,60 @@ msgstr "Vytvořit Ansible proměnnou"
|
|
136
205
|
msgid "Create an override value for a specific ansible variable"
|
137
206
|
msgstr "Vytvořit přepisující hodnotu pro danou ansible proměnnou"
|
138
207
|
|
208
|
+
msgid "DEPRECATED: Import Ansible roles"
|
209
|
+
msgstr ""
|
210
|
+
|
211
|
+
msgid "DEPRECATED: Import Ansible variables. This will only import variables for already existing roles, it will not import any new roles"
|
212
|
+
msgstr ""
|
213
|
+
|
214
|
+
msgid "DEPRECATED: Obsolete Ansible roles"
|
215
|
+
msgstr ""
|
216
|
+
|
217
|
+
msgid "DEPRECATED: Obsolete Ansible variables. This will only obsolete variables for already existing roles, it will not delete any old roles"
|
218
|
+
msgstr ""
|
219
|
+
|
139
220
|
msgid "Default Ansible inventory report template"
|
140
221
|
msgstr ""
|
141
222
|
|
142
223
|
msgid "Default Behavior"
|
143
224
|
msgstr "Výchozí chování"
|
144
225
|
|
226
|
+
msgid "Default value"
|
227
|
+
msgstr ""
|
228
|
+
|
145
229
|
msgid "Default value of variable"
|
146
230
|
msgstr "Výchozí hodnota proměnné"
|
147
231
|
|
148
232
|
msgid "Default verbosity level"
|
149
233
|
msgstr "Výchozí stupeň vypisovaných podrobností"
|
150
234
|
|
235
|
+
msgid "Delete"
|
236
|
+
msgstr ""
|
237
|
+
|
151
238
|
msgid "Delete %s?"
|
152
239
|
msgstr "Smazat %s?"
|
153
240
|
|
241
|
+
msgid "Delete Ansible variable override"
|
242
|
+
msgstr ""
|
243
|
+
|
154
244
|
msgid "Deletes Ansible role"
|
155
245
|
msgstr "Smazat Ansible roli"
|
156
246
|
|
157
247
|
msgid "Deletes Ansible variable"
|
158
248
|
msgstr "Smazat Ansible proměnnou"
|
159
249
|
|
250
|
+
msgid "Description"
|
251
|
+
msgstr ""
|
252
|
+
|
160
253
|
msgid "Description of variable"
|
161
254
|
msgstr "Popis proměnné"
|
162
255
|
|
163
256
|
msgid "Destroy an override value"
|
164
257
|
msgstr "Zlikvidovat přepisující hodnotu"
|
165
258
|
|
259
|
+
msgid "Directly assigned to Host"
|
260
|
+
msgstr ""
|
261
|
+
|
166
262
|
msgid "Disable host configuration status turning to out of sync for %{cfgmgmt} after report does not arrive within configured interval"
|
167
263
|
msgstr ""
|
168
264
|
|
@@ -172,16 +268,34 @@ msgstr "Vypnuto"
|
|
172
268
|
msgid "Edit %s"
|
173
269
|
msgstr "Upravit %s"
|
174
270
|
|
271
|
+
msgid "Edit Ansible Roles"
|
272
|
+
msgstr ""
|
273
|
+
|
175
274
|
msgid "Edit Ansible Variable"
|
176
275
|
msgstr "Upravit Ansible proměnnou"
|
177
276
|
|
277
|
+
msgid "Edit Ansible roles"
|
278
|
+
msgstr ""
|
279
|
+
|
280
|
+
msgid "Enable web console"
|
281
|
+
msgstr ""
|
282
|
+
|
178
283
|
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\""
|
179
284
|
msgstr ""
|
180
285
|
|
181
|
-
msgid "Error
|
182
|
-
msgstr "
|
286
|
+
msgid "Error!"
|
287
|
+
msgstr ""
|
288
|
+
|
289
|
+
msgid "Executed at"
|
290
|
+
msgstr ""
|
291
|
+
|
292
|
+
msgid "Failed to import roles and variables "
|
293
|
+
msgstr ""
|
294
|
+
|
295
|
+
msgid "Fetch Ansible playbooks available to be synced"
|
296
|
+
msgstr ""
|
183
297
|
|
184
|
-
msgid "Fetch Ansible roles available to be
|
298
|
+
msgid "Fetch Ansible roles available to be synced"
|
185
299
|
msgstr ""
|
186
300
|
|
187
301
|
msgid "Foreman"
|
@@ -202,21 +316,21 @@ msgstr "Skrytá hodnota"
|
|
202
316
|
msgid "Hide all values for this parameter."
|
203
317
|
msgstr "Skrýt všechny hodnoty pro tento parametr."
|
204
318
|
|
319
|
+
msgid "Host assigned Ansible roles"
|
320
|
+
msgstr ""
|
321
|
+
|
205
322
|
msgid "Host group has no associated hosts"
|
206
323
|
msgstr ""
|
207
324
|
|
325
|
+
msgid "Host not found by id: %s"
|
326
|
+
msgstr ""
|
327
|
+
|
208
328
|
msgid "Hostgroups"
|
209
329
|
msgstr "Skupiny strojů"
|
210
330
|
|
211
|
-
msgid "Hostgroups count"
|
212
|
-
msgstr ""
|
213
|
-
|
214
331
|
msgid "Hosts"
|
215
332
|
msgstr "Stroje"
|
216
333
|
|
217
|
-
msgid "Hosts count"
|
218
|
-
msgstr "Počet strojů"
|
219
|
-
|
220
334
|
msgid "IDs of associated ansible roles"
|
221
335
|
msgstr ""
|
222
336
|
|
@@ -238,23 +352,29 @@ msgstr ""
|
|
238
352
|
msgid "Import"
|
239
353
|
msgstr "Import"
|
240
354
|
|
241
|
-
msgid "Import Ansible roles"
|
242
|
-
msgstr "Importovat Ansible role"
|
243
|
-
|
244
|
-
msgid "Import Ansible variables. This will only import variables for already existing roles, it will not import any new roles"
|
245
|
-
msgstr ""
|
246
|
-
|
247
355
|
msgid "Import Puppet classes"
|
248
356
|
msgstr "Importovat Puppet třídy"
|
249
357
|
|
358
|
+
msgid "Import Role"
|
359
|
+
msgstr ""
|
360
|
+
|
250
361
|
msgid "Import facts"
|
251
362
|
msgstr "Importovat fakta"
|
252
363
|
|
253
364
|
msgid "Import from %s"
|
254
365
|
msgstr "Importovat z %s"
|
255
366
|
|
256
|
-
msgid "Import
|
257
|
-
msgstr "
|
367
|
+
msgid "Import playbooks has finished successfully"
|
368
|
+
msgstr ""
|
369
|
+
|
370
|
+
msgid "Import roles And Variables"
|
371
|
+
msgstr ""
|
372
|
+
|
373
|
+
msgid "Import roles and variables has finished successfully"
|
374
|
+
msgstr ""
|
375
|
+
|
376
|
+
msgid "Import roles and variables started: "
|
377
|
+
msgstr ""
|
258
378
|
|
259
379
|
msgid "Imported at"
|
260
380
|
msgstr "Importováno v"
|
@@ -268,9 +388,27 @@ msgstr "Při slučování všech odpovídajících hodnota zahrnout výchozí ho
|
|
268
388
|
msgid "Include default value when merging all matching values."
|
269
389
|
msgstr ""
|
270
390
|
|
391
|
+
msgid "Include/Exclude Tags"
|
392
|
+
msgstr ""
|
393
|
+
|
394
|
+
msgid "Include\\Exclude tags for Ansible run"
|
395
|
+
msgstr ""
|
396
|
+
|
397
|
+
msgid "Inherited from Hostgroup"
|
398
|
+
msgstr ""
|
399
|
+
|
271
400
|
msgid "Insights remediation on %{hosts_count} host(s) has finished successfully"
|
272
401
|
msgstr ""
|
273
402
|
|
403
|
+
msgid "Invalid, expected one of: %s"
|
404
|
+
msgstr ""
|
405
|
+
|
406
|
+
msgid "Invalid, expected to match a regex: %s"
|
407
|
+
msgstr ""
|
408
|
+
|
409
|
+
msgid "Inventory"
|
410
|
+
msgstr ""
|
411
|
+
|
274
412
|
msgid "Job Details"
|
275
413
|
msgstr "Podrobnosti o úloze"
|
276
414
|
|
@@ -316,8 +454,8 @@ msgstr ""
|
|
316
454
|
msgid "Message"
|
317
455
|
msgstr "Zpráva"
|
318
456
|
|
319
|
-
msgid "
|
320
|
-
msgstr "
|
457
|
+
msgid "Must not be in the past"
|
458
|
+
msgstr ""
|
321
459
|
|
322
460
|
msgid "Name"
|
323
461
|
msgstr "Název"
|
@@ -328,43 +466,61 @@ msgstr "Název proměnné"
|
|
328
466
|
msgid "Nest"
|
329
467
|
msgstr "Vnořit"
|
330
468
|
|
331
|
-
msgid "New"
|
332
|
-
msgstr "Nové"
|
333
|
-
|
334
469
|
msgid "New Ansible Variable"
|
335
470
|
msgstr "Nová Ansible proměnná"
|
336
471
|
|
472
|
+
msgid "Next Run"
|
473
|
+
msgstr ""
|
474
|
+
|
337
475
|
msgid ""
|
338
|
-
"No
|
476
|
+
"No Ansible Roles were found in Foreman. If you want to assign roles to your hosts,\n"
|
339
477
|
" you have to import them first."
|
340
478
|
msgstr ""
|
341
479
|
|
342
|
-
msgid "No
|
480
|
+
msgid "No Ansible roles assigned"
|
343
481
|
msgstr ""
|
344
482
|
|
345
|
-
msgid "No
|
346
|
-
msgstr "
|
483
|
+
msgid "No Ansible variables found for Host"
|
484
|
+
msgstr ""
|
485
|
+
|
486
|
+
msgid "No added or removed roles nor variables detected on %s."
|
487
|
+
msgstr ""
|
488
|
+
|
489
|
+
msgid "No added or removed roles nor variables."
|
490
|
+
msgstr ""
|
491
|
+
|
492
|
+
msgid "No additional data"
|
493
|
+
msgstr ""
|
494
|
+
|
495
|
+
msgid "No changes detected in specified Ansible Roles and their variables"
|
496
|
+
msgstr ""
|
347
497
|
|
348
498
|
msgid "No changes in variables detected on %s."
|
349
499
|
msgstr "U %s nezjištěny žádné změny v proměnných."
|
350
500
|
|
501
|
+
msgid "No config job for Ansible roles scheduled"
|
502
|
+
msgstr ""
|
503
|
+
|
504
|
+
msgid "No previous job executions found"
|
505
|
+
msgstr ""
|
506
|
+
|
351
507
|
msgid "No proxy found to import variables from, ensure that the smart proxy has the Ansible feature enabled."
|
352
508
|
msgstr ""
|
353
509
|
|
510
|
+
msgid "Nothing Found!"
|
511
|
+
msgstr ""
|
512
|
+
|
354
513
|
msgid "Nothing to show"
|
355
514
|
msgstr "Není co zobrazit"
|
356
515
|
|
357
|
-
msgid "
|
358
|
-
msgstr "
|
359
|
-
|
360
|
-
msgid "Obsolete Ansible roles"
|
361
|
-
msgstr "Zastaralé Ansible role"
|
516
|
+
msgid "Notice that ansible roles run in check mode."
|
517
|
+
msgstr ""
|
362
518
|
|
363
|
-
msgid "
|
519
|
+
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."
|
364
520
|
msgstr ""
|
365
521
|
|
366
|
-
msgid "
|
367
|
-
msgstr "
|
522
|
+
msgid "Only variables marked to Override are shown here."
|
523
|
+
msgstr ""
|
368
524
|
|
369
525
|
msgid "Optional Input Validator"
|
370
526
|
msgstr "Volitelné ověřování zadání"
|
@@ -384,9 +540,27 @@ msgstr ""
|
|
384
540
|
msgid "Overriden"
|
385
541
|
msgstr "Přepsáno"
|
386
542
|
|
543
|
+
msgid "Permission Denied"
|
544
|
+
msgstr ""
|
545
|
+
|
546
|
+
msgid "Permission denied"
|
547
|
+
msgstr ""
|
548
|
+
|
549
|
+
msgid "Playbooks"
|
550
|
+
msgstr ""
|
551
|
+
|
552
|
+
msgid "Please request one of the required permissions listed below from a Foreman administrator:"
|
553
|
+
msgstr ""
|
554
|
+
|
387
555
|
msgid "Post-provision timeout"
|
388
556
|
msgstr ""
|
389
557
|
|
558
|
+
msgid "Preupgrade job"
|
559
|
+
msgstr ""
|
560
|
+
|
561
|
+
msgid "Previously executed jobs"
|
562
|
+
msgstr ""
|
563
|
+
|
390
564
|
msgid "Prioritize Attribute Order"
|
391
565
|
msgstr ""
|
392
566
|
|
@@ -396,6 +570,9 @@ msgstr "Popis umístění soukromého klíče"
|
|
396
570
|
msgid "Proxy not found"
|
397
571
|
msgstr "Proxy nenalezena"
|
398
572
|
|
573
|
+
msgid "Proxy tasks batch size for Ansible"
|
574
|
+
msgstr ""
|
575
|
+
|
399
576
|
msgid "Remediation Plan"
|
400
577
|
msgstr ""
|
401
578
|
|
@@ -405,12 +582,27 @@ msgstr "Akce na protějšku:"
|
|
405
582
|
msgid "Remove"
|
406
583
|
msgstr "Odebrat"
|
407
584
|
|
585
|
+
msgid "Remove Role"
|
586
|
+
msgstr ""
|
587
|
+
|
588
|
+
msgid "Remove all"
|
589
|
+
msgstr ""
|
590
|
+
|
408
591
|
msgid "Remove duplicate values (only array type)"
|
409
592
|
msgstr ""
|
410
593
|
|
594
|
+
msgid "Remove selected"
|
595
|
+
msgstr ""
|
596
|
+
|
411
597
|
msgid "Report format, defaults to '%s'"
|
412
598
|
msgstr ""
|
413
599
|
|
600
|
+
msgid "Request the following permissions from administrator: %s."
|
601
|
+
msgstr ""
|
602
|
+
|
603
|
+
msgid "Result"
|
604
|
+
msgstr ""
|
605
|
+
|
414
606
|
msgid "Role ID"
|
415
607
|
msgstr "Identif. role"
|
416
608
|
|
@@ -432,6 +624,9 @@ msgstr ""
|
|
432
624
|
msgid "Run an Ansible playbook against given hosts"
|
433
625
|
msgstr ""
|
434
626
|
|
627
|
+
msgid "Run an Ansible playbook to enable web console on given hosts"
|
628
|
+
msgstr ""
|
629
|
+
|
435
630
|
msgid "Run playbook"
|
436
631
|
msgstr ""
|
437
632
|
|
@@ -453,10 +648,16 @@ msgstr ""
|
|
453
648
|
msgid "Runs an Ansible playbook which contains all the roles defined for a host"
|
454
649
|
msgstr ""
|
455
650
|
|
651
|
+
msgid "Schedule"
|
652
|
+
msgstr ""
|
653
|
+
|
456
654
|
msgid "Schedule generating of Ansible Inventory report"
|
457
655
|
msgstr ""
|
458
656
|
|
459
|
-
msgid "
|
657
|
+
msgid "Schedule recurring job"
|
658
|
+
msgstr ""
|
659
|
+
|
660
|
+
msgid "Scheduled recurring jobs"
|
460
661
|
msgstr ""
|
461
662
|
|
462
663
|
msgid "Set the order in which values are resolved."
|
@@ -480,12 +681,42 @@ msgstr ""
|
|
480
681
|
msgid "Smart Proxy to import from"
|
481
682
|
msgstr ""
|
482
683
|
|
684
|
+
msgid "Smart Proxy to sync from"
|
685
|
+
msgstr ""
|
686
|
+
|
483
687
|
msgid "Smart proxy id is required"
|
484
688
|
msgstr ""
|
485
689
|
|
690
|
+
msgid "Source"
|
691
|
+
msgstr ""
|
692
|
+
|
693
|
+
msgid "Source attribute"
|
694
|
+
msgstr ""
|
695
|
+
|
486
696
|
msgid "Specify Matchers"
|
487
697
|
msgstr ""
|
488
698
|
|
699
|
+
msgid "State"
|
700
|
+
msgstr ""
|
701
|
+
|
702
|
+
msgid "Submit"
|
703
|
+
msgstr ""
|
704
|
+
|
705
|
+
msgid "Sync Ansible playbooks"
|
706
|
+
msgstr ""
|
707
|
+
|
708
|
+
msgid "Sync Ansible roles"
|
709
|
+
msgstr ""
|
710
|
+
|
711
|
+
msgid "Tags"
|
712
|
+
msgstr ""
|
713
|
+
|
714
|
+
msgid "Task"
|
715
|
+
msgstr ""
|
716
|
+
|
717
|
+
msgid "Task Details"
|
718
|
+
msgstr ""
|
719
|
+
|
489
720
|
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>"
|
490
721
|
msgstr ""
|
491
722
|
|
@@ -495,15 +726,39 @@ msgstr "Pořadí ve kterém jsou hodnoty řešeny"
|
|
495
726
|
msgid "There are no Ansible roles to play"
|
496
727
|
msgstr "Nejsou zde žádné Ansible role pro přehrání"
|
497
728
|
|
729
|
+
msgid "There was a following error when assigning Ansible Roles: %s"
|
730
|
+
msgstr ""
|
731
|
+
|
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"
|
751
|
+
msgstr ""
|
752
|
+
|
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
|
+
|
498
756
|
msgid "Timeout (in minutes) when hosts should have reported."
|
499
757
|
msgstr ""
|
500
758
|
|
501
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."
|
502
760
|
msgstr ""
|
503
761
|
|
504
|
-
msgid "Toggle"
|
505
|
-
msgstr "Přepnout"
|
506
|
-
|
507
762
|
msgid "Type"
|
508
763
|
msgstr "Typ"
|
509
764
|
|
@@ -513,6 +768,12 @@ msgstr "Typy hodnot ověřování"
|
|
513
768
|
msgid "Types of variable values"
|
514
769
|
msgstr "Typy hodnot proměnné"
|
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 "Nedaří se získat role z Ansible"
|
518
779
|
|
@@ -522,9 +783,24 @@ msgstr "Nedaří se získat role/proměnné z Ansible"
|
|
522
783
|
msgid "Update"
|
523
784
|
msgstr "Aktualizovat"
|
524
785
|
|
786
|
+
msgid "Update Role Variables"
|
787
|
+
msgstr ""
|
788
|
+
|
525
789
|
msgid "Updates Ansible variable"
|
526
790
|
msgstr "Aktualizuje Ansible proměnné"
|
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 "Hodnota kterou použít, pokud není nalezena žádná shoda."
|
539
818
|
|
@@ -554,3 +833,39 @@ msgstr "Zda hodnotu přepsat nebo ne"
|
|
554
833
|
|
555
834
|
msgid "WinRM cert Validation"
|
556
835
|
msgstr "Ověření WinRM certifikátu"
|
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 ""
|