foreman_ansible 14.2.1 → 14.2.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (63) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/foreman_ansible/locale/ca/foreman_ansible.js +359 -386
  3. data/app/assets/javascripts/foreman_ansible/locale/cs_CZ/foreman_ansible.js +443 -470
  4. data/app/assets/javascripts/foreman_ansible/locale/de/foreman_ansible.js +518 -545
  5. data/app/assets/javascripts/foreman_ansible/locale/en/foreman_ansible.js +291 -318
  6. data/app/assets/javascripts/foreman_ansible/locale/en_GB/foreman_ansible.js +317 -344
  7. data/app/assets/javascripts/foreman_ansible/locale/es/foreman_ansible.js +580 -607
  8. data/app/assets/javascripts/foreman_ansible/locale/fr/foreman_ansible.js +582 -609
  9. data/app/assets/javascripts/foreman_ansible/locale/gl/foreman_ansible.js +333 -360
  10. data/app/assets/javascripts/foreman_ansible/locale/it/foreman_ansible.js +395 -422
  11. data/app/assets/javascripts/foreman_ansible/locale/ja/foreman_ansible.js +582 -609
  12. data/app/assets/javascripts/foreman_ansible/locale/ka/foreman_ansible.js +575 -602
  13. data/app/assets/javascripts/foreman_ansible/locale/ko/foreman_ansible.js +402 -429
  14. data/app/assets/javascripts/foreman_ansible/locale/nl_NL/foreman_ansible.js +350 -377
  15. data/app/assets/javascripts/foreman_ansible/locale/pl/foreman_ansible.js +369 -396
  16. data/app/assets/javascripts/foreman_ansible/locale/pt_BR/foreman_ansible.js +580 -607
  17. data/app/assets/javascripts/foreman_ansible/locale/ru/foreman_ansible.js +391 -418
  18. data/app/assets/javascripts/foreman_ansible/locale/sv_SE/foreman_ansible.js +335 -362
  19. data/app/assets/javascripts/foreman_ansible/locale/zh_CN/foreman_ansible.js +584 -611
  20. data/app/assets/javascripts/foreman_ansible/locale/zh_TW/foreman_ansible.js +402 -429
  21. data/app/models/ansible_role.rb +3 -0
  22. data/app/models/ansible_variable.rb +4 -0
  23. data/app/models/host_ansible_role.rb +6 -0
  24. data/app/views/foreman_ansible/job_templates/capsule_update_-_ansible_default.erb +73 -0
  25. data/app/views/foreman_ansible/job_templates/capsule_upgrade_-_ansible_default.erb +1 -3
  26. data/lib/foreman_ansible/remote_execution.rb +6 -0
  27. data/lib/foreman_ansible/version.rb +1 -1
  28. data/locale/ca/foreman_ansible.po +6 -33
  29. data/locale/cs_CZ/LC_MESSAGES/foreman_ansible.mo +0 -0
  30. data/locale/cs_CZ/foreman_ansible.po +6 -33
  31. data/locale/de/LC_MESSAGES/foreman_ansible.mo +0 -0
  32. data/locale/de/foreman_ansible.po +6 -33
  33. data/locale/en/foreman_ansible.po +6 -33
  34. data/locale/en_GB/LC_MESSAGES/foreman_ansible.mo +0 -0
  35. data/locale/en_GB/foreman_ansible.po +6 -33
  36. data/locale/es/LC_MESSAGES/foreman_ansible.mo +0 -0
  37. data/locale/es/foreman_ansible.po +6 -33
  38. data/locale/foreman_ansible.pot +47 -85
  39. data/locale/fr/LC_MESSAGES/foreman_ansible.mo +0 -0
  40. data/locale/fr/foreman_ansible.po +6 -33
  41. data/locale/gl/foreman_ansible.po +6 -33
  42. data/locale/it/LC_MESSAGES/foreman_ansible.mo +0 -0
  43. data/locale/it/foreman_ansible.po +6 -33
  44. data/locale/ja/LC_MESSAGES/foreman_ansible.mo +0 -0
  45. data/locale/ja/foreman_ansible.po +6 -33
  46. data/locale/ka/LC_MESSAGES/foreman_ansible.mo +0 -0
  47. data/locale/ka/foreman_ansible.po +6 -33
  48. data/locale/ko/LC_MESSAGES/foreman_ansible.mo +0 -0
  49. data/locale/ko/foreman_ansible.po +6 -33
  50. data/locale/nl_NL/foreman_ansible.po +6 -33
  51. data/locale/pl/foreman_ansible.po +6 -33
  52. data/locale/pt_BR/LC_MESSAGES/foreman_ansible.mo +0 -0
  53. data/locale/pt_BR/foreman_ansible.po +6 -33
  54. data/locale/ru/LC_MESSAGES/foreman_ansible.mo +0 -0
  55. data/locale/ru/foreman_ansible.po +6 -33
  56. data/locale/sv_SE/foreman_ansible.po +6 -33
  57. data/locale/zh_CN/LC_MESSAGES/foreman_ansible.mo +0 -0
  58. data/locale/zh_CN/foreman_ansible.po +6 -33
  59. data/locale/zh_TW/LC_MESSAGES/foreman_ansible.mo +0 -0
  60. data/locale/zh_TW/foreman_ansible.po +6 -33
  61. data/test/unit/host_ansible_role_test.rb +30 -0
  62. metadata +17 -3
  63. data/locale/action_names.rb +0 -7
