foreman_leapp 1.0.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/models/preupgrade_report.rb +10 -5
- data/app/views/foreman_leapp/job_templates/leapp_install.erb +44 -0
- data/lib/foreman_leapp/version.rb +1 -1
- data/locale/de/foreman_leapp.edit.po +28 -18
- data/locale/en/foreman_leapp.edit.po +27 -18
- data/locale/fr/foreman_leapp.edit.po +218 -0
- data/locale/fr/foreman_leapp.po.time_stamp +0 -0
- data/locale/ja/foreman_leapp.edit.po +218 -0
- data/locale/ja/foreman_leapp.po.time_stamp +0 -0
- data/locale/ka/foreman_leapp.edit.po +38 -30
- data/locale/pt_BR/foreman_leapp.edit.po +225 -0
- data/locale/pt_BR/foreman_leapp.po.time_stamp +0 -0
- data/locale/zh_CN/foreman_leapp.edit.po +224 -0
- data/locale/zh_CN/foreman_leapp.po.time_stamp +0 -0
- data/locale/zh_TW/foreman_leapp.edit.po +222 -0
- data/locale/zh_TW/foreman_leapp.po.time_stamp +0 -0
- metadata +14 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3ffdf91e7af778f60a85a27b2ad9633f04b63fcb9ac69dd5c734ffc4660d5a71
|
|
4
|
+
data.tar.gz: d3f82b2f903ce06498dde9ab0f60c0e161b0c7db661f3903c9baa8ad38730369
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 71c2c88e075f5eb891db45e465b0db58ac9a314478ec1c27039976933dfbe293c2765fd2935c69f34329c8d983a324310b36ccf5a93256b441fee04f5f3e7dd4
|
|
7
|
+
data.tar.gz: d3a207ecff443d81a4d2d71557ec39173a3b295ca460d31460a00742d11a0ad139225c210cb88077e05e70613c729ce45bca250ee4000e37713d37efbe595b7f
|
|
@@ -7,12 +7,17 @@ class PreupgradeReport < ::Report
|
|
|
7
7
|
scoped_search on: :job_invocation_id, only_explicit: true
|
|
8
8
|
|
|
9
9
|
def self.create_report(host, data, job_invocation_id)
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
# We don't have specific permissions for the Preupgrade leapp reports,
|
|
11
|
+
# so we need to skip the permission check for non-admin users.
|
|
12
|
+
# The user is still required to have permission to run the job and view the hosts.
|
|
13
|
+
skip_permission_check do
|
|
14
|
+
report = PreupgradeReport.create host: host, status: 0,
|
|
15
|
+
job_invocation_id: job_invocation_id,
|
|
16
|
+
reported_at: DateTime.now.utc
|
|
13
17
|
|
|
14
|
-
|
|
15
|
-
|
|
18
|
+
data['entries']&.each do |entry|
|
|
19
|
+
PreupgradeReportEntry.create! entry_params(report, entry, host, data)
|
|
20
|
+
end
|
|
16
21
|
end
|
|
17
22
|
end
|
|
18
23
|
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
<%#
|
|
2
|
+
kind: job_template
|
|
3
|
+
name: Install Leapp
|
|
4
|
+
job_category: Leapp - Install
|
|
5
|
+
description_format: 'Install Leapp CLI tool'
|
|
6
|
+
provider_type: Ansible
|
|
7
|
+
model: JobTemplate
|
|
8
|
+
oses:
|
|
9
|
+
- RedHat
|
|
10
|
+
%>
|
|
11
|
+
<%
|
|
12
|
+
os_major = @host.operatingsystem.major.to_i
|
|
13
|
+
rhel_compatible = @host.operatingsystem.family == 'Redhat' && @host.operatingsystem.name == 'RedHat'
|
|
14
|
+
supported_version = [7, 8].include? os_major
|
|
15
|
+
|
|
16
|
+
repos = case os_major
|
|
17
|
+
when 7
|
|
18
|
+
['rhel-7-server-rpms', 'rhel-7-server-extras-rpms']
|
|
19
|
+
when 8
|
|
20
|
+
['rhel-8-for-x86_64-baseos-rpms', 'rhel-8-for-x86_64-appstream-rpms']
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
package = case os_major
|
|
24
|
+
when 7
|
|
25
|
+
'leapp'
|
|
26
|
+
when 8
|
|
27
|
+
'leapp-upgrade'
|
|
28
|
+
end
|
|
29
|
+
-%>
|
|
30
|
+
---
|
|
31
|
+
- hosts: all
|
|
32
|
+
tasks:
|
|
33
|
+
<% if rhel_compatible && supported_version -%>
|
|
34
|
+
- name: Enable Leapp repositories
|
|
35
|
+
command: subscription-manager repos <%= repos.map{|r| "--enable #{r}"}.join(" ") %>
|
|
36
|
+
- name: Install <%= package %>
|
|
37
|
+
package:
|
|
38
|
+
name: <%= package %>
|
|
39
|
+
state: present
|
|
40
|
+
<% else -%>
|
|
41
|
+
- name: Fail if the target server is not RHEL
|
|
42
|
+
fail:
|
|
43
|
+
msg: "This playbook can be executed only on RHEL server version 7 and 8."
|
|
44
|
+
<% end -%>
|
|
@@ -7,16 +7,18 @@
|
|
|
7
7
|
# Martin Zimmermann <martin.zimmermann@gmx.com>, 2022
|
|
8
8
|
# Ettore Atalan <atalanttore@googlemail.com>, 2022
|
|
9
9
|
# Wiederoder <stefanwiederoder@googlemail.com>, 2022
|
|
10
|
-
# Bryan Kearney <bryan.kearney@gmail.com>, 2022
|
|
11
10
|
# Lukas Kallies <github.com@luke-web.de>, 2022
|
|
11
|
+
# pdolinic, 2022
|
|
12
|
+
# Crited <Alexander.Stoll@netways.de>, 2022
|
|
13
|
+
# Bryan Kearney <bryan.kearney@gmail.com>, 2023
|
|
12
14
|
#
|
|
13
15
|
msgid ""
|
|
14
16
|
msgstr ""
|
|
15
|
-
"Project-Id-Version: foreman_leapp 0.
|
|
17
|
+
"Project-Id-Version: foreman_leapp 1.0.0\n"
|
|
16
18
|
"Report-Msgid-Bugs-To: \n"
|
|
17
19
|
"PO-Revision-Date: 2022-10-12 12:00+0000\n"
|
|
18
|
-
"Last-Translator:
|
|
19
|
-
"Language-Team: German (https://
|
|
20
|
+
"Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>, 2023\n"
|
|
21
|
+
"Language-Team: German (https://app.transifex.com/foreman/teams/114/de/)\n"
|
|
20
22
|
"MIME-Version: 1.0\n"
|
|
21
23
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
22
24
|
"Content-Transfer-Encoding: 8bit\n"
|
|
@@ -39,31 +41,31 @@ msgstr ""
|
|
|
39
41
|
msgid "List Preupgrade reports for Job invocation"
|
|
40
42
|
msgstr ""
|
|
41
43
|
|
|
42
|
-
#: ../app/helpers/foreman_leapp/hosts_helper.rb:6 ../lib/foreman_leapp/engine.rb:
|
|
44
|
+
#: ../app/helpers/foreman_leapp/hosts_helper.rb:6 ../lib/foreman_leapp/engine.rb:83
|
|
43
45
|
msgid "Preupgrade check with Leapp"
|
|
44
46
|
msgstr ""
|
|
45
47
|
|
|
46
|
-
#: ../app/helpers/foreman_leapp/hosts_helper.rb:8 ../lib/foreman_leapp/engine.rb:
|
|
48
|
+
#: ../app/helpers/foreman_leapp/hosts_helper.rb:8 ../lib/foreman_leapp/engine.rb:90
|
|
47
49
|
msgid "Upgrade with Leapp"
|
|
48
50
|
msgstr "Aktualisiere mit Leapp"
|
|
49
51
|
|
|
50
|
-
#: ../lib/foreman_leapp/engine.rb:
|
|
52
|
+
#: ../lib/foreman_leapp/engine.rb:33
|
|
51
53
|
msgid "Leapp preupgrade report"
|
|
52
54
|
msgstr ""
|
|
53
55
|
|
|
54
|
-
#: ../lib/foreman_leapp/engine.rb:
|
|
56
|
+
#: ../lib/foreman_leapp/engine.rb:84
|
|
55
57
|
msgid "Upgradeability check for RHEL host"
|
|
56
58
|
msgstr ""
|
|
57
59
|
|
|
58
|
-
#: ../lib/foreman_leapp/engine.rb:
|
|
60
|
+
#: ../lib/foreman_leapp/engine.rb:91
|
|
59
61
|
msgid "Run Leapp upgrade job for RHEL host"
|
|
60
62
|
msgstr ""
|
|
61
63
|
|
|
62
|
-
#: ../lib/foreman_leapp/engine.rb:
|
|
64
|
+
#: ../lib/foreman_leapp/engine.rb:97
|
|
63
65
|
msgid "Remediation plan"
|
|
64
66
|
msgstr "Sanierungsplan"
|
|
65
67
|
|
|
66
|
-
#: ../lib/foreman_leapp/engine.rb:
|
|
68
|
+
#: ../lib/foreman_leapp/engine.rb:98
|
|
67
69
|
msgid "Run Remediation plan with Leapp"
|
|
68
70
|
msgstr "Sanierungsplan mit Leapp ausführen"
|
|
69
71
|
|
|
@@ -181,7 +183,7 @@ msgstr ""
|
|
|
181
183
|
|
|
182
184
|
#: ../webpack/components/PreupgradeReportsList/components/helpers.js:111
|
|
183
185
|
msgid "Summary"
|
|
184
|
-
msgstr ""
|
|
186
|
+
msgstr "Zusammenfassung"
|
|
185
187
|
|
|
186
188
|
#: ../webpack/components/PreupgradeReportsList/components/helpers.js:127
|
|
187
189
|
msgid "Tags"
|
|
@@ -193,23 +195,31 @@ msgstr ""
|
|
|
193
195
|
|
|
194
196
|
#: action_names.rb:2
|
|
195
197
|
msgid "Action with sub plans"
|
|
196
|
-
msgstr ""
|
|
198
|
+
msgstr "Aktion mit Unterplänen"
|
|
197
199
|
|
|
198
200
|
#: action_names.rb:3
|
|
199
|
-
msgid "
|
|
201
|
+
msgid "Check for long running tasks"
|
|
200
202
|
msgstr ""
|
|
201
203
|
|
|
202
204
|
#: action_names.rb:4
|
|
203
|
-
msgid "
|
|
205
|
+
msgid "Deliver notifications about long running tasks"
|
|
204
206
|
msgstr ""
|
|
205
207
|
|
|
206
208
|
#: action_names.rb:5
|
|
207
|
-
msgid "
|
|
208
|
-
msgstr ""
|
|
209
|
+
msgid "Import Puppet classes"
|
|
210
|
+
msgstr "Puppet-Klassen importieren"
|
|
209
211
|
|
|
210
212
|
#: action_names.rb:6
|
|
213
|
+
msgid "Import facts"
|
|
214
|
+
msgstr "Fakten importieren"
|
|
215
|
+
|
|
216
|
+
#: action_names.rb:7
|
|
217
|
+
msgid "Preupgrade job"
|
|
218
|
+
msgstr "Pre-Upgrade-Job"
|
|
219
|
+
|
|
220
|
+
#: action_names.rb:8
|
|
211
221
|
msgid "Remote action:"
|
|
212
|
-
msgstr ""
|
|
222
|
+
msgstr "Entfernte Aktion:"
|
|
213
223
|
|
|
214
224
|
#: gemspec.rb:4
|
|
215
225
|
msgid "A Foreman plugin to support inplace RHEL upgrades with Leapp utility."
|
|
@@ -1,19 +1,20 @@
|
|
|
1
|
-
#
|
|
2
|
-
#
|
|
3
|
-
# This file is distributed under the same license as foreman_leapp.
|
|
1
|
+
# SOME DESCRIPTIVE TITLE.
|
|
2
|
+
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
|
3
|
+
# This file is distributed under the same license as the foreman_leapp package.
|
|
4
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
|
4
5
|
#
|
|
5
6
|
msgid ""
|
|
6
7
|
msgstr ""
|
|
7
|
-
"Project-Id-Version: foreman_leapp 0.
|
|
8
|
+
"Project-Id-Version: foreman_leapp 1.0.0\n"
|
|
8
9
|
"Report-Msgid-Bugs-To: \n"
|
|
9
|
-
"PO-Revision-Date:
|
|
10
|
-
"Last-Translator:
|
|
11
|
-
"Language-Team:
|
|
10
|
+
"PO-Revision-Date: 2023-05-18 10:53+0000\n"
|
|
11
|
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
12
|
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
|
12
13
|
"Language: \n"
|
|
13
14
|
"MIME-Version: 1.0\n"
|
|
14
15
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
15
16
|
"Content-Transfer-Encoding: 8bit\n"
|
|
16
|
-
"Plural-Forms: nplurals=
|
|
17
|
+
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
|
17
18
|
|
|
18
19
|
#: ../app/controllers/api/v2/concerns/api_authorizer.rb:16
|
|
19
20
|
msgid "Missing one of the required permissions: view_hosts"
|
|
@@ -31,31 +32,31 @@ msgstr ""
|
|
|
31
32
|
msgid "List Preupgrade reports for Job invocation"
|
|
32
33
|
msgstr ""
|
|
33
34
|
|
|
34
|
-
#: ../app/helpers/foreman_leapp/hosts_helper.rb:6 ../lib/foreman_leapp/engine.rb:
|
|
35
|
+
#: ../app/helpers/foreman_leapp/hosts_helper.rb:6 ../lib/foreman_leapp/engine.rb:83
|
|
35
36
|
msgid "Preupgrade check with Leapp"
|
|
36
37
|
msgstr ""
|
|
37
38
|
|
|
38
|
-
#: ../app/helpers/foreman_leapp/hosts_helper.rb:8 ../lib/foreman_leapp/engine.rb:
|
|
39
|
+
#: ../app/helpers/foreman_leapp/hosts_helper.rb:8 ../lib/foreman_leapp/engine.rb:90
|
|
39
40
|
msgid "Upgrade with Leapp"
|
|
40
41
|
msgstr ""
|
|
41
42
|
|
|
42
|
-
#: ../lib/foreman_leapp/engine.rb:
|
|
43
|
+
#: ../lib/foreman_leapp/engine.rb:33
|
|
43
44
|
msgid "Leapp preupgrade report"
|
|
44
45
|
msgstr ""
|
|
45
46
|
|
|
46
|
-
#: ../lib/foreman_leapp/engine.rb:
|
|
47
|
+
#: ../lib/foreman_leapp/engine.rb:84
|
|
47
48
|
msgid "Upgradeability check for RHEL host"
|
|
48
49
|
msgstr ""
|
|
49
50
|
|
|
50
|
-
#: ../lib/foreman_leapp/engine.rb:
|
|
51
|
+
#: ../lib/foreman_leapp/engine.rb:91
|
|
51
52
|
msgid "Run Leapp upgrade job for RHEL host"
|
|
52
53
|
msgstr ""
|
|
53
54
|
|
|
54
|
-
#: ../lib/foreman_leapp/engine.rb:
|
|
55
|
+
#: ../lib/foreman_leapp/engine.rb:97
|
|
55
56
|
msgid "Remediation plan"
|
|
56
57
|
msgstr ""
|
|
57
58
|
|
|
58
|
-
#: ../lib/foreman_leapp/engine.rb:
|
|
59
|
+
#: ../lib/foreman_leapp/engine.rb:98
|
|
59
60
|
msgid "Run Remediation plan with Leapp"
|
|
60
61
|
msgstr ""
|
|
61
62
|
|
|
@@ -188,18 +189,26 @@ msgid "Action with sub plans"
|
|
|
188
189
|
msgstr ""
|
|
189
190
|
|
|
190
191
|
#: action_names.rb:3
|
|
191
|
-
msgid "
|
|
192
|
+
msgid "Check for long running tasks"
|
|
192
193
|
msgstr ""
|
|
193
194
|
|
|
194
195
|
#: action_names.rb:4
|
|
195
|
-
msgid "
|
|
196
|
+
msgid "Deliver notifications about long running tasks"
|
|
196
197
|
msgstr ""
|
|
197
198
|
|
|
198
199
|
#: action_names.rb:5
|
|
199
|
-
msgid "
|
|
200
|
+
msgid "Import Puppet classes"
|
|
200
201
|
msgstr ""
|
|
201
202
|
|
|
202
203
|
#: action_names.rb:6
|
|
204
|
+
msgid "Import facts"
|
|
205
|
+
msgstr ""
|
|
206
|
+
|
|
207
|
+
#: action_names.rb:7
|
|
208
|
+
msgid "Preupgrade job"
|
|
209
|
+
msgstr ""
|
|
210
|
+
|
|
211
|
+
#: action_names.rb:8
|
|
203
212
|
msgid "Remote action:"
|
|
204
213
|
msgstr ""
|
|
205
214
|
|
|
@@ -0,0 +1,218 @@
|
|
|
1
|
+
# French translations for foreman_leapp package.
|
|
2
|
+
# Copyright (C) 2023 THE PACKAGE'S COPYRIGHT HOLDER
|
|
3
|
+
# This file is distributed under the same license as the foreman_leapp package.
|
|
4
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
|
|
5
|
+
#
|
|
6
|
+
msgid ""
|
|
7
|
+
msgstr ""
|
|
8
|
+
"Project-Id-Version: foreman_leapp 1.0.0\n"
|
|
9
|
+
"Report-Msgid-Bugs-To: \n"
|
|
10
|
+
"PO-Revision-Date: 2023-07-25 10:19+0200\n"
|
|
11
|
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
12
|
+
"Language-Team: French\n"
|
|
13
|
+
"Language: fr\n"
|
|
14
|
+
"MIME-Version: 1.0\n"
|
|
15
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
|
16
|
+
"Content-Transfer-Encoding: 8bit\n"
|
|
17
|
+
"Plural-Forms: nplurals=; plural=;\n"
|
|
18
|
+
"\n"
|
|
19
|
+
|
|
20
|
+
#: ../app/controllers/api/v2/concerns/api_authorizer.rb:16
|
|
21
|
+
msgid "Missing one of the required permissions: view_hosts"
|
|
22
|
+
msgstr ""
|
|
23
|
+
|
|
24
|
+
#: ../app/controllers/api/v2/preupgrade_reports_controller.rb:10
|
|
25
|
+
msgid "List Preupgrade reports"
|
|
26
|
+
msgstr ""
|
|
27
|
+
|
|
28
|
+
#: ../app/controllers/api/v2/preupgrade_reports_controller.rb:16
|
|
29
|
+
msgid "Show Preupgrade report"
|
|
30
|
+
msgstr ""
|
|
31
|
+
|
|
32
|
+
#: ../app/controllers/api/v2/preupgrade_reports_controller.rb:22
|
|
33
|
+
msgid "List Preupgrade reports for Job invocation"
|
|
34
|
+
msgstr ""
|
|
35
|
+
|
|
36
|
+
#: ../app/helpers/foreman_leapp/hosts_helper.rb:6 ../lib/foreman_leapp/engine.rb:83
|
|
37
|
+
msgid "Preupgrade check with Leapp"
|
|
38
|
+
msgstr ""
|
|
39
|
+
|
|
40
|
+
#: ../app/helpers/foreman_leapp/hosts_helper.rb:8 ../lib/foreman_leapp/engine.rb:90
|
|
41
|
+
msgid "Upgrade with Leapp"
|
|
42
|
+
msgstr ""
|
|
43
|
+
|
|
44
|
+
#: ../lib/foreman_leapp/engine.rb:33
|
|
45
|
+
msgid "Leapp preupgrade report"
|
|
46
|
+
msgstr ""
|
|
47
|
+
|
|
48
|
+
#: ../lib/foreman_leapp/engine.rb:84
|
|
49
|
+
msgid "Upgradeability check for RHEL host"
|
|
50
|
+
msgstr ""
|
|
51
|
+
|
|
52
|
+
#: ../lib/foreman_leapp/engine.rb:91
|
|
53
|
+
msgid "Run Leapp upgrade job for RHEL host"
|
|
54
|
+
msgstr ""
|
|
55
|
+
|
|
56
|
+
#: ../lib/foreman_leapp/engine.rb:97
|
|
57
|
+
msgid "Remediation plan"
|
|
58
|
+
msgstr ""
|
|
59
|
+
|
|
60
|
+
#: ../lib/foreman_leapp/engine.rb:98
|
|
61
|
+
msgid "Run Remediation plan with Leapp"
|
|
62
|
+
msgstr ""
|
|
63
|
+
|
|
64
|
+
#: ../webpack/components/PreupgradeReports/PreupgradeReports.js:122
|
|
65
|
+
msgid "Could not retrieve data: %(status) - %(msg)"
|
|
66
|
+
msgstr ""
|
|
67
|
+
|
|
68
|
+
#: ../webpack/components/PreupgradeReports/PreupgradeReportsActions.js:27
|
|
69
|
+
msgid "Failed to fetch preupgrade reports from server."
|
|
70
|
+
msgstr ""
|
|
71
|
+
|
|
72
|
+
#: ../webpack/components/PreupgradeReports/components/EntriesFilter.js:19 ../webpack/components/PreupgradeReportsList/components/PreupgradeReportsListHeader.js:38 ../webpack/components/PreupgradeReportsList/components/helpers.js:81
|
|
73
|
+
msgid "Title"
|
|
74
|
+
msgstr ""
|
|
75
|
+
|
|
76
|
+
#: ../webpack/components/PreupgradeReports/components/EntriesFilter.js:20 ../webpack/components/PreupgradeReportsList/components/PreupgradeReportsListHeader.js:13 ../webpack/components/PreupgradeReportsList/components/helpers.js:95
|
|
77
|
+
msgid "Risk Factor"
|
|
78
|
+
msgstr ""
|
|
79
|
+
|
|
80
|
+
#: ../webpack/components/PreupgradeReports/components/EntriesFilter.js:21 ../webpack/components/PreupgradeReportsList/components/PreupgradeReportsListHeader.js:12
|
|
81
|
+
msgid "Host"
|
|
82
|
+
msgstr ""
|
|
83
|
+
|
|
84
|
+
#: ../webpack/components/PreupgradeReports/components/EntriesFilter.js:22
|
|
85
|
+
msgid "Fix Type"
|
|
86
|
+
msgstr ""
|
|
87
|
+
|
|
88
|
+
#: ../webpack/components/PreupgradeReports/components/EntriesFilter.js:23 ../webpack/components/PreupgradeReportsList/components/InhibitorInfoItem.js:21
|
|
89
|
+
msgid "Inhibitor"
|
|
90
|
+
msgstr ""
|
|
91
|
+
|
|
92
|
+
#: ../webpack/components/PreupgradeReports/components/EntriesFilter.js:27 ../webpack/components/PreupgradeReports/components/EntriesFilter.js:35 ../webpack/components/PreupgradeReports/components/EntriesFilter.js:41
|
|
93
|
+
msgid "All"
|
|
94
|
+
msgstr ""
|
|
95
|
+
|
|
96
|
+
#: ../webpack/components/PreupgradeReports/components/EntriesFilter.js:28
|
|
97
|
+
msgid "Low"
|
|
98
|
+
msgstr ""
|
|
99
|
+
|
|
100
|
+
#: ../webpack/components/PreupgradeReports/components/EntriesFilter.js:29
|
|
101
|
+
msgid "Medium"
|
|
102
|
+
msgstr ""
|
|
103
|
+
|
|
104
|
+
#: ../webpack/components/PreupgradeReports/components/EntriesFilter.js:30
|
|
105
|
+
msgid "High"
|
|
106
|
+
msgstr ""
|
|
107
|
+
|
|
108
|
+
#: ../webpack/components/PreupgradeReports/components/EntriesFilter.js:31
|
|
109
|
+
msgid "Info"
|
|
110
|
+
msgstr ""
|
|
111
|
+
|
|
112
|
+
#: ../webpack/components/PreupgradeReports/components/EntriesFilter.js:36 ../webpack/components/PreupgradeReportsList/components/helpers.js:163
|
|
113
|
+
msgid "Hint"
|
|
114
|
+
msgstr ""
|
|
115
|
+
|
|
116
|
+
#: ../webpack/components/PreupgradeReports/components/EntriesFilter.js:37 ../webpack/components/PreupgradeReportsList/components/helpers.js:173
|
|
117
|
+
msgid "Command"
|
|
118
|
+
msgstr ""
|
|
119
|
+
|
|
120
|
+
#: ../webpack/components/PreupgradeReports/components/EntriesFilter.js:42
|
|
121
|
+
msgid "Yes"
|
|
122
|
+
msgstr ""
|
|
123
|
+
|
|
124
|
+
#: ../webpack/components/PreupgradeReports/components/EntriesFilter.js:43
|
|
125
|
+
msgid "No"
|
|
126
|
+
msgstr ""
|
|
127
|
+
|
|
128
|
+
#: ../webpack/components/PreupgradeReports/components/FixSelectedButton.js:12
|
|
129
|
+
msgid "Fix Selected"
|
|
130
|
+
msgstr ""
|
|
131
|
+
|
|
132
|
+
#: ../webpack/components/PreupgradeReports/components/NoReports.js:12
|
|
133
|
+
msgid "The preupgrade report could not be generated, check the job details for the reason"
|
|
134
|
+
msgstr ""
|
|
135
|
+
|
|
136
|
+
#: ../webpack/components/PreupgradeReports/components/NoReports.js:17
|
|
137
|
+
msgid "The preupgrade report will be available after the job finishes"
|
|
138
|
+
msgstr ""
|
|
139
|
+
|
|
140
|
+
#: ../webpack/components/PreupgradeReports/components/NoReports.js:25
|
|
141
|
+
msgid "No Preupgrade Report Available"
|
|
142
|
+
msgstr ""
|
|
143
|
+
|
|
144
|
+
#: ../webpack/components/PreupgradeReports/components/UpgradeAllButton.js:8
|
|
145
|
+
msgid "Run Upgrade"
|
|
146
|
+
msgstr ""
|
|
147
|
+
|
|
148
|
+
#: ../webpack/components/PreupgradeReportsList/components/InhibitorInfoItem.js:17
|
|
149
|
+
msgid "This issue inhibits the upgrade."
|
|
150
|
+
msgstr ""
|
|
151
|
+
|
|
152
|
+
#: ../webpack/components/PreupgradeReportsList/components/PreupgradeReportsListHeader.js:14
|
|
153
|
+
msgid "Has Remediation?"
|
|
154
|
+
msgstr ""
|
|
155
|
+
|
|
156
|
+
#: ../webpack/components/PreupgradeReportsList/components/PreupgradeReportsListHeader.js:15
|
|
157
|
+
msgid "Inhibitor?"
|
|
158
|
+
msgstr ""
|
|
159
|
+
|
|
160
|
+
#: ../webpack/components/PreupgradeReportsList/components/helpers.js:29 ../webpack/components/PreupgradeReportsList/components/helpers.js:56
|
|
161
|
+
msgid "Low Risk Factor"
|
|
162
|
+
msgstr ""
|
|
163
|
+
|
|
164
|
+
#: ../webpack/components/PreupgradeReportsList/components/helpers.js:38
|
|
165
|
+
msgid "Medium Risk Factor"
|
|
166
|
+
msgstr ""
|
|
167
|
+
|
|
168
|
+
#: ../webpack/components/PreupgradeReportsList/components/helpers.js:47
|
|
169
|
+
msgid "High Risk Factor"
|
|
170
|
+
msgstr ""
|
|
171
|
+
|
|
172
|
+
#: ../webpack/components/PreupgradeReportsList/components/helpers.js:68
|
|
173
|
+
msgid "Has Remediation"
|
|
174
|
+
msgstr ""
|
|
175
|
+
|
|
176
|
+
#: ../webpack/components/PreupgradeReportsList/components/helpers.js:111
|
|
177
|
+
msgid "Summary"
|
|
178
|
+
msgstr ""
|
|
179
|
+
|
|
180
|
+
#: ../webpack/components/PreupgradeReportsList/components/helpers.js:127
|
|
181
|
+
msgid "Tags"
|
|
182
|
+
msgstr ""
|
|
183
|
+
|
|
184
|
+
#: ../webpack/components/PreupgradeReportsList/components/helpers.js:143
|
|
185
|
+
msgid "Links"
|
|
186
|
+
msgstr ""
|
|
187
|
+
|
|
188
|
+
#: action_names.rb:2
|
|
189
|
+
msgid "Action with sub plans"
|
|
190
|
+
msgstr ""
|
|
191
|
+
|
|
192
|
+
#: action_names.rb:3
|
|
193
|
+
msgid "Check for long running tasks"
|
|
194
|
+
msgstr ""
|
|
195
|
+
|
|
196
|
+
#: action_names.rb:4
|
|
197
|
+
msgid "Deliver notifications about long running tasks"
|
|
198
|
+
msgstr ""
|
|
199
|
+
|
|
200
|
+
#: action_names.rb:5
|
|
201
|
+
msgid "Import Puppet classes"
|
|
202
|
+
msgstr ""
|
|
203
|
+
|
|
204
|
+
#: action_names.rb:6
|
|
205
|
+
msgid "Import facts"
|
|
206
|
+
msgstr ""
|
|
207
|
+
|
|
208
|
+
#: action_names.rb:7
|
|
209
|
+
msgid "Preupgrade job"
|
|
210
|
+
msgstr ""
|
|
211
|
+
|
|
212
|
+
#: action_names.rb:8
|
|
213
|
+
msgid "Remote action:"
|
|
214
|
+
msgstr ""
|
|
215
|
+
|
|
216
|
+
#: gemspec.rb:4
|
|
217
|
+
msgid "A Foreman plugin to support inplace RHEL upgrades with Leapp utility."
|
|
218
|
+
msgstr ""
|
|
File without changes
|