foreman_openscap 10.1.0 → 10.2.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.
Files changed (41) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/foreman_openscap/load_report.js +1 -1
  3. data/app/models/concerns/foreman_openscap/scap_file_content.rb +1 -1
  4. data/app/services/foreman_openscap/bulk_upload.rb +3 -4
  5. data/lib/foreman_openscap/version.rb +1 -1
  6. data/test/files/scap_contents/cs9-new/ssg-cs9-ds.xml +38 -0
  7. data/test/files/scap_contents/cs9-old/ssg-cs9-ds.xml +38 -0
  8. data/test/lib/foreman_openscap/bulk_upload_test.rb +16 -0
  9. metadata +7 -35
  10. data/locale/cs_CZ/foreman_openscap.edit.po +0 -1442
  11. data/locale/cs_CZ/foreman_openscap.po.time_stamp +0 -0
  12. data/locale/de/foreman_openscap.edit.po +0 -1450
  13. data/locale/de/foreman_openscap.po.time_stamp +0 -0
  14. data/locale/en/foreman_openscap.edit.po +0 -1439
  15. data/locale/en/foreman_openscap.po.time_stamp +0 -0
  16. data/locale/en_GB/foreman_openscap.edit.po +0 -1440
  17. data/locale/en_GB/foreman_openscap.po.time_stamp +0 -0
  18. data/locale/es/foreman_openscap.edit.po +0 -1445
  19. data/locale/es/foreman_openscap.po.time_stamp +0 -0
  20. data/locale/fr/foreman_openscap.edit.po +0 -1459
  21. data/locale/fr/foreman_openscap.po.time_stamp +0 -0
  22. data/locale/gl/foreman_openscap.edit.po +0 -1440
  23. data/locale/gl/foreman_openscap.po.time_stamp +0 -0
  24. data/locale/it/foreman_openscap.edit.po +0 -1442
  25. data/locale/it/foreman_openscap.po.time_stamp +0 -0
  26. data/locale/ja/foreman_openscap.edit.po +0 -1452
  27. data/locale/ja/foreman_openscap.po.time_stamp +0 -0
  28. data/locale/ka/foreman_openscap.edit.po +0 -1448
  29. data/locale/ka/foreman_openscap.po.time_stamp +0 -0
  30. data/locale/ko/foreman_openscap.edit.po +0 -1444
  31. data/locale/ko/foreman_openscap.po.time_stamp +0 -0
  32. data/locale/pt_BR/foreman_openscap.edit.po +0 -1450
  33. data/locale/pt_BR/foreman_openscap.po.time_stamp +0 -0
  34. data/locale/ru/foreman_openscap.edit.po +0 -1444
  35. data/locale/ru/foreman_openscap.po.time_stamp +0 -0
  36. data/locale/sv_SE/foreman_openscap.edit.po +0 -1440
  37. data/locale/sv_SE/foreman_openscap.po.time_stamp +0 -0
  38. data/locale/zh_CN/foreman_openscap.edit.po +0 -1451
  39. data/locale/zh_CN/foreman_openscap.po.time_stamp +0 -0
  40. data/locale/zh_TW/foreman_openscap.edit.po +0 -1441
  41. data/locale/zh_TW/foreman_openscap.po.time_stamp +0 -0
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 99477093ef8367f5665ae531c5f4fc9b04076133d2518fdebd6090ceffac5042
4
- data.tar.gz: 45f208e897338d09b0cf032d52257df497c9c1760ab7dac701c5269b8b1c1de1
3
+ metadata.gz: '0439888bf908c1a7ad5f03474f3b48411e5a1bab3c5a5bd84ecd405e716a355e'
4
+ data.tar.gz: 1d3615c32e243df1d121c0a628cd555d65f4481826710c454b219ff8d76d2aa2
5
5
  SHA512:
6
- metadata.gz: '009f9195a8031f350a79f5bd09735a3dc7d0c9e98f6fa3af0a5e5607da38cf0a1b39069dcda965659953fb3b0aa298dea0e776816514de1eb168ade1fd1e650e'
7
- data.tar.gz: bfcdb2e5b51f652a5b03020b92f474c61e94d03af53bc1e3630975160ead3caa2d3cf1c99ed88e4a9d8e4a99f2e76d58381e151199495e7d42bd6780be5c2131
6
+ metadata.gz: 6a7d1cba25e21591b06f5cd5eaa4e98cb3013b7b54cbb89dacf49b7383a6bdcc1f9eb498e6c1a3c34b068398aaef5a217d582018e5ae7a171eef3f7de1ee4268
7
+ data.tar.gz: 9f2f93540bc1a4405a9d37ffaa6ce89632c7656622022734dfaf7e90727cc2623e613a5a6baa8abf6fb0a515fd98741478e7e863d29bdd3f565841a23f9c5487
@@ -1,5 +1,5 @@
1
1
  $(document).ready(function() {
2
- $('#frame').load(function() {
2
+ $('#frame').on("load",function() {
3
3
  $('#loading').hide();
4
4
  $('#frame').show().css('min-height', '800px');
5
5
  });
@@ -8,7 +8,7 @@ module ForemanOpenscap
8
8
  validates :digest, :presence => true
9
9
  validates :scap_file, :presence => true
10
10
 
11
- before_validation :redigest, :if => lambda { |file_content| file_content.persisted? && file_content.scap_file_changed? }
11
+ before_validation :redigest, :if => lambda { |file_content| !file_content.persisted? || file_content.scap_file_changed? }
12
12
  end
13
13
 
14
14
  def digest
@@ -48,12 +48,11 @@ module ForemanOpenscap
48
48
  next
49
49
  end
50
50
 
51
- file = File.open(datastream, 'rb').read
52
- digest = Digest::SHA2.hexdigest(datastream)
51
+ file = File.read(datastream, mode: 'rb')
53
52
  title = content_name(datastream, from_scap_guide)
54
53
  filename = original_filename(datastream)
55
- scap_content = ScapContent.where(:title => title, :digest => digest).first_or_initialize
56
- next if scap_content.persisted?
54
+
55
+ scap_content = ScapContent.where(:title => title).first_or_initialize
57
56
  scap_content.scap_file = file
58
57
  scap_content.original_filename = filename
59
58
  scap_content.location_ids = Location.all.pluck(:id)
@@ -1,3 +1,3 @@
1
1
  module ForemanOpenscap
2
- VERSION = "10.1.0".freeze
2
+ VERSION = "10.2.0".freeze
3
3
  end
@@ -0,0 +1,38 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <ds:data-stream-collection xmlns:cat="urn:oasis:names:tc:entity:xmlns:xml:catalog" xmlns:cpe-dict="http://cpe.mitre.org/dictionary/2.0" xmlns:cpe-lang="http://cpe.mitre.org/language/2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ds="http://scap.nist.gov/schema/scap/source/1.2" xmlns:html="http://www.w3.org/1999/xhtml" xmlns:ind="http://oval.mitre.org/XMLSchema/oval-definitions-5#independent" xmlns:linux="http://oval.mitre.org/XMLSchema/oval-definitions-5#linux" xmlns:ocil="http://scap.nist.gov/schema/ocil/2.0" xmlns:oval="http://oval.mitre.org/XMLSchema/oval-common-5" xmlns:oval-def="http://oval.mitre.org/XMLSchema/oval-definitions-5" xmlns:unix="http://oval.mitre.org/XMLSchema/oval-definitions-5#unix" xmlns:xccdf-1.2="http://checklists.nist.gov/xccdf/1.2" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" id="scap_org.open-scap_collection_from_xccdf_ssg-rhel9-xccdf.xml" schematron-version="1.3">
3
+ <ds:data-stream id="scap_org.open-scap_datastream_from_xccdf_ssg-rhel9-xccdf.xml" scap-version="1.3" use-case="OTHER">
4
+ <ds:dictionaries>
5
+ <ds:component-ref id="scap_org.open-scap_cref_ssg-rhel9-cpe-dictionary.xml" xlink:href="#scap_org.open-scap_comp_ssg-rhel9-cpe-dictionary.xml">
6
+ <cat:catalog>
7
+ <cat:uri name="ssg-rhel9-cpe-oval.xml" uri="#scap_org.open-scap_cref_ssg-rhel9-cpe-oval.xml"/>
8
+ </cat:catalog>
9
+ </ds:component-ref>
10
+ </ds:dictionaries>
11
+ <ds:checklists>
12
+ <ds:component-ref id="scap_org.open-scap_cref_ssg-rhel9-xccdf.xml" xlink:href="#scap_org.open-scap_comp_ssg-rhel9-xccdf.xml">
13
+ <cat:catalog>
14
+ <cat:uri name="ssg-rhel9-oval.xml" uri="#scap_org.open-scap_cref_ssg-rhel9-oval.xml"/>
15
+ <cat:uri name="ssg-rhel9-ocil.xml" uri="#scap_org.open-scap_cref_ssg-rhel9-ocil.xml"/>
16
+ <cat:uri name="ssg-rhel9-cpe-oval.xml" uri="#scap_org.open-scap_cref_ssg-rhel9-cpe-oval.xml"/>
17
+ </cat:catalog>
18
+ </ds:component-ref>
19
+ </ds:checklists>
20
+ <ds:checks>
21
+ <ds:component-ref id="scap_org.open-scap_cref_ssg-rhel9-oval.xml" xlink:href="#scap_org.open-scap_comp_ssg-rhel9-oval.xml"/>
22
+ <ds:component-ref id="scap_org.open-scap_cref_ssg-rhel9-ocil.xml" xlink:href="#scap_org.open-scap_comp_ssg-rhel9-ocil.xml"/>
23
+ <ds:component-ref id="scap_org.open-scap_cref_ssg-rhel9-cpe-oval.xml" xlink:href="#scap_org.open-scap_comp_ssg-rhel9-cpe-oval.xml"/>
24
+ </ds:checks>
25
+ </ds:data-stream>
26
+ <ds:component id="scap_org.open-scap_comp_ssg-rhel9-cpe-dictionary.xml" timestamp="2024-11-15T00:00:00">
27
+ <cpe-dict:cpe-list xsi:schemaLocation="http://cpe.mitre.org/dictionary/2.0 http://cpe.mitre.org/files/cpe-dictionary_2.1.xsd">
28
+ <cpe-dict:cpe-item name="cpe:/o:redhat:enterprise_linux:9">
29
+ <cpe-dict:title xml:lang="en-us">Red Hat Enterprise Linux 9</cpe-dict:title>
30
+ <cpe-dict:check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="ssg-rhel9-cpe-oval.xml">oval:ssg-installed_OS_is_rhel9:def:1</cpe-dict:check>
31
+ </cpe-dict:cpe-item>
32
+ <cpe-dict:cpe-item name="cpe:/o:centos:centos:9">
33
+ <cpe-dict:title xml:lang="en-us">CentOS Stream 9</cpe-dict:title>
34
+ <cpe-dict:check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="ssg-rhel9-cpe-oval.xml">oval:ssg-installed_OS_is_centos9:def:1</cpe-dict:check>
35
+ </cpe-dict:cpe-item>
36
+ </cpe-dict:cpe-list>
37
+ </ds:component>
38
+ </ds:data-stream-collection>
@@ -0,0 +1,38 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <ds:data-stream-collection xmlns:cat="urn:oasis:names:tc:entity:xmlns:xml:catalog" xmlns:cpe-dict="http://cpe.mitre.org/dictionary/2.0" xmlns:cpe-lang="http://cpe.mitre.org/language/2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ds="http://scap.nist.gov/schema/scap/source/1.2" xmlns:html="http://www.w3.org/1999/xhtml" xmlns:ind="http://oval.mitre.org/XMLSchema/oval-definitions-5#independent" xmlns:linux="http://oval.mitre.org/XMLSchema/oval-definitions-5#linux" xmlns:ocil="http://scap.nist.gov/schema/ocil/2.0" xmlns:oval="http://oval.mitre.org/XMLSchema/oval-common-5" xmlns:oval-def="http://oval.mitre.org/XMLSchema/oval-definitions-5" xmlns:unix="http://oval.mitre.org/XMLSchema/oval-definitions-5#unix" xmlns:xccdf-1.2="http://checklists.nist.gov/xccdf/1.2" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" id="scap_org.open-scap_collection_from_xccdf_ssg-rhel9-xccdf.xml" schematron-version="1.3">
3
+ <ds:data-stream id="scap_org.open-scap_datastream_from_xccdf_ssg-rhel9-xccdf.xml" scap-version="1.3" use-case="OTHER">
4
+ <ds:dictionaries>
5
+ <ds:component-ref id="scap_org.open-scap_cref_ssg-rhel9-cpe-dictionary.xml" xlink:href="#scap_org.open-scap_comp_ssg-rhel9-cpe-dictionary.xml">
6
+ <cat:catalog>
7
+ <cat:uri name="ssg-rhel9-cpe-oval.xml" uri="#scap_org.open-scap_cref_ssg-rhel9-cpe-oval.xml"/>
8
+ </cat:catalog>
9
+ </ds:component-ref>
10
+ </ds:dictionaries>
11
+ <ds:checklists>
12
+ <ds:component-ref id="scap_org.open-scap_cref_ssg-rhel9-xccdf.xml" xlink:href="#scap_org.open-scap_comp_ssg-rhel9-xccdf.xml">
13
+ <cat:catalog>
14
+ <cat:uri name="ssg-rhel9-oval.xml" uri="#scap_org.open-scap_cref_ssg-rhel9-oval.xml"/>
15
+ <cat:uri name="ssg-rhel9-ocil.xml" uri="#scap_org.open-scap_cref_ssg-rhel9-ocil.xml"/>
16
+ <cat:uri name="ssg-rhel9-cpe-oval.xml" uri="#scap_org.open-scap_cref_ssg-rhel9-cpe-oval.xml"/>
17
+ </cat:catalog>
18
+ </ds:component-ref>
19
+ </ds:checklists>
20
+ <ds:checks>
21
+ <ds:component-ref id="scap_org.open-scap_cref_ssg-rhel9-oval.xml" xlink:href="#scap_org.open-scap_comp_ssg-rhel9-oval.xml"/>
22
+ <ds:component-ref id="scap_org.open-scap_cref_ssg-rhel9-ocil.xml" xlink:href="#scap_org.open-scap_comp_ssg-rhel9-ocil.xml"/>
23
+ <ds:component-ref id="scap_org.open-scap_cref_ssg-rhel9-cpe-oval.xml" xlink:href="#scap_org.open-scap_comp_ssg-rhel9-cpe-oval.xml"/>
24
+ </ds:checks>
25
+ </ds:data-stream>
26
+ <ds:component id="scap_org.open-scap_comp_ssg-rhel9-cpe-dictionary.xml" timestamp="2024-05-20T00:00:00">
27
+ <cpe-dict:cpe-list xsi:schemaLocation="http://cpe.mitre.org/dictionary/2.0 http://cpe.mitre.org/files/cpe-dictionary_2.1.xsd">
28
+ <cpe-dict:cpe-item name="cpe:/o:redhat:enterprise_linux:9">
29
+ <cpe-dict:title xml:lang="en-us">Red Hat Enterprise Linux 9</cpe-dict:title>
30
+ <cpe-dict:check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="ssg-rhel9-cpe-oval.xml">oval:ssg-installed_OS_is_rhel9:def:1</cpe-dict:check>
31
+ </cpe-dict:cpe-item>
32
+ <cpe-dict:cpe-item name="cpe:/o:centos:centos:9">
33
+ <cpe-dict:title xml:lang="en-us">CentOS Stream 9</cpe-dict:title>
34
+ <cpe-dict:check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="ssg-rhel9-cpe-oval.xml">oval:ssg-installed_OS_is_centos9:def:1</cpe-dict:check>
35
+ </cpe-dict:cpe-item>
36
+ </cpe-dict:cpe-list>
37
+ </ds:component>
38
+ </ds:data-stream-collection>
@@ -60,4 +60,20 @@ class BulkUploadTest < ActiveSupport::TestCase
60
60
  upload.upload_from_scap_guide
61
61
  end
62
62
  end
63
+
64
+ test 'should upload new files from guide' do
65
+ upload = ForemanOpenscap::BulkUpload.new
66
+ upload.stubs(:package_installed?).returns(true)
67
+ upload.stubs(:files_from_guide).returns(["#{ForemanOpenscap::Engine.root}/test/files/scap_contents/cs9-old/ssg-cs9-ds.xml"])
68
+ assert_difference('ForemanOpenscap::ScapContent.count', 1) do
69
+ upload.upload_from_scap_guide
70
+ end
71
+ old_digest = ForemanOpenscap::ScapContent.last.digest
72
+ upload.stubs(:files_from_guide).returns(["#{ForemanOpenscap::Engine.root}/test/files/scap_contents/cs9-new/ssg-cs9-ds.xml"])
73
+ assert_no_difference('ForemanOpenscap::ScapContent.count') do
74
+ upload.upload_from_scap_guide
75
+ end
76
+ new_digest = ForemanOpenscap::ScapContent.last.digest
77
+ refute_equal old_digest, new_digest
78
+ end
63
79
  end
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: 10.1.0
4
+ version: 10.2.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: 2024-12-03 00:00:00.000000000 Z
11
+ date: 2025-02-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -309,71 +309,39 @@ files:
309
309
  - lib/tasks/foreman_openscap_tasks.rake
310
310
  - locale/Makefile
311
311
  - locale/cs_CZ/LC_MESSAGES/foreman_openscap.mo
312
- - locale/cs_CZ/foreman_openscap.edit.po
313
312
  - locale/cs_CZ/foreman_openscap.po
314
- - locale/cs_CZ/foreman_openscap.po.time_stamp
315
313
  - locale/de/LC_MESSAGES/foreman_openscap.mo
316
- - locale/de/foreman_openscap.edit.po
317
314
  - locale/de/foreman_openscap.po
318
- - locale/de/foreman_openscap.po.time_stamp
319
315
  - locale/en/LC_MESSAGES/foreman_openscap.mo
320
- - locale/en/foreman_openscap.edit.po
321
316
  - locale/en/foreman_openscap.po
322
- - locale/en/foreman_openscap.po.time_stamp
323
317
  - locale/en_GB/LC_MESSAGES/foreman_openscap.mo
324
- - locale/en_GB/foreman_openscap.edit.po
325
318
  - locale/en_GB/foreman_openscap.po
326
- - locale/en_GB/foreman_openscap.po.time_stamp
327
319
  - locale/es/LC_MESSAGES/foreman_openscap.mo
328
- - locale/es/foreman_openscap.edit.po
329
320
  - locale/es/foreman_openscap.po
330
- - locale/es/foreman_openscap.po.time_stamp
331
321
  - locale/foreman_openscap.pot
332
322
  - locale/fr/LC_MESSAGES/foreman_openscap.mo
333
- - locale/fr/foreman_openscap.edit.po
334
323
  - locale/fr/foreman_openscap.po
335
- - locale/fr/foreman_openscap.po.time_stamp
336
324
  - locale/gl/LC_MESSAGES/foreman_openscap.mo
337
- - locale/gl/foreman_openscap.edit.po
338
325
  - locale/gl/foreman_openscap.po
339
- - locale/gl/foreman_openscap.po.time_stamp
340
326
  - locale/it/LC_MESSAGES/foreman_openscap.mo
341
- - locale/it/foreman_openscap.edit.po
342
327
  - locale/it/foreman_openscap.po
343
- - locale/it/foreman_openscap.po.time_stamp
344
328
  - locale/ja/LC_MESSAGES/foreman_openscap.mo
345
- - locale/ja/foreman_openscap.edit.po
346
329
  - locale/ja/foreman_openscap.po
347
- - locale/ja/foreman_openscap.po.time_stamp
348
330
  - locale/ka/LC_MESSAGES/foreman_openscap.mo
349
- - locale/ka/foreman_openscap.edit.po
350
331
  - locale/ka/foreman_openscap.po
351
- - locale/ka/foreman_openscap.po.time_stamp
352
332
  - locale/ko/LC_MESSAGES/foreman_openscap.mo
353
- - locale/ko/foreman_openscap.edit.po
354
333
  - locale/ko/foreman_openscap.po
355
- - locale/ko/foreman_openscap.po.time_stamp
356
334
  - locale/pt_BR/LC_MESSAGES/foreman_openscap.mo
357
- - locale/pt_BR/foreman_openscap.edit.po
358
335
  - locale/pt_BR/foreman_openscap.po
359
- - locale/pt_BR/foreman_openscap.po.time_stamp
360
336
  - locale/ru/LC_MESSAGES/foreman_openscap.mo
361
- - locale/ru/foreman_openscap.edit.po
362
337
  - locale/ru/foreman_openscap.po
363
- - locale/ru/foreman_openscap.po.time_stamp
364
338
  - locale/sv_SE/LC_MESSAGES/foreman_openscap.mo
365
- - locale/sv_SE/foreman_openscap.edit.po
366
339
  - locale/sv_SE/foreman_openscap.po
367
- - locale/sv_SE/foreman_openscap.po.time_stamp
368
340
  - locale/zanata.xml
369
341
  - locale/zh_CN/LC_MESSAGES/foreman_openscap.mo
370
- - locale/zh_CN/foreman_openscap.edit.po
371
342
  - locale/zh_CN/foreman_openscap.po
372
- - locale/zh_CN/foreman_openscap.po.time_stamp
373
343
  - locale/zh_TW/LC_MESSAGES/foreman_openscap.mo
374
- - locale/zh_TW/foreman_openscap.edit.po
375
344
  - locale/zh_TW/foreman_openscap.po
376
- - locale/zh_TW/foreman_openscap.po.time_stamp
377
345
  - package.json
378
346
  - test/factories/arf_report_factory.rb
379
347
  - test/factories/asset_factory.rb
@@ -388,6 +356,8 @@ files:
388
356
  - test/files/arf_report/arf_report_msg_desc_changed.json
389
357
  - test/files/arf_report/arf_report_msg_value_changed.json
390
358
  - test/files/oval_contents/ansible-2.9.oval.xml.bz2
359
+ - test/files/scap_contents/cs9-new/ssg-cs9-ds.xml
360
+ - test/files/scap_contents/cs9-old/ssg-cs9-ds.xml
391
361
  - test/files/scap_contents/ssg-fedora-ds.xml
392
362
  - test/files/tailoring_files/ssg-firefox-ds-tailoring-2.xml
393
363
  - test/files/tailoring_files/ssg-firefox-ds-tailoring.xml
@@ -483,7 +453,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
483
453
  - !ruby/object:Gem::Version
484
454
  version: '0'
485
455
  requirements: []
486
- rubygems_version: 3.2.33
456
+ rubygems_version: 3.3.27
487
457
  signing_key:
488
458
  specification_version: 4
489
459
  summary: Foreman plug-in for displaying OpenSCAP audit reports
@@ -501,6 +471,8 @@ test_files:
501
471
  - test/files/arf_report/arf_report_msg_desc_changed.json
502
472
  - test/files/arf_report/arf_report_msg_value_changed.json
503
473
  - test/files/oval_contents/ansible-2.9.oval.xml.bz2
474
+ - test/files/scap_contents/cs9-new/ssg-cs9-ds.xml
475
+ - test/files/scap_contents/cs9-old/ssg-cs9-ds.xml
504
476
  - test/files/scap_contents/ssg-fedora-ds.xml
505
477
  - test/files/tailoring_files/ssg-firefox-ds-tailoring-2.xml
506
478
  - test/files/tailoring_files/ssg-firefox-ds-tailoring.xml