@@ -4,6 +4,7 @@
4
4
  class AnsibleRole < ApplicationRecord
5
5
  audited
6
6
  include Authorizable
7
+ include Foreman::ObservableModel
7
8
 
8
9
  self.include_root_in_json = false
9
10
  validates :name, :presence => true, :uniqueness => true
@@ -28,6 +29,8 @@ class AnsibleRole < ApplicationRecord
28
29
  scoped_search :relation => :hostgroups,
29
30
  :on => :name, :rename => :hostgroup, :only_explicit => true
30
31
 
32
+ set_crud_hooks :ansible_role
33
+
31
34
  apipie :class, "A class representing #{model_name.human} object" do
32
35
  name 'Ansible role'
33
36
  refs 'AnsibleRole'
@@ -2,6 +2,8 @@
2
2
 
3
3
  # Represents the variables used in Ansible to parameterize playbooks
4
4
  class AnsibleVariable < LookupKey
5
+ include Foreman::ObservableModel
6
+
5
7
  belongs_to :ansible_role, :inverse_of => :ansible_variables
6
8
  validates :ansible_role_id, :presence => true
7
9
  before_validation :cast_default_value, :if => :override?
@@ -11,6 +13,8 @@ class AnsibleVariable < LookupKey
11
13
  scoped_search :relation => :ansible_role, :on => :name,
12
14
  :complete_value => true, :rename => :ansible_role
13
15
 
16
+ set_crud_hooks :ansible_variable
17
+
14
18
  def ansible?
15
19
  true
16
20
  end
@@ -2,10 +2,16 @@
2
2
 
3
3
  # Join model that hosts the connection between hosts and ansible_roles
4
4
  class HostAnsibleRole < ApplicationRecord
5
+ audited associated_with: :host
6
+
5
7
  belongs_to_host
6
8
  belongs_to :ansible_role
7
9
  acts_as_list scope: :host
8
10
 
9
11
  validates :ansible_role_id, :presence => true,
10
12
  :uniqueness => { :scope => :host_id }
13
+
14
+ def to_label
15
+ ansible_role.name
16
+ end
11
17
  end
