foreman_openscap 3.0.1 → 4.0.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/controllers/api/v2/compliance/arf_reports_controller.rb +3 -5
- data/app/controllers/api/v2/compliance/scap_contents_controller.rb +1 -1
- data/app/controllers/api/v2/compliance/tailoring_files_controller.rb +1 -1
- data/app/controllers/scap_contents_controller.rb +1 -1
- data/app/controllers/tailoring_files_controller.rb +1 -1
- data/app/models/foreman_openscap/policy.rb +1 -1
- data/lib/foreman_openscap/helper.rb +1 -1
- data/lib/foreman_openscap/version.rb +1 -1
- data/locale/action_names.rb +2 -7
- data/locale/de/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/de/foreman_openscap.po +2 -17
- data/locale/en_GB/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/en_GB/foreman_openscap.po +2 -17
- data/locale/es/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/es/foreman_openscap.po +1 -16
- data/locale/foreman_openscap.pot +6 -26
- data/locale/fr/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/fr/foreman_openscap.po +1 -16
- data/locale/gl/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/gl/foreman_openscap.po +2 -17
- data/locale/it/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/it/foreman_openscap.po +2 -17
- data/locale/ja/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/ja/foreman_openscap.po +1 -16
- data/locale/ko/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/ko/foreman_openscap.po +2 -17
- data/locale/pt_BR/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/pt_BR/foreman_openscap.po +1 -16
- data/locale/ru/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/ru/foreman_openscap.po +2 -17
- data/locale/sv_SE/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/sv_SE/foreman_openscap.po +2 -17
- data/locale/zh_CN/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/zh_CN/foreman_openscap.po +1 -16
- data/locale/zh_TW/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/zh_TW/foreman_openscap.po +2 -17
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1f968e87b516e2d4c5741f81baaa0b600a0fa22e27cc66de44c0564ca409ab6f
|
4
|
+
data.tar.gz: f2a64b24fd9222676b6a91d315e792114627380fa6264acb2a229a7d939de024
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 250422cf84eebf5f22bfc1954d567b7af7851477534fcea29581af421a066fb1904ec3279386aae69777f1212526b83de3460f9da3549a9c3935619d9ea7d51f
|
7
|
+
data.tar.gz: ae5d719e7467bf7b5850864e02e7335befab425035e763299e6a2fe0bbcf24835a1e0c58af22878d5a46278dbf520f5d5bd76c58ce4b3e25d3837a80ae8d6b47
|
@@ -90,14 +90,12 @@ module Api
|
|
90
90
|
end
|
91
91
|
|
92
92
|
def find_resources_before_create
|
93
|
-
|
94
|
-
|
95
|
-
unless ForemanOpenscap::Policy.where(:id => policy_id).any?
|
96
|
-
upload_fail(_("Policy with id %s not found.") % policy_id)
|
93
|
+
unless ForemanOpenscap::Policy.where(:id => params[:policy_id]).any?
|
94
|
+
upload_fail(_("Policy with id %s not found.") % params[:policy_id])
|
97
95
|
return
|
98
96
|
end
|
99
97
|
|
100
|
-
@asset = ForemanOpenscap::Helper::get_asset(params[:cname], policy_id)
|
98
|
+
@asset = ForemanOpenscap::Helper::get_asset(params[:cname], params[:policy_id])
|
101
99
|
|
102
100
|
unless @asset
|
103
101
|
upload_fail(_('Could not find host identified by: %s') % params[:cname])
|
@@ -51,7 +51,7 @@ module Api::V2
|
|
51
51
|
param_group :scap_content
|
52
52
|
|
53
53
|
def update
|
54
|
-
process_response @scap_content.
|
54
|
+
process_response @scap_content.update(scap_content_params)
|
55
55
|
end
|
56
56
|
|
57
57
|
api :DELETE, '/compliance/scap_contents/:id', N_('Deletes an SCAP content')
|
@@ -52,7 +52,7 @@ module Api::V2
|
|
52
52
|
param_group :tailoring_file
|
53
53
|
|
54
54
|
def update
|
55
|
-
process_response @tailoring_file.
|
55
|
+
process_response @tailoring_file.update(tailoring_file_params)
|
56
56
|
end
|
57
57
|
|
58
58
|
api :DELETE, '/compliance/tailoring_files/:id', N_('Deletes a Tailoring file')
|
@@ -2,7 +2,7 @@ module ForemanOpenscap::Helper
|
|
2
2
|
def self.get_asset(cname, policy_id)
|
3
3
|
asset = find_host_by_name_or_uuid(cname)&.get_asset
|
4
4
|
return unless asset
|
5
|
-
asset.policy_ids += [policy_id]
|
5
|
+
asset.policy_ids += [policy_id]
|
6
6
|
asset
|
7
7
|
end
|
8
8
|
|
data/locale/action_names.rb
CHANGED
@@ -1,10 +1,5 @@
|
|
1
1
|
# Autogenerated!
|
2
|
-
_("Import Puppet classes")
|
3
|
-
_("Remote action:")
|
4
2
|
_("Action with sub plans")
|
5
3
|
_("Import facts")
|
6
|
-
_("
|
7
|
-
_("
|
8
|
-
_("Update node")
|
9
|
-
_("Create client")
|
10
|
-
_("Delete client")
|
4
|
+
_("Import Puppet classes")
|
5
|
+
_("Remote action:")
|
Binary file
|
@@ -11,8 +11,8 @@ msgid ""
|
|
11
11
|
msgstr ""
|
12
12
|
"Project-Id-Version: Foreman\n"
|
13
13
|
"Report-Msgid-Bugs-To: \n"
|
14
|
-
"PO-Revision-Date: 2020-02
|
15
|
-
"Last-Translator:
|
14
|
+
"PO-Revision-Date: 2020-03-02 20:59+0000\n"
|
15
|
+
"Last-Translator: Crited <Alexander.Stoll@netways.de>\n"
|
16
16
|
"Language-Team: German (http://www.transifex.com/foreman/foreman/language/de/)\n"
|
17
17
|
"MIME-Version: 1.0\n"
|
18
18
|
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -166,9 +166,6 @@ msgstr "Richtlinie erstellen"
|
|
166
166
|
msgid "Create a Tailoring file"
|
167
167
|
msgstr ""
|
168
168
|
|
169
|
-
msgid "Create client"
|
170
|
-
msgstr ""
|
171
|
-
|
172
169
|
msgid "Dashboard"
|
173
170
|
msgstr "Übersichtsseite"
|
174
171
|
|
@@ -190,18 +187,12 @@ msgstr "Richtlinie löschen"
|
|
190
187
|
msgid "Delete an ARF Report"
|
191
188
|
msgstr "ARF-Bericht löschen"
|
192
189
|
|
193
|
-
msgid "Delete client"
|
194
|
-
msgstr ""
|
195
|
-
|
196
190
|
msgid "Delete compliance policy %s with all of its reports?"
|
197
191
|
msgstr "Compliance-Richtline %s löschen mit allen Berichten?"
|
198
192
|
|
199
193
|
msgid "Delete compliance report for %s?"
|
200
194
|
msgstr "Compliance-Bericht von %s löschen?"
|
201
195
|
|
202
|
-
msgid "Delete host"
|
203
|
-
msgstr ""
|
204
|
-
|
205
196
|
msgid "Delete reports"
|
206
197
|
msgstr "Berichte löschen"
|
207
198
|
|
@@ -834,12 +825,6 @@ msgstr ""
|
|
834
825
|
msgid "Update an SCAP content"
|
835
826
|
msgstr "Einen SCAP-Inhalt aktualisieren "
|
836
827
|
|
837
|
-
msgid "Update host"
|
838
|
-
msgstr ""
|
839
|
-
|
840
|
-
msgid "Update node"
|
841
|
-
msgstr ""
|
842
|
-
|
843
828
|
msgid "Updated hosts: Assigned with OpenSCAP Proxy: %s"
|
844
829
|
msgstr "Host aktualisiert: Zugewiesen mit OpenSCAP Proxy: %s"
|
845
830
|
|
Binary file
|
@@ -7,8 +7,8 @@ msgid ""
|
|
7
7
|
msgstr ""
|
8
8
|
"Project-Id-Version: Foreman\n"
|
9
9
|
"Report-Msgid-Bugs-To: \n"
|
10
|
-
"PO-Revision-Date:
|
11
|
-
"Last-Translator:
|
10
|
+
"PO-Revision-Date: 2020-03-02 20:59+0000\n"
|
11
|
+
"Last-Translator: Lukáš Zapletal\n"
|
12
12
|
"Language-Team: English (United Kingdom) (http://www.transifex.com/foreman/fore"
|
13
13
|
"man/language/en_GB/)\n"
|
14
14
|
"MIME-Version: 1.0\n"
|
@@ -163,9 +163,6 @@ msgstr ""
|
|
163
163
|
msgid "Create a Tailoring file"
|
164
164
|
msgstr ""
|
165
165
|
|
166
|
-
msgid "Create client"
|
167
|
-
msgstr ""
|
168
|
-
|
169
166
|
msgid "Dashboard"
|
170
167
|
msgstr ""
|
171
168
|
|
@@ -187,18 +184,12 @@ msgstr ""
|
|
187
184
|
msgid "Delete an ARF Report"
|
188
185
|
msgstr ""
|
189
186
|
|
190
|
-
msgid "Delete client"
|
191
|
-
msgstr ""
|
192
|
-
|
193
187
|
msgid "Delete compliance policy %s with all of its reports?"
|
194
188
|
msgstr ""
|
195
189
|
|
196
190
|
msgid "Delete compliance report for %s?"
|
197
191
|
msgstr ""
|
198
192
|
|
199
|
-
msgid "Delete host"
|
200
|
-
msgstr ""
|
201
|
-
|
202
193
|
msgid "Delete reports"
|
203
194
|
msgstr ""
|
204
195
|
|
@@ -831,12 +822,6 @@ msgstr ""
|
|
831
822
|
msgid "Update an SCAP content"
|
832
823
|
msgstr ""
|
833
824
|
|
834
|
-
msgid "Update host"
|
835
|
-
msgstr ""
|
836
|
-
|
837
|
-
msgid "Update node"
|
838
|
-
msgstr ""
|
839
|
-
|
840
825
|
msgid "Updated hosts: Assigned with OpenSCAP Proxy: %s"
|
841
826
|
msgstr ""
|
842
827
|
|
Binary file
|
@@ -9,7 +9,7 @@ msgid ""
|
|
9
9
|
msgstr ""
|
10
10
|
"Project-Id-Version: Foreman\n"
|
11
11
|
"Report-Msgid-Bugs-To: \n"
|
12
|
-
"PO-Revision-Date:
|
12
|
+
"PO-Revision-Date: 2020-03-02 20:59+0000\n"
|
13
13
|
"Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>\n"
|
14
14
|
"Language-Team: Spanish (http://www.transifex.com/foreman/foreman/language/es/)"
|
15
15
|
"\n"
|
@@ -165,9 +165,6 @@ msgstr "Crear una política"
|
|
165
165
|
msgid "Create a Tailoring file"
|
166
166
|
msgstr "Crear un archivo de personalización"
|
167
167
|
|
168
|
-
msgid "Create client"
|
169
|
-
msgstr ""
|
170
|
-
|
171
168
|
msgid "Dashboard"
|
172
169
|
msgstr "Tablero de mandos"
|
173
170
|
|
@@ -189,18 +186,12 @@ msgstr "Eliminar una política"
|
|
189
186
|
msgid "Delete an ARF Report"
|
190
187
|
msgstr "Eliminar un informe ARF"
|
191
188
|
|
192
|
-
msgid "Delete client"
|
193
|
-
msgstr ""
|
194
|
-
|
195
189
|
msgid "Delete compliance policy %s with all of its reports?"
|
196
190
|
msgstr "¿Eliminar política de cumplimiento %s junto con todos sus informes?"
|
197
191
|
|
198
192
|
msgid "Delete compliance report for %s?"
|
199
193
|
msgstr "¿Eliminar el informe de cumplimiento para %s?"
|
200
194
|
|
201
|
-
msgid "Delete host"
|
202
|
-
msgstr ""
|
203
|
-
|
204
195
|
msgid "Delete reports"
|
205
196
|
msgstr "Eliminar informes"
|
206
197
|
|
@@ -833,12 +824,6 @@ msgstr "Actualizar un archivo de personalización"
|
|
833
824
|
msgid "Update an SCAP content"
|
834
825
|
msgstr "Actualizar el contenido de SCAP"
|
835
826
|
|
836
|
-
msgid "Update host"
|
837
|
-
msgstr ""
|
838
|
-
|
839
|
-
msgid "Update node"
|
840
|
-
msgstr ""
|
841
|
-
|
842
827
|
msgid "Updated hosts: Assigned with OpenSCAP Proxy: %s"
|
843
828
|
msgstr "Hosts actualizados: Asignados con proxy OpenSCAP: %s"
|
844
829
|
|
data/locale/foreman_openscap.pot
CHANGED
@@ -8,8 +8,8 @@ msgid ""
|
|
8
8
|
msgstr ""
|
9
9
|
"Project-Id-Version: foreman_openscap 1.0.0\n"
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
11
|
-
"POT-Creation-Date: 2020-
|
12
|
-
"PO-Revision-Date: 2020-
|
11
|
+
"POT-Creation-Date: 2020-05-11 18:31+0530\n"
|
12
|
+
"PO-Revision-Date: 2020-05-11 18:31+0530\n"
|
13
13
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14
14
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
15
15
|
"Language: \n"
|
@@ -1295,37 +1295,17 @@ msgid "Run OpenSCAP scan"
|
|
1295
1295
|
msgstr ""
|
1296
1296
|
|
1297
1297
|
#: action_names.rb:2
|
1298
|
-
msgid "
|
1298
|
+
msgid "Action with sub plans"
|
1299
1299
|
msgstr ""
|
1300
1300
|
|
1301
1301
|
#: action_names.rb:3
|
1302
|
-
msgid "
|
1302
|
+
msgid "Import facts"
|
1303
1303
|
msgstr ""
|
1304
1304
|
|
1305
1305
|
#: action_names.rb:4
|
1306
|
-
msgid "
|
1306
|
+
msgid "Import Puppet classes"
|
1307
1307
|
msgstr ""
|
1308
1308
|
|
1309
1309
|
#: action_names.rb:5
|
1310
|
-
msgid "
|
1311
|
-
msgstr ""
|
1312
|
-
|
1313
|
-
#: action_names.rb:6
|
1314
|
-
msgid "Delete host"
|
1315
|
-
msgstr ""
|
1316
|
-
|
1317
|
-
#: action_names.rb:7
|
1318
|
-
msgid "Update host"
|
1319
|
-
msgstr ""
|
1320
|
-
|
1321
|
-
#: action_names.rb:8
|
1322
|
-
msgid "Update node"
|
1323
|
-
msgstr ""
|
1324
|
-
|
1325
|
-
#: action_names.rb:9
|
1326
|
-
msgid "Create client"
|
1327
|
-
msgstr ""
|
1328
|
-
|
1329
|
-
#: action_names.rb:10
|
1330
|
-
msgid "Delete client"
|
1310
|
+
msgid "Remote action:"
|
1331
1311
|
msgstr ""
|
Binary file
|
@@ -10,7 +10,7 @@ msgid ""
|
|
10
10
|
msgstr ""
|
11
11
|
"Project-Id-Version: Foreman\n"
|
12
12
|
"Report-Msgid-Bugs-To: \n"
|
13
|
-
"PO-Revision-Date:
|
13
|
+
"PO-Revision-Date: 2020-03-02 20:59+0000\n"
|
14
14
|
"Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>\n"
|
15
15
|
"Language-Team: French (http://www.transifex.com/foreman/foreman/language/fr/)\n"
|
16
16
|
"MIME-Version: 1.0\n"
|
@@ -165,9 +165,6 @@ msgstr "Créer une stratégie"
|
|
165
165
|
msgid "Create a Tailoring file"
|
166
166
|
msgstr "Créer un fichier de personnalisation"
|
167
167
|
|
168
|
-
msgid "Create client"
|
169
|
-
msgstr ""
|
170
|
-
|
171
168
|
msgid "Dashboard"
|
172
169
|
msgstr "Tableau de bord"
|
173
170
|
|
@@ -189,18 +186,12 @@ msgstr "Supprimer une Stratégie"
|
|
189
186
|
msgid "Delete an ARF Report"
|
190
187
|
msgstr "Supprimer un rapport ARF"
|
191
188
|
|
192
|
-
msgid "Delete client"
|
193
|
-
msgstr ""
|
194
|
-
|
195
189
|
msgid "Delete compliance policy %s with all of its reports?"
|
196
190
|
msgstr "Souhaitez-vous supprimer la stratégie de conformité %s avec tous ses rapports ?"
|
197
191
|
|
198
192
|
msgid "Delete compliance report for %s?"
|
199
193
|
msgstr "Supprimer les rapports de conformité pour %s ?"
|
200
194
|
|
201
|
-
msgid "Delete host"
|
202
|
-
msgstr ""
|
203
|
-
|
204
195
|
msgid "Delete reports"
|
205
196
|
msgstr "Supprimer les rapports"
|
206
197
|
|
@@ -839,12 +830,6 @@ msgstr "Mettre à jour un fichier de personnalisation"
|
|
839
830
|
msgid "Update an SCAP content"
|
840
831
|
msgstr "Mettre à jour un contenu SCAP"
|
841
832
|
|
842
|
-
msgid "Update host"
|
843
|
-
msgstr ""
|
844
|
-
|
845
|
-
msgid "Update node"
|
846
|
-
msgstr ""
|
847
|
-
|
848
833
|
msgid "Updated hosts: Assigned with OpenSCAP Proxy: %s"
|
849
834
|
msgstr "Hôtes mis à jour : attribué avec le proxy OpenSCAP : %s"
|
850
835
|
|
Binary file
|
@@ -7,8 +7,8 @@ msgid ""
|
|
7
7
|
msgstr ""
|
8
8
|
"Project-Id-Version: Foreman\n"
|
9
9
|
"Report-Msgid-Bugs-To: \n"
|
10
|
-
"PO-Revision-Date:
|
11
|
-
"Last-Translator:
|
10
|
+
"PO-Revision-Date: 2020-03-02 20:59+0000\n"
|
11
|
+
"Last-Translator: Lukáš Zapletal\n"
|
12
12
|
"Language-Team: Galician (http://www.transifex.com/foreman/foreman/language/gl/"
|
13
13
|
")\n"
|
14
14
|
"MIME-Version: 1.0\n"
|
@@ -163,9 +163,6 @@ msgstr ""
|
|
163
163
|
msgid "Create a Tailoring file"
|
164
164
|
msgstr ""
|
165
165
|
|
166
|
-
msgid "Create client"
|
167
|
-
msgstr ""
|
168
|
-
|
169
166
|
msgid "Dashboard"
|
170
167
|
msgstr "Escritorio"
|
171
168
|
|
@@ -187,18 +184,12 @@ msgstr ""
|
|
187
184
|
msgid "Delete an ARF Report"
|
188
185
|
msgstr ""
|
189
186
|
|
190
|
-
msgid "Delete client"
|
191
|
-
msgstr ""
|
192
|
-
|
193
187
|
msgid "Delete compliance policy %s with all of its reports?"
|
194
188
|
msgstr ""
|
195
189
|
|
196
190
|
msgid "Delete compliance report for %s?"
|
197
191
|
msgstr ""
|
198
192
|
|
199
|
-
msgid "Delete host"
|
200
|
-
msgstr ""
|
201
|
-
|
202
193
|
msgid "Delete reports"
|
203
194
|
msgstr ""
|
204
195
|
|
@@ -831,12 +822,6 @@ msgstr ""
|
|
831
822
|
msgid "Update an SCAP content"
|
832
823
|
msgstr ""
|
833
824
|
|
834
|
-
msgid "Update host"
|
835
|
-
msgstr ""
|
836
|
-
|
837
|
-
msgid "Update node"
|
838
|
-
msgstr ""
|
839
|
-
|
840
825
|
msgid "Updated hosts: Assigned with OpenSCAP Proxy: %s"
|
841
826
|
msgstr ""
|
842
827
|
|
Binary file
|
@@ -8,8 +8,8 @@ msgid ""
|
|
8
8
|
msgstr ""
|
9
9
|
"Project-Id-Version: Foreman\n"
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
11
|
-
"PO-Revision-Date:
|
12
|
-
"Last-Translator:
|
11
|
+
"PO-Revision-Date: 2020-03-02 20:59+0000\n"
|
12
|
+
"Last-Translator: Lukáš Zapletal\n"
|
13
13
|
"Language-Team: Italian (http://www.transifex.com/foreman/foreman/language/it/)"
|
14
14
|
"\n"
|
15
15
|
"MIME-Version: 1.0\n"
|
@@ -164,9 +164,6 @@ msgstr ""
|
|
164
164
|
msgid "Create a Tailoring file"
|
165
165
|
msgstr ""
|
166
166
|
|
167
|
-
msgid "Create client"
|
168
|
-
msgstr ""
|
169
|
-
|
170
167
|
msgid "Dashboard"
|
171
168
|
msgstr "Dashboard"
|
172
169
|
|
@@ -188,18 +185,12 @@ msgstr ""
|
|
188
185
|
msgid "Delete an ARF Report"
|
189
186
|
msgstr ""
|
190
187
|
|
191
|
-
msgid "Delete client"
|
192
|
-
msgstr ""
|
193
|
-
|
194
188
|
msgid "Delete compliance policy %s with all of its reports?"
|
195
189
|
msgstr ""
|
196
190
|
|
197
191
|
msgid "Delete compliance report for %s?"
|
198
192
|
msgstr ""
|
199
193
|
|
200
|
-
msgid "Delete host"
|
201
|
-
msgstr ""
|
202
|
-
|
203
194
|
msgid "Delete reports"
|
204
195
|
msgstr ""
|
205
196
|
|
@@ -832,12 +823,6 @@ msgstr ""
|
|
832
823
|
msgid "Update an SCAP content"
|
833
824
|
msgstr ""
|
834
825
|
|
835
|
-
msgid "Update host"
|
836
|
-
msgstr ""
|
837
|
-
|
838
|
-
msgid "Update node"
|
839
|
-
msgstr ""
|
840
|
-
|
841
826
|
msgid "Updated hosts: Assigned with OpenSCAP Proxy: %s"
|
842
827
|
msgstr ""
|
843
828
|
|
Binary file
|
@@ -9,7 +9,7 @@ msgid ""
|
|
9
9
|
msgstr ""
|
10
10
|
"Project-Id-Version: Foreman\n"
|
11
11
|
"Report-Msgid-Bugs-To: \n"
|
12
|
-
"PO-Revision-Date:
|
12
|
+
"PO-Revision-Date: 2020-03-02 20:59+0000\n"
|
13
13
|
"Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>\n"
|
14
14
|
"Language-Team: Japanese (http://www.transifex.com/foreman/foreman/language/ja/"
|
15
15
|
")\n"
|
@@ -165,9 +165,6 @@ msgstr "ポリシーの作成"
|
|
165
165
|
msgid "Create a Tailoring file"
|
166
166
|
msgstr "テーラリングファイルの作成"
|
167
167
|
|
168
|
-
msgid "Create client"
|
169
|
-
msgstr ""
|
170
|
-
|
171
168
|
msgid "Dashboard"
|
172
169
|
msgstr "ダッシュボード"
|
173
170
|
|
@@ -189,18 +186,12 @@ msgstr "ポリシーの削除"
|
|
189
186
|
msgid "Delete an ARF Report"
|
190
187
|
msgstr "ARF レポートの定義"
|
191
188
|
|
192
|
-
msgid "Delete client"
|
193
|
-
msgstr ""
|
194
|
-
|
195
189
|
msgid "Delete compliance policy %s with all of its reports?"
|
196
190
|
msgstr "すべてのレポートでコンプライアンスポリシー %s を削除しますか?"
|
197
191
|
|
198
192
|
msgid "Delete compliance report for %s?"
|
199
193
|
msgstr "%s のコンプライアンスレポートを削除しますか?"
|
200
194
|
|
201
|
-
msgid "Delete host"
|
202
|
-
msgstr ""
|
203
|
-
|
204
195
|
msgid "Delete reports"
|
205
196
|
msgstr "レポートを削除"
|
206
197
|
|
@@ -833,12 +824,6 @@ msgstr "テーラリングファイルの更新"
|
|
833
824
|
msgid "Update an SCAP content"
|
834
825
|
msgstr "SCAP コンテンツの更新"
|
835
826
|
|
836
|
-
msgid "Update host"
|
837
|
-
msgstr ""
|
838
|
-
|
839
|
-
msgid "Update node"
|
840
|
-
msgstr ""
|
841
|
-
|
842
827
|
msgid "Updated hosts: Assigned with OpenSCAP Proxy: %s"
|
843
828
|
msgstr "更新済みホスト: OpenSCAP プロキシーで割り当て済み: %s"
|
844
829
|
|
Binary file
|
@@ -8,8 +8,8 @@ msgid ""
|
|
8
8
|
msgstr ""
|
9
9
|
"Project-Id-Version: Foreman\n"
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
11
|
-
"PO-Revision-Date:
|
12
|
-
"Last-Translator:
|
11
|
+
"PO-Revision-Date: 2020-03-02 20:59+0000\n"
|
12
|
+
"Last-Translator: Lukáš Zapletal\n"
|
13
13
|
"Language-Team: Korean (http://www.transifex.com/foreman/foreman/language/ko/)\n"
|
14
14
|
"MIME-Version: 1.0\n"
|
15
15
|
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -163,9 +163,6 @@ msgstr ""
|
|
163
163
|
msgid "Create a Tailoring file"
|
164
164
|
msgstr ""
|
165
165
|
|
166
|
-
msgid "Create client"
|
167
|
-
msgstr ""
|
168
|
-
|
169
166
|
msgid "Dashboard"
|
170
167
|
msgstr "대시보드 "
|
171
168
|
|
@@ -187,18 +184,12 @@ msgstr ""
|
|
187
184
|
msgid "Delete an ARF Report"
|
188
185
|
msgstr ""
|
189
186
|
|
190
|
-
msgid "Delete client"
|
191
|
-
msgstr ""
|
192
|
-
|
193
187
|
msgid "Delete compliance policy %s with all of its reports?"
|
194
188
|
msgstr ""
|
195
189
|
|
196
190
|
msgid "Delete compliance report for %s?"
|
197
191
|
msgstr "%s에 대한 컴플라이언스 보고서를 삭제하시겠습니까?"
|
198
192
|
|
199
|
-
msgid "Delete host"
|
200
|
-
msgstr ""
|
201
|
-
|
202
193
|
msgid "Delete reports"
|
203
194
|
msgstr "보고서 삭제"
|
204
195
|
|
@@ -831,12 +822,6 @@ msgstr ""
|
|
831
822
|
msgid "Update an SCAP content"
|
832
823
|
msgstr "SCAP 컨텐츠 업데이트"
|
833
824
|
|
834
|
-
msgid "Update host"
|
835
|
-
msgstr ""
|
836
|
-
|
837
|
-
msgid "Update node"
|
838
|
-
msgstr ""
|
839
|
-
|
840
825
|
msgid "Updated hosts: Assigned with OpenSCAP Proxy: %s"
|
841
826
|
msgstr ""
|
842
827
|
|
Binary file
|
@@ -8,7 +8,7 @@ msgid ""
|
|
8
8
|
msgstr ""
|
9
9
|
"Project-Id-Version: Foreman\n"
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
11
|
-
"PO-Revision-Date:
|
11
|
+
"PO-Revision-Date: 2020-03-02 20:59+0000\n"
|
12
12
|
"Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>\n"
|
13
13
|
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/foreman/foreman/l"
|
14
14
|
"anguage/pt_BR/)\n"
|
@@ -164,9 +164,6 @@ msgstr "Criar uma política"
|
|
164
164
|
msgid "Create a Tailoring file"
|
165
165
|
msgstr "Criar um arquivo de personalização"
|
166
166
|
|
167
|
-
msgid "Create client"
|
168
|
-
msgstr ""
|
169
|
-
|
170
167
|
msgid "Dashboard"
|
171
168
|
msgstr "Painel"
|
172
169
|
|
@@ -188,18 +185,12 @@ msgstr "Excluir uma política"
|
|
188
185
|
msgid "Delete an ARF Report"
|
189
186
|
msgstr "Excluir um relatório ARF"
|
190
187
|
|
191
|
-
msgid "Delete client"
|
192
|
-
msgstr ""
|
193
|
-
|
194
188
|
msgid "Delete compliance policy %s with all of its reports?"
|
195
189
|
msgstr "Excluir política de conformidade %s com todos os relatórios?"
|
196
190
|
|
197
191
|
msgid "Delete compliance report for %s?"
|
198
192
|
msgstr "Remover relatório de conformidade para %s?"
|
199
193
|
|
200
|
-
msgid "Delete host"
|
201
|
-
msgstr ""
|
202
|
-
|
203
194
|
msgid "Delete reports"
|
204
195
|
msgstr "Remover relatórios"
|
205
196
|
|
@@ -838,12 +829,6 @@ msgstr "Atualizar um arquivo de personalização"
|
|
838
829
|
msgid "Update an SCAP content"
|
839
830
|
msgstr "Atualizar um conteúdo SCAP"
|
840
831
|
|
841
|
-
msgid "Update host"
|
842
|
-
msgstr ""
|
843
|
-
|
844
|
-
msgid "Update node"
|
845
|
-
msgstr ""
|
846
|
-
|
847
832
|
msgid "Updated hosts: Assigned with OpenSCAP Proxy: %s"
|
848
833
|
msgstr "Hosts atualizados: atribuídos com proxy de OpenSCAP: %s"
|
849
834
|
|
Binary file
|
@@ -9,8 +9,8 @@ msgid ""
|
|
9
9
|
msgstr ""
|
10
10
|
"Project-Id-Version: Foreman\n"
|
11
11
|
"Report-Msgid-Bugs-To: \n"
|
12
|
-
"PO-Revision-Date:
|
13
|
-
"Last-Translator:
|
12
|
+
"PO-Revision-Date: 2020-03-02 20:59+0000\n"
|
13
|
+
"Last-Translator: Lukáš Zapletal\n"
|
14
14
|
"Language-Team: Russian (http://www.transifex.com/foreman/foreman/language/ru/)"
|
15
15
|
"\n"
|
16
16
|
"MIME-Version: 1.0\n"
|
@@ -167,9 +167,6 @@ msgstr ""
|
|
167
167
|
msgid "Create a Tailoring file"
|
168
168
|
msgstr ""
|
169
169
|
|
170
|
-
msgid "Create client"
|
171
|
-
msgstr ""
|
172
|
-
|
173
170
|
msgid "Dashboard"
|
174
171
|
msgstr "Обзор"
|
175
172
|
|
@@ -191,18 +188,12 @@ msgstr ""
|
|
191
188
|
msgid "Delete an ARF Report"
|
192
189
|
msgstr ""
|
193
190
|
|
194
|
-
msgid "Delete client"
|
195
|
-
msgstr ""
|
196
|
-
|
197
191
|
msgid "Delete compliance policy %s with all of its reports?"
|
198
192
|
msgstr ""
|
199
193
|
|
200
194
|
msgid "Delete compliance report for %s?"
|
201
195
|
msgstr "Удалить отчет %s?"
|
202
196
|
|
203
|
-
msgid "Delete host"
|
204
|
-
msgstr ""
|
205
|
-
|
206
197
|
msgid "Delete reports"
|
207
198
|
msgstr "Удалить отчеты"
|
208
199
|
|
@@ -835,12 +826,6 @@ msgstr ""
|
|
835
826
|
msgid "Update an SCAP content"
|
836
827
|
msgstr "Обновить описание SCAP"
|
837
828
|
|
838
|
-
msgid "Update host"
|
839
|
-
msgstr ""
|
840
|
-
|
841
|
-
msgid "Update node"
|
842
|
-
msgstr ""
|
843
|
-
|
844
829
|
msgid "Updated hosts: Assigned with OpenSCAP Proxy: %s"
|
845
830
|
msgstr ""
|
846
831
|
|
Binary file
|
@@ -7,8 +7,8 @@ msgid ""
|
|
7
7
|
msgstr ""
|
8
8
|
"Project-Id-Version: Foreman\n"
|
9
9
|
"Report-Msgid-Bugs-To: \n"
|
10
|
-
"PO-Revision-Date:
|
11
|
-
"Last-Translator:
|
10
|
+
"PO-Revision-Date: 2020-03-02 20:59+0000\n"
|
11
|
+
"Last-Translator: Lukáš Zapletal\n"
|
12
12
|
"Language-Team: Swedish (Sweden) (http://www.transifex.com/foreman/foreman/lang"
|
13
13
|
"uage/sv_SE/)\n"
|
14
14
|
"MIME-Version: 1.0\n"
|
@@ -163,9 +163,6 @@ msgstr ""
|
|
163
163
|
msgid "Create a Tailoring file"
|
164
164
|
msgstr ""
|
165
165
|
|
166
|
-
msgid "Create client"
|
167
|
-
msgstr ""
|
168
|
-
|
169
166
|
msgid "Dashboard"
|
170
167
|
msgstr "Instrumentbräda"
|
171
168
|
|
@@ -187,18 +184,12 @@ msgstr ""
|
|
187
184
|
msgid "Delete an ARF Report"
|
188
185
|
msgstr ""
|
189
186
|
|
190
|
-
msgid "Delete client"
|
191
|
-
msgstr ""
|
192
|
-
|
193
187
|
msgid "Delete compliance policy %s with all of its reports?"
|
194
188
|
msgstr ""
|
195
189
|
|
196
190
|
msgid "Delete compliance report for %s?"
|
197
191
|
msgstr ""
|
198
192
|
|
199
|
-
msgid "Delete host"
|
200
|
-
msgstr ""
|
201
|
-
|
202
193
|
msgid "Delete reports"
|
203
194
|
msgstr ""
|
204
195
|
|
@@ -831,12 +822,6 @@ msgstr ""
|
|
831
822
|
msgid "Update an SCAP content"
|
832
823
|
msgstr ""
|
833
824
|
|
834
|
-
msgid "Update host"
|
835
|
-
msgstr ""
|
836
|
-
|
837
|
-
msgid "Update node"
|
838
|
-
msgstr ""
|
839
|
-
|
840
825
|
msgid "Updated hosts: Assigned with OpenSCAP Proxy: %s"
|
841
826
|
msgstr ""
|
842
827
|
|
Binary file
|
@@ -8,7 +8,7 @@ msgid ""
|
|
8
8
|
msgstr ""
|
9
9
|
"Project-Id-Version: Foreman\n"
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
11
|
-
"PO-Revision-Date:
|
11
|
+
"PO-Revision-Date: 2020-03-02 20:59+0000\n"
|
12
12
|
"Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>\n"
|
13
13
|
"Language-Team: Chinese (China) (http://www.transifex.com/foreman/foreman/langu"
|
14
14
|
"age/zh_CN/)\n"
|
@@ -164,9 +164,6 @@ msgstr "创建策略"
|
|
164
164
|
msgid "Create a Tailoring file"
|
165
165
|
msgstr "创建定制文件"
|
166
166
|
|
167
|
-
msgid "Create client"
|
168
|
-
msgstr ""
|
169
|
-
|
170
167
|
msgid "Dashboard"
|
171
168
|
msgstr "仪表板"
|
172
169
|
|
@@ -188,18 +185,12 @@ msgstr "删除一个策略"
|
|
188
185
|
msgid "Delete an ARF Report"
|
189
186
|
msgstr "删除 ARF 报告"
|
190
187
|
|
191
|
-
msgid "Delete client"
|
192
|
-
msgstr ""
|
193
|
-
|
194
188
|
msgid "Delete compliance policy %s with all of its reports?"
|
195
189
|
msgstr "是否删除所有报告中的合规策略 %s?"
|
196
190
|
|
197
191
|
msgid "Delete compliance report for %s?"
|
198
192
|
msgstr "是否删除 %s 的合规报告?"
|
199
193
|
|
200
|
-
msgid "Delete host"
|
201
|
-
msgstr ""
|
202
|
-
|
203
194
|
msgid "Delete reports"
|
204
195
|
msgstr "删除报告"
|
205
196
|
|
@@ -834,12 +825,6 @@ msgstr "更新定制文件"
|
|
834
825
|
msgid "Update an SCAP content"
|
835
826
|
msgstr "更新 SCAP 内容"
|
836
827
|
|
837
|
-
msgid "Update host"
|
838
|
-
msgstr ""
|
839
|
-
|
840
|
-
msgid "Update node"
|
841
|
-
msgstr ""
|
842
|
-
|
843
828
|
msgid "Updated hosts: Assigned with OpenSCAP Proxy: %s"
|
844
829
|
msgstr "更新的主机:分配了 OpenSCAP 代理: %s"
|
845
830
|
|
Binary file
|
@@ -8,8 +8,8 @@ msgid ""
|
|
8
8
|
msgstr ""
|
9
9
|
"Project-Id-Version: Foreman\n"
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
11
|
-
"PO-Revision-Date:
|
12
|
-
"Last-Translator:
|
11
|
+
"PO-Revision-Date: 2020-03-02 20:59+0000\n"
|
12
|
+
"Last-Translator: Lukáš Zapletal\n"
|
13
13
|
"Language-Team: Chinese (Taiwan) (http://www.transifex.com/foreman/foreman/lang"
|
14
14
|
"uage/zh_TW/)\n"
|
15
15
|
"MIME-Version: 1.0\n"
|
@@ -164,9 +164,6 @@ msgstr ""
|
|
164
164
|
msgid "Create a Tailoring file"
|
165
165
|
msgstr ""
|
166
166
|
|
167
|
-
msgid "Create client"
|
168
|
-
msgstr ""
|
169
|
-
|
170
167
|
msgid "Dashboard"
|
171
168
|
msgstr "控制面板"
|
172
169
|
|
@@ -188,18 +185,12 @@ msgstr ""
|
|
188
185
|
msgid "Delete an ARF Report"
|
189
186
|
msgstr ""
|
190
187
|
|
191
|
-
msgid "Delete client"
|
192
|
-
msgstr ""
|
193
|
-
|
194
188
|
msgid "Delete compliance policy %s with all of its reports?"
|
195
189
|
msgstr ""
|
196
190
|
|
197
191
|
msgid "Delete compliance report for %s?"
|
198
192
|
msgstr "刪除 %s 的合規報告?"
|
199
193
|
|
200
|
-
msgid "Delete host"
|
201
|
-
msgstr ""
|
202
|
-
|
203
194
|
msgid "Delete reports"
|
204
195
|
msgstr "刪除報告"
|
205
196
|
|
@@ -832,12 +823,6 @@ msgstr ""
|
|
832
823
|
msgid "Update an SCAP content"
|
833
824
|
msgstr "更新 SCAP 內容"
|
834
825
|
|
835
|
-
msgid "Update host"
|
836
|
-
msgstr ""
|
837
|
-
|
838
|
-
msgid "Update node"
|
839
|
-
msgstr ""
|
840
|
-
|
841
826
|
msgid "Updated hosts: Assigned with OpenSCAP Proxy: %s"
|
842
827
|
msgstr ""
|
843
828
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: foreman_openscap
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 4.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- slukasik@redhat.com
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-05-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -348,7 +348,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
348
348
|
- !ruby/object:Gem::Version
|
349
349
|
version: '0'
|
350
350
|
requirements: []
|
351
|
-
rubygems_version: 3.
|
351
|
+
rubygems_version: 3.0.8
|
352
352
|
signing_key:
|
353
353
|
specification_version: 4
|
354
354
|
summary: Foreman plug-in for displaying OpenSCAP audit reports
|
@@ -380,6 +380,7 @@ test_files:
|
|
380
380
|
- test/helpers/arf_report_dashboard_helper_test.rb
|
381
381
|
- test/helpers/policy_dashboard_helper_test.rb
|
382
382
|
- test/lib/foreman_openscap/bulk_upload_test.rb
|
383
|
+
- test/test_plugin_helper.rb
|
383
384
|
- test/unit/arf_report_status_calculator_test.rb
|
384
385
|
- test/unit/arf_report_test.rb
|
385
386
|
- test/unit/compliance_status_test.rb
|
@@ -388,6 +389,7 @@ test_files:
|
|
388
389
|
- test/unit/message_cleaner_test.rb
|
389
390
|
- test/unit/openscap_host_test.rb
|
390
391
|
- test/unit/policy_mailer_test.rb
|
392
|
+
- test/unit/policy_test.rb
|
391
393
|
- test/unit/scap_content_test.rb
|
392
394
|
- test/unit/services/config_name_service_test.rb
|
393
395
|
- test/unit/services/hostgroup_overrider_test.rb
|
@@ -395,5 +397,3 @@ test_files:
|
|
395
397
|
- test/unit/services/report_dashboard/data_test.rb
|
396
398
|
- test/unit/services/tailoring_files_proxy_check_test.rb
|
397
399
|
- test/unit/tailoring_file_test.rb
|
398
|
-
- test/unit/policy_test.rb
|
399
|
-
- test/test_plugin_helper.rb
|