@@ -0,0 +1,73 @@
1
+ <%#
2
+ name: Capsule Update Playbook
3
+ snippet: false
4
+ template_inputs:
5
+ - name: whitelist_options
6
+ required: false
7
+ input_type: user
8
+ advanced: false
9
+ value_type: plain
10
+ hidden_value: false
11
+ model: JobTemplate
12
+ job_category: Maintenance Operations
13
+ description_format: "%{template_name}"
14
+ provider_type: Ansible
15
+ kind: job_template
16
+ feature: ansible_run_capsule_update
17
+ %>
18
+
19
+ ---
20
+ - hosts: all
21
+ tasks:
22
+ <% if plugin_present?('foreman_theme_satellite') -%>
23
+ - name: Gather the rpm package facts
24
+ package_facts:
25
+ manager: auto
26
+
27
+ - name: Fail if the target server is a Satellite server
28
+ fail:
29
+ msg: "This playbook cannot be executed on a Satellite server. Use only on a Capsule server."
30
+ when: "'satellite' in ansible_facts.packages"
31
+
32
+ - name: Install|Update satellite-maintain if not present
33
+ package:
34
+ name: rubygem-foreman_maintain
35
+ state: latest
36
+
37
+ - block:
38
+ <%- whitelist_option = if input('whitelist_options').present?
39
+ "--whitelist=#{input('whitelist_options')}"
40
+ end -%>
41
+ - name: Update Capsule server using satellite-maintain
42
+ shell: satellite-maintain update run --assumeyes <%= whitelist_option %>
43
+ register: result
44
+
45
+ - name: Re-Gather the rpm package facts after the update
46
+ package_facts:
47
+ manager: auto
48
+
49
+ - name: satellite-maintain update return code is zero
50
+ debug:
51
+ msg: "Success! Capsule server update completed. Current version of Capsule server server is {{ ansible_facts.packages['satellite-capsule'][0]['version'] }}."
52
+
53
+ rescue:
54
+ - name: Print satellite-maintain output
55
+ debug:
56
+ var: result
57
+
58
+ - name: Grep top 10 Error messages from /var/log/foreman-installer/capsule.log
59
+ shell: grep '^\[ERROR' /var/log/foreman-installer/capsule.log | head -n10
60
+ register: output_grep
61
+
62
+ - name: Print grepped Error messages
63
+ debug:
64
+ var: output_grep.stdout_lines
65
+
66
+ - name: satellite-maintain update return code is non-zero
67
+ fail:
68
+ msg: "Failed! Capsule server update failed. See /var/log/foreman-installer/capsule.log in the Capsule server for more information"
69
+ <% else -%>
70
+ - name: Fail if foreman_theme_satellite is missing
71
+ fail:
72
+ msg: "Failed! The plugin foreman_theme_satellite is not present. This playbook is only for use with Satellite."
73
+ <% end -%>
@@ -24,8 +24,6 @@ feature: ansible_run_capsule_upgrade
24
24
 
25
25
  ---
26
26
  - hosts: all
27
- vars:
28
- target_version: "<%= input('target_version').present? ? input('target_version') : product_short_version %>"
29
27
  tasks:
30
28
  <% if plugin_present?('foreman_theme_satellite') -%>
31
29
  - name: Gather the rpm package facts
@@ -47,7 +45,7 @@ feature: ansible_run_capsule_upgrade
47
45
  "--whitelist=#{input('whitelist_options')}"
48
46
  end -%>
49
47
  - name: Upgrade Capsule server using satellite-maintain
50
- shell: satellite-maintain upgrade run --assumeyes --target-version={{ target_version }} <%= whitelist_option %>
48
+ shell: satellite-maintain upgrade run --assumeyes <%= whitelist_option %>
51
49
  register: result
52
50
 
53
51
  - name: Re-Gather the rpm package facts after the upgrade
@@ -40,6 +40,12 @@ module ForemanAnsible
40
40
  :description => N_('Upgrade Capsules on given Capsule server hosts'),
41
41
  :proxy_selector_override => ::RemoteExecutionProxySelector::INTERNAL_PROXY
42
42
  )
43
+ RemoteExecutionFeature.register(
44
+ :ansible_run_capsule_update,
45
+ N_('Update Capsules on given hosts'),
46
+ :description => N_('Update Capsules on given Capsule server hosts'),
47
+ :proxy_selector_override => ::RemoteExecutionProxySelector::INTERNAL_PROXY
48
+ )
43
49
  end
44
50
  end
45
51
  end
@@ -4,5 +4,5 @@
4
4
  # This way other parts of Foreman can just call ForemanAnsible::VERSION
5
5
  # and detect what version the plugin is running.
6
6
  module ForemanAnsible
7
- VERSION = '14.2.1'
7
+ VERSION = '14.2.2'
8
8
  end
@@ -34,9 +34,6 @@ msgstr ""
34
34
  msgid "A comma separated list of tags to use for Ansible run"
35
35
  msgstr ""
36
36
 
37
- msgid "Action with sub plans"
38
- msgstr ""
39
-
40
37
  msgid "Actions"
41
38
  msgstr "Accions"
42
39
 
@@ -139,9 +136,6 @@ msgstr ""
139
136
  msgid "Ansible variable override was successfully deleted."
140
137
  msgstr ""
141
138
 
142
- msgid "Ansible: Run Insights maintenance plan"
143
- msgstr ""
144
-
145
139
  msgid "Are you sure you want to cancel Ansible config job?"
146
140
  msgstr ""
147
141
 
@@ -181,9 +175,6 @@ msgstr ""
181
175
  msgid "Changed Ansible roles"
182
176
  msgstr ""
183
177
 
184
- msgid "Check for long running tasks"
185
- msgstr ""
186
-
187
178
  msgid "Close"
188
179
  msgstr "Tanca"
189
180
 
@@ -256,9 +247,6 @@ msgstr ""
256
247
  msgid "Deletes Ansible variable"
257
248
  msgstr ""
258
249
 
259
- msgid "Deliver notifications about long running tasks"
260
- msgstr ""
261
-
262
250
  msgid "Description"
263
251
  msgstr "Descripció"
264
252
 
@@ -388,15 +376,9 @@ msgstr "En cas que estigui marcat, es produirà un error si no hi ha cap valor p
388
376
  msgid "Import"
389
377
  msgstr "Importa"
390
378
 
391
- msgid "Import Puppet classes"
392
- msgstr ""
393
-
394
379
  msgid "Import Role"
395
380
  msgstr ""
396
381
 
397
- msgid "Import facts"
398
- msgstr ""
399
-
400
382
  msgid "Import from %s"
401
383
  msgstr "Importa de %s"
402
384
 
@@ -433,9 +415,6 @@ msgstr ""
433
415
  msgid "Inherited from Hostgroup"
434
416
  msgstr ""
435
417
 
436
- msgid "Insights remediation on %{hosts_count} host(s) has finished successfully"
437
- msgstr ""
438
-
439
418
  msgid "Invalid, expected one of: %s"
440
419
  msgstr ""
441
420
 
@@ -445,9 +424,6 @@ msgstr ""
445
424
  msgid "Inventory"
446
425
  msgstr ""
447
426
 
448
- msgid "Job Details"
449
- msgstr ""
450
-
451
427
  msgid "Jobs"
452
428
  msgstr "Treballs"
453
429
 
@@ -612,12 +588,6 @@ msgstr ""
612
588
  msgid "Proxy tasks batch size for Ansible"
613
589
  msgstr ""
614
590
 
615
- msgid "Remediation Plan"
616
- msgstr ""
617
-
618
- msgid "Remote action:"
619
- msgstr ""
620
-
621
591
  msgid "Remove"
622
592
  msgstr "Suprimeix"
623
593
 
@@ -678,9 +648,6 @@ msgstr ""
678
648
  msgid "Run playbook"
679
649
  msgstr ""
680
650
 
681
- msgid "Runs a given maintenance plan from Red Hat Access Insights given an ID."
682
- msgstr ""
683
-
684
651
  msgid "Runs all Ansible roles on a host"
685
652
  msgstr ""
686
653
 
@@ -843,6 +810,12 @@ msgstr ""
843
810
  msgid "Update"
844
811
  msgstr "Actualitza"
845
812
 
813
+ msgid "Update Capsules on given Capsule server hosts"
814
+ msgstr ""
815
+
816
+ msgid "Update Capsules on given hosts"
817
+ msgstr ""
818
+
846
819
  msgid "Update Role Variables"
847
820
  msgstr ""
848
821
 
@@ -38,9 +38,6 @@ msgstr ""
38
38
  msgid "A comma separated list of tags to use for Ansible run"
39
39
  msgstr ""
40
40
 
41
- msgid "Action with sub plans"
42
- msgstr "Akce s dílčími plány"
43
-
44
41
  msgid "Actions"
45
42
  msgstr "Akce"
46
43
 
@@ -143,9 +140,6 @@ msgstr ""
143
140
  msgid "Ansible variable override was successfully deleted."
144
141
  msgstr ""
145
142
 
146
- msgid "Ansible: Run Insights maintenance plan"
147
- msgstr ""
148
-
149
143
  msgid "Are you sure you want to cancel Ansible config job?"
150
144
  msgstr ""
151
145
 
@@ -185,9 +179,6 @@ msgstr ""
185
179
  msgid "Changed Ansible roles"
186
180
  msgstr "Změněné Ansible role"
187
181
 
188
- msgid "Check for long running tasks"
189
- msgstr ""
190
-
191
182
  msgid "Close"
192
183
  msgstr "Zavřít"
193
184
 
@@ -260,9 +251,6 @@ msgstr "Smazat Ansible roli"
260
251
  msgid "Deletes Ansible variable"
261
252
  msgstr "Smazat Ansible proměnnou"
262
253
 
263
- msgid "Deliver notifications about long running tasks"
264
- msgstr ""
265
-
266
254
  msgid "Description"
267
255
  msgstr "Popis"
268
256
 
@@ -392,15 +380,9 @@ msgstr ""
392
380
  msgid "Import"
393
381
  msgstr "Import"
394
382
 
395
- msgid "Import Puppet classes"
396
- msgstr "Importovat Puppet třídy"
397
-
398
383
  msgid "Import Role"
399
384
  msgstr ""
400
385
 
401
- msgid "Import facts"
402
- msgstr "Importovat fakta"
403
-
404
386
  msgid "Import from %s"
405
387
  msgstr "Importovat z %s"
406
388
 
@@ -437,9 +419,6 @@ msgstr ""
437
419
  msgid "Inherited from Hostgroup"
438
420
  msgstr ""
439
421
 
440
- msgid "Insights remediation on %{hosts_count} host(s) has finished successfully"
441
- msgstr ""
442
-
443
422
  msgid "Invalid, expected one of: %s"
444
423
  msgstr ""
445
424
 
@@ -449,9 +428,6 @@ msgstr ""
449
428
  msgid "Inventory"
450
429
  msgstr ""
451
430
 
452
- msgid "Job Details"
453
- msgstr "Podrobnosti o úloze"
454
-
455
431
  msgid "Jobs"
456
432
  msgstr "Úlohy"
457
433
 
@@ -616,12 +592,6 @@ msgstr "Proxy nenalezena"
616
592
  msgid "Proxy tasks batch size for Ansible"
617
593
  msgstr ""
618
594
 
619
- msgid "Remediation Plan"
620
- msgstr ""
621
-
622
- msgid "Remote action:"
623
- msgstr "Akce na protějšku:"
624
-
625
595
  msgid "Remove"
626
596
  msgstr "Odebrat"
627
597
 
@@ -682,9 +652,6 @@ msgstr ""
682
652
  msgid "Run playbook"
683
653
  msgstr ""
684
654
 
685
- msgid "Runs a given maintenance plan from Red Hat Access Insights given an ID."
686
- msgstr ""
687
-
688
655
  msgid "Runs all Ansible roles on a host"
689
656
  msgstr ""
690
657
 
@@ -844,6 +811,12 @@ msgstr "Nedaří se získat role/proměnné z Ansible"
844
811
  msgid "Update"
845
812
  msgstr "Aktualizovat"
846
813
 
814
+ msgid "Update Capsules on given Capsule server hosts"
815
+ msgstr ""
816
+
817
+ msgid "Update Capsules on given hosts"
818
+ msgstr ""
819
+
847
820
  msgid "Update Role Variables"
848
821
  msgstr ""
849
822
 
@@ -47,9 +47,6 @@ msgstr ""
47
47
  msgid "A comma separated list of tags to use for Ansible run"
48
48
  msgstr ""
49
49
 
50
- msgid "Action with sub plans"
51
- msgstr "Aktion mit Unterplänen"
52
-
53
50
  msgid "Actions"
54
51
  msgstr "Aktionen"
55
52
 
@@ -152,9 +149,6 @@ msgstr ""
152
149
  msgid "Ansible variable override was successfully deleted."
153
150
  msgstr ""
154
151
 
155
- msgid "Ansible: Run Insights maintenance plan"
156
- msgstr "Ansible: Insights-Wartungsplan ausführen"
157
-
158
152
  msgid "Are you sure you want to cancel Ansible config job?"
159
153
  msgstr ""
160
154
 
@@ -194,9 +188,6 @@ msgstr ""
194
188
  msgid "Changed Ansible roles"
195
189
  msgstr "Geänderte Ansible-Rollen"
196
190
 
197
- msgid "Check for long running tasks"
198
- msgstr ""
199
-
200
191
  msgid "Close"
201
192
  msgstr "Schließen"
202
193
 
@@ -269,9 +260,6 @@ msgstr "Löscht die Ansible-Rolle"
269
260
  msgid "Deletes Ansible variable"
270
261
  msgstr "Löscht die Ansible-Variable"
271
262
 
272
- msgid "Deliver notifications about long running tasks"
273
- msgstr ""
274
-
275
263
  msgid "Description"
276
264
  msgstr "Beschreibung"
277
265
 
@@ -401,15 +389,9 @@ msgstr "Falls aktiviert, wird dies einen Fehler erzeugen, wenn kein Standardwert
401
389
  msgid "Import"
402
390
  msgstr "Importieren"
403
391
 
404
- msgid "Import Puppet classes"
405
- msgstr "Puppet-Klassen importieren"
406
-
407
392
  msgid "Import Role"
408
393
  msgstr "Rolle importieren"
409
394
 
410
- msgid "Import facts"
411
- msgstr "Fakten importieren"
412
-
413
395
  msgid "Import from %s"
414
396
  msgstr "Aus %s importieren"
415
397
 
@@ -446,9 +428,6 @@ msgstr ""
446
428
  msgid "Inherited from Hostgroup"
447
429
  msgstr ""
448
430
 
449
- msgid "Insights remediation on %{hosts_count} host(s) has finished successfully"
450
- msgstr "Insights-Korrektur auf %{hosts_count} Host(s) wurde erfolgreich abgeschlossen"
451
-
452
431
  msgid "Invalid, expected one of: %s"
453
432
  msgstr ""
454
433
 
@@ -458,9 +437,6 @@ msgstr ""
458
437
  msgid "Inventory"
459
438
  msgstr "Bestand"
460
439
 
461
- msgid "Job Details"
462
- msgstr "Auftragsdetails"
463
-
464
440
  msgid "Jobs"
465
441
  msgstr "Aufträge"
466
442
 
@@ -625,12 +601,6 @@ msgstr "Kein Proxy gefunden"
625
601
  msgid "Proxy tasks batch size for Ansible"
626
602
  msgstr ""
627
603
 
628
- msgid "Remediation Plan"
629
- msgstr "Sanierungsplan"
630
-
631
- msgid "Remote action:"
632
- msgstr "Entfernte Aktion"
633
-
634
604
  msgid "Remove"
635
605
  msgstr "Entfernen"
636
606
 
@@ -691,9 +661,6 @@ msgstr ""
691
661
  msgid "Run playbook"
692
662
  msgstr "Playbook ausführen"
693
663
 
694
- msgid "Runs a given maintenance plan from Red Hat Access Insights given an ID."
695
- msgstr "Führt einen bestimmten Wartungsplan von Red Hat Access Insights mit einer ID aus."
696
-
697
664
  msgid "Runs all Ansible roles on a host"
698
665
  msgstr "Führt alle Ansible-Rollen auf einem Host aus"
699
666
 
@@ -853,6 +820,12 @@ msgstr "Rollen/Variablen von Ansible können nicht abgerufen werden"
853
820
  msgid "Update"
854
821
  msgstr "Aktualisieren"
855
822
 
823
+ msgid "Update Capsules on given Capsule server hosts"
824
+ msgstr ""
825
+
826
+ msgid "Update Capsules on given hosts"
827
+ msgstr ""
828
+
856
829
  msgid "Update Role Variables"
857
830
  msgstr "Rollenvariablen entfernen"
858
831
 
@@ -30,9 +30,6 @@ msgstr ""
30
30
  msgid "A comma separated list of tags to use for Ansible run"
31
31
  msgstr ""
32
32
 
33
- msgid "Action with sub plans"
34
- msgstr ""
35
-
36
33
  msgid "Actions"
37
34
  msgstr ""
38
35
 
@@ -135,9 +132,6 @@ msgstr ""
135
132
  msgid "Ansible variable override was successfully deleted."
136
133
  msgstr ""
137
134
 
138
- msgid "Ansible: Run Insights maintenance plan"
139
- msgstr ""
140
-
141
135
  msgid "Are you sure you want to cancel Ansible config job?"
142
136
  msgstr ""
143
137
 
@@ -177,9 +171,6 @@ msgstr ""
177
171
  msgid "Changed Ansible roles"
178
172
  msgstr ""
179
173
 
180
- msgid "Check for long running tasks"
181
- msgstr ""
182
-
183
174
  msgid "Close"
184
175
  msgstr ""
185
176
 
@@ -252,9 +243,6 @@ msgstr ""
252
243
  msgid "Deletes Ansible variable"
253
244
  msgstr ""
254
245
 
255
- msgid "Deliver notifications about long running tasks"
256
- msgstr ""
257
-
258
246
  msgid "Description"
259
247
  msgstr ""
260
248
 
@@ -384,15 +372,9 @@ msgstr ""
384
372
  msgid "Import"
385
373
  msgstr ""
386
374
 
387
- msgid "Import Puppet classes"
388
- msgstr ""
389
-
390
375
  msgid "Import Role"
391
376
  msgstr ""
392
377
 
393
- msgid "Import facts"
394
- msgstr ""
395
-
396
378
  msgid "Import from %s"
397
379
  msgstr ""
398
380
 
@@ -429,9 +411,6 @@ msgstr ""
429
411
  msgid "Inherited from Hostgroup"
430
412
  msgstr ""
431
413
 
432
- msgid "Insights remediation on %{hosts_count} host(s) has finished successfully"
433
- msgstr ""
434
-
435
414
  msgid "Invalid, expected one of: %s"
436
415
  msgstr ""
437
416
 
@@ -441,9 +420,6 @@ msgstr ""
441
420
  msgid "Inventory"
442
421
  msgstr ""
443
422
 
444
- msgid "Job Details"
445
- msgstr ""
446
-
447
423
  msgid "Jobs"
448
424
  msgstr ""
449
425
 
@@ -608,12 +584,6 @@ msgstr ""
608
584
  msgid "Proxy tasks batch size for Ansible"
609
585
  msgstr ""
610
586
 
611
- msgid "Remediation Plan"
612
- msgstr ""
613
-
614
- msgid "Remote action:"
615
- msgstr ""
616
-
617
587
  msgid "Remove"
618
588
  msgstr ""
619
589
 
@@ -674,9 +644,6 @@ msgstr ""
674
644
  msgid "Run playbook"
675
645
  msgstr ""
676
646
 
677
- msgid "Runs a given maintenance plan from Red Hat Access Insights given an ID."
678
- msgstr ""
679
-
680
647
  msgid "Runs all Ansible roles on a host"
681
648
  msgstr ""
682
649
 
@@ -836,6 +803,12 @@ msgstr ""
836
803
  msgid "Update"
837
804
  msgstr ""
838
805
 
806
+ msgid "Update Capsules on given Capsule server hosts"
807
+ msgstr ""
808
+
809
+ msgid "Update Capsules on given hosts"
810
+ msgstr ""
811
+
839
812
  msgid "Update Role Variables"
840
813
  msgstr ""
841
814