diff --git a/.gitignore b/.gitignore index e71c57c495..48eb170520 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,8 @@ __pycache__ /rpmbuild /test/data/manifests /tools/appsre-ansible/inventory +/build +/check-host-config dictionary.dic *~ diff --git a/Schutzfile b/Schutzfile index 8b85d4ed60..2a98afe66e 100644 --- a/Schutzfile +++ b/Schutzfile @@ -1,6 +1,6 @@ { "common": { - "rngseed": 10, + "rngseed": 12, "bootc-image-builder": { "ref": "quay.io/centos-bootc/bootc-image-builder@sha256:9893e7209e5f449b86ababfd2ee02a58cca2e5990f77b06c3539227531fc8120" }, @@ -84,4 +84,4 @@ } } } -} \ No newline at end of file +} diff --git a/cmd/check-host-config/check/cacerts.go b/cmd/check-host-config/check/cacerts.go new file mode 100644 index 0000000000..574b46f4a2 --- /dev/null +++ b/cmd/check-host-config/check/cacerts.go @@ -0,0 +1,104 @@ +package check + +import ( + "crypto/x509" + "encoding/pem" + "fmt" + "log" + "strings" + + "github.com/osbuild/images/internal/buildconfig" +) + +func init() { + RegisterCheck(Metadata{ + Name: "CA Certs Check", + ShortName: "cacerts", + RequiresBlueprint: true, + RequiresCustomizations: true, + }, cacertsCheck) +} + +func cacertsCheck(meta *Metadata, config *buildconfig.BuildConfig) error { + cacerts := config.Blueprint.Customizations.CACerts + if cacerts == nil || len(cacerts.PEMCerts) == 0 { + return Skip("no CA certs to check") + } + + // Check all CA certs + checkedCount := 0 + for i, pemCert := range cacerts.PEMCerts { + if pemCert == "" { + log.Printf("Skipping empty CA cert at index %d\n", i) + continue + } + checkedCount++ + + log.Printf("Parsing CA cert %d\n", i+1) + block, _ := pem.Decode([]byte(pemCert)) + if block == nil { + return Fail("failed to decode PEM certificate at index", fmt.Sprintf("%d", i)) + } + + if block.Type != "CERTIFICATE" { + return Fail("PEM block is not a CERTIFICATE at index", fmt.Sprintf("%d", i), "got:", block.Type) + } + + cert, err := x509.ParseCertificate(block.Bytes) + if err != nil { + return Fail("failed to parse certificate at index", fmt.Sprintf("%d", i), "error:", err.Error()) + } + + // Extract serial number (format as hex, lowercase) + serial := strings.ToLower(cert.SerialNumber.Text(16)) + log.Printf("Extracting serial from CA cert %d: %s\n", i+1, serial) + + // Extract CN from certificate subject + cn := cert.Subject.CommonName + if cn == "" { + // Fallback: try to extract from Subject.String() if CommonName is empty + // Subject.String() format: "CN=value,OU=...,O=..." + subjectStr := cert.Subject.String() + if _, after, cnOk := strings.Cut(subjectStr, "CN="); cnOk { + cnPart := after + // CN value might be followed by , or end of string + if before, _, pOk := strings.Cut(cnPart, ","); pOk { + cn = before + } else { + cn = cnPart + } + cn = strings.TrimSpace(cn) + } + } + + if cn == "" { + return Fail("failed to extract CN from CA cert subject at index", fmt.Sprintf("%d", i)) + } + + // Check anchor file + anchorPath := "/etc/pki/ca-trust/source/anchors/" + serial + ".pem" + log.Printf("Checking CA cert %d anchor file serial '%s'\n", i+1, serial) + if !Exists(anchorPath) { + return Fail("file missing for cert", fmt.Sprintf("%d", i+1), "at", anchorPath) + } + + // Check extracted CA cert file + log.Printf("Checking extracted CA cert %d file named '%s'\n", i+1, cn) + bundlePath := "/etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem" + found, err := Grep(cn, bundlePath) + if err != nil { + return Fail("extracted CA cert not found in the bundle for cert", fmt.Sprintf("%d", i+1), "cn:", cn, "error:", err.Error()) + } + if !found { + log.Printf("Pattern not found in file: %s\n", bundlePath) + return Fail("extracted CA cert not found in the bundle for cert", fmt.Sprintf("%d", i+1), "cn:", cn) + } + log.Printf("Pattern found in %s\n", bundlePath) + } + + if checkedCount == 0 { + return Skip("all CA certs were empty") + } + + return Pass() +} diff --git a/cmd/check-host-config/check/cacerts_test.go b/cmd/check-host-config/check/cacerts_test.go new file mode 100644 index 0000000000..03d845d67b --- /dev/null +++ b/cmd/check-host-config/check/cacerts_test.go @@ -0,0 +1,182 @@ +package check_test + +import ( + "crypto/rand" + "crypto/rsa" + "crypto/x509" + "crypto/x509/pkix" + "encoding/pem" + "math/big" + "strings" + "testing" + "time" + + "github.com/osbuild/blueprint/pkg/blueprint" + check "github.com/osbuild/images/cmd/check-host-config/check" + "github.com/osbuild/images/internal/test" + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" +) + +// generateTestCert creates a test X509 certificate and returns it as PEM +func generateTestCert(t *testing.T, cn string, serial *big.Int) string { + privKey, err := rsa.GenerateKey(rand.Reader, 2048) + require.NoError(t, err) + + template := x509.Certificate{ + SerialNumber: serial, + Subject: pkix.Name{ + CommonName: cn, + }, + NotBefore: time.Now(), + NotAfter: time.Now().Add(365 * 24 * time.Hour), + KeyUsage: x509.KeyUsageKeyEncipherment | x509.KeyUsageDigitalSignature, + ExtKeyUsage: []x509.ExtKeyUsage{x509.ExtKeyUsageServerAuth}, + BasicConstraintsValid: true, + } + + certDER, err := x509.CreateCertificate(rand.Reader, &template, &template, &privKey.PublicKey, privKey) + require.NoError(t, err) + + certPEM := pem.EncodeToMemory(&pem.Block{ + Type: "CERTIFICATE", + Bytes: certDER, + }) + + return string(certPEM) +} + +func TestCACertsCheck(t *testing.T) { + // Generate a test certificate with a known serial number + serial := big.NewInt(1234567890) + cn := "Test CA Certificate" + pemCert := generateTestCert(t, cn, serial) + + // Calculate expected serial (hex, lowercase) + expectedSerial := strings.ToLower(serial.Text(16)) + + test.MockGlobal(t, &check.Exists, func(name string) bool { + // Check for anchor file + if name == "/etc/pki/ca-trust/source/anchors/"+expectedSerial+".pem" { + return true + } + return false + }) + + test.MockGlobal(t, &check.Grep, func(pattern, filename string) (bool, error) { + // Mock grep to check if CN is in bundle + if filename == "/etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem" && pattern == cn { + return true, nil + } + return false, nil + }) + + chk, found := check.FindCheckByName("CA Certs Check") + require.True(t, found, "CA Certs Check not found") + config := buildConfig(&blueprint.Customizations{ + CACerts: &blueprint.CACustomization{ + PEMCerts: []string{pemCert}, + }, + }) + + require.NoError(t, chk.Func(chk.Meta, config)) +} + +func TestCACertsCheckMultiple(t *testing.T) { + // Generate two test certificates + serial1 := big.NewInt(1111111111) + cn1 := "First CA Certificate" + pemCert1 := generateTestCert(t, cn1, serial1) + expectedSerial1 := strings.ToLower(serial1.Text(16)) + + serial2 := big.NewInt(2222222222) + cn2 := "Second CA Certificate" + pemCert2 := generateTestCert(t, cn2, serial2) + expectedSerial2 := strings.ToLower(serial2.Text(16)) + + test.MockGlobal(t, &check.Exists, func(name string) bool { + // Check for both anchor files + if name == "/etc/pki/ca-trust/source/anchors/"+expectedSerial1+".pem" { + return true + } + if name == "/etc/pki/ca-trust/source/anchors/"+expectedSerial2+".pem" { + return true + } + return false + }) + + test.MockGlobal(t, &check.Grep, func(pattern, filename string) (bool, error) { + // Mock grep to check if CN is in bundle + if filename == "/etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem" && (pattern == cn1 || pattern == cn2) { + return true, nil + } + return false, nil + }) + + chk, found := check.FindCheckByName("CA Certs Check") + require.True(t, found, "CA Certs Check not found") + config := buildConfig(&blueprint.Customizations{ + CACerts: &blueprint.CACustomization{ + PEMCerts: []string{pemCert1, pemCert2}, + }, + }) + + require.NoError(t, chk.Func(chk.Meta, config)) +} + +func TestCACertsCheckSkip(t *testing.T) { + chk, found := check.FindCheckByName("CA Certs Check") + require.True(t, found, "CA Certs Check not found") + config := buildConfig(&blueprint.Customizations{ + CACerts: &blueprint.CACustomization{ + PEMCerts: []string{}, + }, + }) + + err := chk.Func(chk.Meta, config) + require.Error(t, err) + assert.True(t, check.IsSkip(err)) +} + +func TestCACertsCheckEmptyCert(t *testing.T) { + chk, found := check.FindCheckByName("CA Certs Check") + require.True(t, found, "CA Certs Check not found") + config := buildConfig(&blueprint.Customizations{ + CACerts: &blueprint.CACustomization{ + PEMCerts: []string{""}, + }, + }) + + err := chk.Func(chk.Meta, config) + require.Error(t, err) + assert.True(t, check.IsSkip(err)) +} + +func TestCACertsCheckMissingAnchor(t *testing.T) { + serial := big.NewInt(9999999999) + cn := "Missing Anchor Test" + pemCert := generateTestCert(t, cn, serial) + + test.MockGlobal(t, &check.Exists, func(name string) bool { + // Anchor file does not exist + return false + }) + + test.MockGlobal(t, &check.Grep, func(pattern, filename string) (bool, error) { + // Return false to simulate CN not found + return false, nil + }) + + chk, found := check.FindCheckByName("CA Certs Check") + require.True(t, found, "CA Certs Check not found") + config := buildConfig(&blueprint.Customizations{ + CACerts: &blueprint.CACustomization{ + PEMCerts: []string{pemCert}, + }, + }) + + err := chk.Func(chk.Meta, config) + require.Error(t, err) + assert.False(t, check.IsSkip(err)) + assert.True(t, check.IsFail(err)) +} diff --git a/cmd/check-host-config/check/errors.go b/cmd/check-host-config/check/errors.go new file mode 100644 index 0000000000..e7f3b61c24 --- /dev/null +++ b/cmd/check-host-config/check/errors.go @@ -0,0 +1,56 @@ +package check + +import ( + "errors" + "fmt" + "strings" +) + +var ErrCheckSkipped = errors.New("skip") +var ErrCheckFailed = errors.New("fail") +var ErrCheckWarning = errors.New("warn") + +func Skip(reason string) error { + return fmt.Errorf("%w: %s", ErrCheckSkipped, reason) +} + +func Pass() error { + return nil +} + +func Fail(reason ...string) error { + msg := strings.Join(reason, " ") + return fmt.Errorf("%w: %s", ErrCheckFailed, msg) +} + +func Warning(reason ...string) error { + msg := strings.Join(reason, " ") + return fmt.Errorf("%w: %s", ErrCheckWarning, msg) +} + +func IsSkip(err error) bool { + return errors.Is(err, ErrCheckSkipped) +} + +func IsFail(err error) bool { + return errors.Is(err, ErrCheckFailed) +} + +func IsWarning(err error) bool { + return errors.Is(err, ErrCheckWarning) +} + +func IconFor(err error) string { + switch { + case err == nil: + return "đŸŸĸ" + case IsSkip(err): + return "đŸ”ĩ" + case IsWarning(err): + return "🟠" + case IsFail(err): + return "🔴" + default: + return "🔴" + } +} diff --git a/cmd/check-host-config/check/files.go b/cmd/check-host-config/check/files.go new file mode 100644 index 0000000000..ffeb2ff8eb --- /dev/null +++ b/cmd/check-host-config/check/files.go @@ -0,0 +1,40 @@ +package check + +import ( + "github.com/osbuild/images/internal/buildconfig" +) + +func init() { + RegisterCheck(Metadata{ + Name: "Files Check", + ShortName: "files", + RequiresBlueprint: true, + RequiresCustomizations: true, + }, filesCheck) +} + +func filesCheck(meta *Metadata, config *buildconfig.BuildConfig) error { + // Note that this test only checks for the existance of the filesystem + // customizatons target path not the content. For the simple case when + // "data" is provided we could check but for the "uri" case we do not + // know the content as the file usually comes from the host. The + // existing testing framework makes the content check difficult, so we + // settle for this for now. There is an alternative approach in + // https://github.com/osbuild/images/pull/1157/commits/7784f3dc6b435fa03951263e48ea7cfca84c2ebd + // that may eventually be considered that is more direct and runs + // runs locally but different from the existing paradigm so it + // needs further discussion. + expected := config.Blueprint.Customizations.Files + + if len(expected) == 0 { + return Skip("no files to check") + } + + for _, file := range expected { + if !Exists(file.Path) { + return Fail("file does not exist:", file.Path) + } + } + + return Pass() +} diff --git a/cmd/check-host-config/check/files_test.go b/cmd/check-host-config/check/files_test.go new file mode 100644 index 0000000000..f952d5d51e --- /dev/null +++ b/cmd/check-host-config/check/files_test.go @@ -0,0 +1,26 @@ +package check_test + +import ( + "testing" + + "github.com/osbuild/blueprint/pkg/blueprint" + check "github.com/osbuild/images/cmd/check-host-config/check" + "github.com/osbuild/images/internal/test" + "github.com/stretchr/testify/require" +) + +func TestFilesCheck(t *testing.T) { + test.MockGlobal(t, &check.Exists, func(name string) bool { + return true + }) + + chk, found := check.FindCheckByName("Files Check") + require.True(t, found, "Files Check not found") + config := buildConfig(&blueprint.Customizations{ + Files: []blueprint.FileCustomization{ + {Path: "/etc/testfile"}, + }, + }) + + require.NoError(t, chk.Func(chk.Meta, config)) +} diff --git a/cmd/check-host-config/check/firewall_ports.go b/cmd/check-host-config/check/firewall_ports.go new file mode 100644 index 0000000000..41a943ed7c --- /dev/null +++ b/cmd/check-host-config/check/firewall_ports.go @@ -0,0 +1,43 @@ +package check + +import ( + "log" + "strings" + + "github.com/osbuild/images/internal/buildconfig" +) + +func init() { + RegisterCheck(Metadata{ + Name: "Firewall Ports Check", + ShortName: "fw-ports", + RequiresBlueprint: true, + RequiresCustomizations: true, + }, firewallPortsCheck) +} + +func firewallPortsCheck(meta *Metadata, config *buildconfig.BuildConfig) error { + firewall := config.Blueprint.Customizations.Firewall + if firewall == nil || len(firewall.Ports) == 0 { + return Skip("no firewall ports to check") + } + + for _, port := range firewall.Ports { + // firewall-cmd --query-port uses / as the port/protocol separator, but + // in the blueprint we use :. + portQuery := strings.ReplaceAll(port, ":", "/") + log.Printf("Checking enabled firewall port: %s\n", portQuery) + // NOTE: sudo works here without password because we test this only on ami + // initialised with cloud-init, which sets sudo NOPASSWD for the user + state, _, _, err := ExecString("sudo", "firewall-cmd", "--query-port="+portQuery) + if err != nil { + return Fail("firewall port is not enabled:", port, "error:", err.Error()) + } + if state != "yes" { + return Fail("firewall port is not enabled:", port, "state:", state) + } + log.Printf("Firewall port was enabled port=%s state=%s\n", portQuery, state) + } + + return Pass() +} diff --git a/cmd/check-host-config/check/firewall_ports_test.go b/cmd/check-host-config/check/firewall_ports_test.go new file mode 100644 index 0000000000..8bee1baf2f --- /dev/null +++ b/cmd/check-host-config/check/firewall_ports_test.go @@ -0,0 +1,29 @@ +package check_test + +import ( + "testing" + + "github.com/osbuild/blueprint/pkg/blueprint" + check "github.com/osbuild/images/cmd/check-host-config/check" + "github.com/osbuild/images/internal/test" + "github.com/stretchr/testify/require" +) + +func TestFirewallPortsCheck(t *testing.T) { + test.MockGlobal(t, &check.Exec, func(name string, arg ...string) ([]byte, []byte, int, error) { + if joinArgs(name, arg...) == "sudo firewall-cmd --query-port=80/tcp" { + return []byte("yes\n"), nil, 0, nil + } + return nil, nil, 0, nil + }) + + chk, found := check.FindCheckByName("Firewall Ports Check") + require.True(t, found, "Firewall Ports Check not found") + config := buildConfig(&blueprint.Customizations{ + Firewall: &blueprint.FirewallCustomization{ + Ports: []string{"80:tcp"}, + }, + }) + + require.NoError(t, chk.Func(chk.Meta, config)) +} diff --git a/cmd/check-host-config/check/firewall_services_disabled.go b/cmd/check-host-config/check/firewall_services_disabled.go new file mode 100644 index 0000000000..77ecf999ae --- /dev/null +++ b/cmd/check-host-config/check/firewall_services_disabled.go @@ -0,0 +1,39 @@ +package check + +import ( + "log" + + "github.com/osbuild/images/internal/buildconfig" +) + +func init() { + RegisterCheck(Metadata{ + Name: "Firewall Services Disabled Check", + ShortName: "fw-srv-disabled", + RequiresBlueprint: true, + RequiresCustomizations: true, + }, firewallServicesDisabledCheck) +} + +func firewallServicesDisabledCheck(meta *Metadata, config *buildconfig.BuildConfig) error { + firewall := config.Blueprint.Customizations.Firewall + if firewall == nil || firewall.Services == nil || len(firewall.Services.Disabled) == 0 { + return Skip("no disabled firewall services to check") + } + + for _, service := range firewall.Services.Disabled { + log.Printf("Checking disabled firewall service: %s\n", service) + // NOTE: sudo works here without password because we test this only on ami + // initialised with cloud-init, which sets sudo NOPASSWD for the user + state, _, code, err := ExecString("sudo", "firewall-cmd", "--query-service="+service) + if err != nil && code != 1 { // 1 is the exit code for "service not found" + return Fail("problem checking firewall service:", service, "error:", err.Error()) + } + if state == "yes" { + return Fail("firewall service is not disabled:", service, "state:", state) + } + log.Printf("Firewall service was disabled service=%s state=%s\n", service, state) + } + + return Pass() +} diff --git a/cmd/check-host-config/check/firewall_services_disabled_test.go b/cmd/check-host-config/check/firewall_services_disabled_test.go new file mode 100644 index 0000000000..e15481e6a0 --- /dev/null +++ b/cmd/check-host-config/check/firewall_services_disabled_test.go @@ -0,0 +1,31 @@ +package check_test + +import ( + "testing" + + "github.com/osbuild/blueprint/pkg/blueprint" + check "github.com/osbuild/images/cmd/check-host-config/check" + "github.com/osbuild/images/internal/test" + "github.com/stretchr/testify/require" +) + +func TestFirewallServicesDisabledCheck(t *testing.T) { + test.MockGlobal(t, &check.Exec, func(name string, arg ...string) ([]byte, []byte, int, error) { + if joinArgs(name, arg...) == "sudo firewall-cmd --query-service=badservice" { + return []byte("no\n"), nil, 0, nil + } + return nil, nil, 0, nil + }) + + chk, found := check.FindCheckByName("Firewall Services Disabled Check") + require.True(t, found, "Firewall Services Disabled Check not found") + config := buildConfig(&blueprint.Customizations{ + Firewall: &blueprint.FirewallCustomization{ + Services: &blueprint.FirewallServicesCustomization{ + Disabled: []string{"badservice"}, + }, + }, + }) + + require.NoError(t, chk.Func(chk.Meta, config)) +} diff --git a/cmd/check-host-config/check/firewall_services_enabled.go b/cmd/check-host-config/check/firewall_services_enabled.go new file mode 100644 index 0000000000..0a5fb9239c --- /dev/null +++ b/cmd/check-host-config/check/firewall_services_enabled.go @@ -0,0 +1,39 @@ +package check + +import ( + "log" + + "github.com/osbuild/images/internal/buildconfig" +) + +func init() { + RegisterCheck(Metadata{ + Name: "Firewall Services Enabled Check", + ShortName: "fw-srv-enabled", + RequiresBlueprint: true, + RequiresCustomizations: true, + }, firewallServicesEnabledCheck) +} + +func firewallServicesEnabledCheck(meta *Metadata, config *buildconfig.BuildConfig) error { + firewall := config.Blueprint.Customizations.Firewall + if firewall == nil || firewall.Services == nil || len(firewall.Services.Enabled) == 0 { + return Skip("no enabled firewall services to check") + } + + for _, service := range firewall.Services.Enabled { + log.Printf("Checking enabled firewall service: %s\n", service) + // NOTE: sudo works here without password because we test this only on ami + // initialised with cloud-init, which sets sudo NOPASSWD for the user + state, _, _, err := ExecString("sudo", "firewall-cmd", "--query-service="+service) + if err != nil { + return Fail("firewall service is not enabled:", service, "error:", err.Error()) + } + if state != "yes" { + return Fail("firewall service is not enabled:", service, "state:", state) + } + log.Printf("Firewall service was enabled service=%s state=%s\n", service, state) + } + + return Pass() +} diff --git a/cmd/check-host-config/check/firewall_services_enabled_test.go b/cmd/check-host-config/check/firewall_services_enabled_test.go new file mode 100644 index 0000000000..1fb7a40cb8 --- /dev/null +++ b/cmd/check-host-config/check/firewall_services_enabled_test.go @@ -0,0 +1,31 @@ +package check_test + +import ( + "testing" + + "github.com/osbuild/blueprint/pkg/blueprint" + check "github.com/osbuild/images/cmd/check-host-config/check" + "github.com/osbuild/images/internal/test" + "github.com/stretchr/testify/require" +) + +func TestFirewallServicesEnabledCheck(t *testing.T) { + test.MockGlobal(t, &check.Exec, func(name string, arg ...string) ([]byte, []byte, int, error) { + if joinArgs(name, arg...) == "sudo firewall-cmd --query-service=ssh" { + return []byte("yes\n"), nil, 0, nil + } + return nil, nil, 0, nil + }) + + chk, found := check.FindCheckByName("Firewall Services Enabled Check") + require.True(t, found, "Firewall Services Enabled Check not found") + config := buildConfig(&blueprint.Customizations{ + Firewall: &blueprint.FirewallCustomization{ + Services: &blueprint.FirewallServicesCustomization{ + Enabled: []string{"ssh"}, + }, + }, + }) + + require.NoError(t, chk.Func(chk.Meta, config)) +} diff --git a/cmd/check-host-config/check/hostname.go b/cmd/check-host-config/check/hostname.go new file mode 100644 index 0000000000..853d72a56c --- /dev/null +++ b/cmd/check-host-config/check/hostname.go @@ -0,0 +1,34 @@ +package check + +import ( + "github.com/osbuild/images/internal/buildconfig" +) + +func init() { + RegisterCheck(Metadata{ + Name: "Hostname Check", + ShortName: "hostname", + RequiresBlueprint: true, + RequiresCustomizations: true, + }, hostnameCheck) +} + +func hostnameCheck(meta *Metadata, config *buildconfig.BuildConfig) error { + expected := config.Blueprint.Customizations.Hostname + if expected == nil || *expected == "" { + return Skip("no hostname customization") + } + + hostname, _, _, err := ExecString("hostname") + if err != nil { + return err + } + + // we only emit a warning here since the hostname gets reset by cloud-init and we're not + // entirely sure how to deal with it yet on the service level + if hostname != *expected { + return Warning("hostname does not match, got", hostname, "expected", *expected) + } + + return Pass() +} diff --git a/cmd/check-host-config/check/hostname_test.go b/cmd/check-host-config/check/hostname_test.go new file mode 100644 index 0000000000..03ac9a4627 --- /dev/null +++ b/cmd/check-host-config/check/hostname_test.go @@ -0,0 +1,42 @@ +package check_test + +import ( + "testing" + + "github.com/osbuild/blueprint/pkg/blueprint" + check "github.com/osbuild/images/cmd/check-host-config/check" + "github.com/osbuild/images/internal/common" + "github.com/osbuild/images/internal/test" + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" +) + +func TestHostnameCheck(t *testing.T) { + test.MockGlobal(t, &check.Exec, func(name string, arg ...string) ([]byte, []byte, int, error) { + return []byte("test-hostname\n"), nil, 0, nil + }) + + chk, found := check.FindCheckByName("Hostname Check") + require.True(t, found, "Hostname Check not found") + config := buildConfig(&blueprint.Customizations{ + Hostname: common.ToPtr("test-hostname"), + }) + + require.NoError(t, chk.Func(chk.Meta, config)) +} + +func TestHostnameCheckWarning(t *testing.T) { + test.MockGlobal(t, &check.Exec, func(name string, arg ...string) ([]byte, []byte, int, error) { + return []byte("changed-by-cloud-init\n"), nil, 0, nil + }) + + chk, found := check.FindCheckByName("Hostname Check") + require.True(t, found, "Hostname Check not found") + config := buildConfig(&blueprint.Customizations{ + Hostname: common.ToPtr("test-hostname"), + }) + + err := chk.Func(chk.Meta, config) + require.Error(t, err) + assert.True(t, check.IsWarning(err)) +} diff --git a/cmd/check-host-config/check/meta.go b/cmd/check-host-config/check/meta.go new file mode 100644 index 0000000000..76fd52b37a --- /dev/null +++ b/cmd/check-host-config/check/meta.go @@ -0,0 +1,85 @@ +package check + +import ( + "github.com/osbuild/images/internal/buildconfig" +) + +// Metadata provides information about a check. It is used to manage the execution +// of the check and to provide context in logs and reports. +type Metadata struct { + Name string // Full name of the check + ShortName string // Short name of the check used for logging and verbosity + RequiresBlueprint bool // Ensure Blueprint is not nil, skip the check otherwise + RequiresCustomizations bool // Ensure Customizations is not nil, skip the check otherwise + TempDisabled string // Set to non-empty string with URL to issue tracker to disable the check temporarily +} + +// CheckFunc is the function type that all checks must implement. +type CheckFunc func(meta *Metadata, config *buildconfig.BuildConfig) error + +// RegisteredCheck represents a registered check with its metadata and function. +type RegisteredCheck struct { + Meta *Metadata // Metadata of the check + Func CheckFunc // Function to execute the check +} + +// Result represents the outcome of a check execution. +type Result struct { + Meta *Metadata // Metadata of the check + Error error // Error, warning, skip or nil if the check passed +} + +// Make the Result type sortable by error type: passed, skipped, warning, failed +type SortedResults []Result + +func (sr SortedResults) Len() int { + return len(sr) +} + +func (sr SortedResults) Swap(i, j int) { + sr[i], sr[j] = sr[j], sr[i] +} + +func (sr SortedResults) Less(i, j int) bool { + getRank := func(err error) int { + switch { + case err == nil: + return 0 // passed + case IsSkip(err): + return 1 // skipped + case IsWarning(err): + return 2 // warning + case IsFail(err): + return 3 // failed + default: + return 4 // unknown errors last + } + } + return getRank(sr[i].Error) < getRank(sr[j].Error) +} + +// RegisterCheck registers a check implementation. This is called automatically +// by each check's init() function. +func RegisterCheck(meta Metadata, fn CheckFunc) { + checkRegistry = append(checkRegistry, RegisteredCheck{ + Meta: &meta, + Func: fn, + }) +} + +var checkRegistry []RegisteredCheck + +// GetAllChecks returns all registered checks. +func GetAllChecks() []RegisteredCheck { + return checkRegistry +} + +// FindCheckByName finds a registered check by its name. +func FindCheckByName(name string) (RegisteredCheck, bool) { + for _, chk := range checkRegistry { + if chk.Meta.Name == name { + return chk, true + } + } + return RegisteredCheck{Meta: nil, Func: nil}, false +} diff --git a/cmd/check-host-config/check/modularity.go b/cmd/check-host-config/check/modularity.go new file mode 100644 index 0000000000..0eccb181f5 --- /dev/null +++ b/cmd/check-host-config/check/modularity.go @@ -0,0 +1,83 @@ +package check + +import ( + "log" + "strings" + + "github.com/osbuild/images/internal/buildconfig" +) + +func init() { + RegisterCheck(Metadata{ + Name: "Modularity Check", + ShortName: "modularity", + RequiresBlueprint: true, + TempDisabled: "https://github.com/osbuild/images/issues/2061", + }, modularityCheck) +} + +func modularityCheck(meta *Metadata, config *buildconfig.BuildConfig) error { + // Verify modules that are enabled on a system, if any. Modules can either be enabled separately + // or they can be installed through packages directly. We test both cases here. + // + // Caveat is that when a module is enabled yet _no_ packages are installed from it this breaks. + // Let's not do that in the test? + + // Collect expected modules from enabled_modules and packages + var expectedModules []string + + // From enabled_modules + for _, mod := range config.Blueprint.EnabledModules { + expectedModules = append(expectedModules, mod.Name+":"+mod.Stream) + } + + // From packages that start with @ and contain : + for _, pkg := range config.Blueprint.Packages { + if strings.HasPrefix(pkg.Name, "@") && strings.Contains(pkg.Name, ":") { + // Remove @ prefix + moduleName := strings.TrimPrefix(pkg.Name, "@") + expectedModules = append(expectedModules, moduleName) + } + } + + if len(expectedModules) == 0 { + return Skip("no modules to check") + } + + log.Println("Checking enabled modules") + + // Get list of enabled modules from dnf (use -q to suppress download progress output) + stdout, _, _, err := Exec("dnf", "-q", "module", "list", "--enabled") + if err != nil { + return Fail("failed to list enabled modules:", err.Error()) + } + + // Parse dnf output: skip first 3 lines (header) and last 2 lines (footer) + lines := strings.Split(string(stdout), "\n") + if len(lines) < 5 { + return Fail("dnf module list returned nothing") + } + + enabledModules := make(map[string]bool) + for i := 3; i < len(lines)-2; i++ { + line := strings.TrimSpace(lines[i]) + if line == "" { + continue + } + // Format: "name stream" or "name stream" + fields := strings.Fields(line) + if len(fields) >= 2 { + moduleKey := fields[0] + ":" + fields[1] + enabledModules[moduleKey] = true + } + } + + for _, expected := range expectedModules { + if !enabledModules[expected] { + return Fail("module was not enabled:", expected) + } + log.Printf("Expected module %q was enabled\n", expected) + } + + return Pass() +} diff --git a/cmd/check-host-config/check/modularity_test.go b/cmd/check-host-config/check/modularity_test.go new file mode 100644 index 0000000000..af6dcb2b8d --- /dev/null +++ b/cmd/check-host-config/check/modularity_test.go @@ -0,0 +1,210 @@ +package check_test + +import ( + "testing" + + "github.com/osbuild/blueprint/pkg/blueprint" + check "github.com/osbuild/images/cmd/check-host-config/check" + "github.com/osbuild/images/internal/test" + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" +) + +func TestModularityCheck(t *testing.T) { + test.MockGlobal(t, &check.Exec, func(name string, arg ...string) ([]byte, []byte, int, error) { + if joinArgs(name, arg...) == "dnf -q module list --enabled" { + return []byte("Last metadata expiration check: 0:00:00 ago\n" + + "Dependencies resolved.\n" + + "Module Stream Profiles\n" + + "nodejs 18 [d] common [d], development, minimal, s2i\n" + + "python39 3.9 [d] build, common [d], devel, minimal\n" + + "Hint: [d]efault, [e]nabled, [x]disabled, [i]nstalled, [a]ctive\n"), nil, 0, nil + } + return nil, nil, 0, nil + }) + + chk, found := check.FindCheckByName("Modularity Check") + require.True(t, found, "Modularity Check not found") + config := buildConfigWithBlueprint(func(bp *blueprint.Blueprint) { + bp.EnabledModules = []blueprint.EnabledModule{ + {Name: "nodejs", Stream: "18"}, + } + }) + + require.NoError(t, chk.Func(chk.Meta, config)) +} + +func TestModularityCheckSkip(t *testing.T) { + chk, found := check.FindCheckByName("Modularity Check") + require.True(t, found, "Modularity Check not found") + config := buildConfigWithBlueprint(func(bp *blueprint.Blueprint) { + bp.EnabledModules = []blueprint.EnabledModule{} + bp.Packages = []blueprint.Package{} + }) + + err := chk.Func(chk.Meta, config) + require.Error(t, err) + assert.True(t, check.IsSkip(err)) +} + +// Test fixtures for different RHEL versions +// These represent realistic variations in dnf module list --enabled output across versions + +// RHEL 7 format (DNF was tech preview, output might be slightly different) +func dnfModuleListOutputRHEL7() string { + return "Last metadata expiration check: 1:23:45 ago on Mon 01 Jan 2024 12:00:00 PM UTC.\n" + + "Dependencies resolved.\n" + + "Module Stream Profiles\n" + + "nodejs 10 [e] common [d], development, minimal\n" + + "python36 3.6 [e] build, common [d], devel\n" + + "Hint: [d]efault, [e]nabled, [x]disabled, [i]nstalled, [a]ctive\n" +} + +// RHEL 8 format (standard DNF output) +func dnfModuleListOutputRHEL8() string { + return "Last metadata expiration check: 0:00:00 ago on Mon 01 Jan 2024 12:00:00 PM UTC.\n" + + "Dependencies resolved.\n" + + "Module Stream Profiles\n" + + "nodejs 12 [e] common [d], development, minimal, s2i\n" + + "python38 3.8 [e] build, common [d], devel, minimal\n" + + "postgresql 12 [e] client, server [d]\n" + + "Hint: [d]efault, [e]nabled, [x]disabled, [i]nstalled, [a]ctive\n" +} + +// RHEL 9 format (similar to RHEL 8, might have slight variations) +func dnfModuleListOutputRHEL9() string { + return "Last metadata expiration check: 0:00:00 ago\n" + + "Dependencies resolved.\n" + + "Module Stream Profiles\n" + + "nodejs 18 [d] common [d], development, minimal, s2i\n" + + "python39 3.9 [d] build, common [d], devel, minimal\n" + + "Hint: [d]efault, [e]nabled, [x]disabled, [i]nstalled, [a]ctive\n" +} + +// RHEL 10 format (latest format, might have updated messages) +func dnfModuleListOutputRHEL10() string { + return "Last metadata expiration check: 0:00:00 ago\n" + + "Dependencies resolved.\n" + + "Module Stream Profiles\n" + + "nodejs 20 [e] common [d], development, minimal, s2i\n" + + "python312 3.12 [e] build, common [d], devel, minimal\n" + + "postgresql 16 [e] client, server [d], devel\n" + + "Use \"dnf module info \" to get more information.\n" + + "Hint: [d]efault, [e]nabled, [x]disabled, [i]nstalled, [a]ctive\n" +} + +// RHEL 9/10 format with multiple modules and different spacing +func dnfModuleListOutputMultiple() string { + return "Last metadata expiration check: 0:00:00 ago\n" + + "Dependencies resolved.\n" + + "Module Stream Profiles\n" + + "nodejs 18 [e] common [d], development, minimal, s2i\n" + + "python39 3.9 [e] build, common [d], devel, minimal\n" + + "postgresql 13 [e] client, server [d]\n" + + "ruby 3.1 [e] common [d], devel\n" + + "Hint: [d]efault, [e]nabled, [x]disabled, [i]nstalled, [a]ctive\n" +} + +func TestModularityCheckRHEL7(t *testing.T) { + test.MockGlobal(t, &check.Exec, func(name string, arg ...string) ([]byte, []byte, int, error) { + if joinArgs(name, arg...) == "dnf -q module list --enabled" { + return []byte(dnfModuleListOutputRHEL7()), nil, 0, nil + } + return nil, nil, 0, nil + }) + + chk, found := check.FindCheckByName("Modularity Check") + require.True(t, found, "Modularity Check not found") + config := buildConfigWithBlueprint(func(bp *blueprint.Blueprint) { + bp.EnabledModules = []blueprint.EnabledModule{ + {Name: "nodejs", Stream: "10"}, + {Name: "python36", Stream: "3.6"}, + } + }) + + require.NoError(t, chk.Func(chk.Meta, config)) +} + +func TestModularityCheckRHEL8(t *testing.T) { + test.MockGlobal(t, &check.Exec, func(name string, arg ...string) ([]byte, []byte, int, error) { + if joinArgs(name, arg...) == "dnf -q module list --enabled" { + return []byte(dnfModuleListOutputRHEL8()), nil, 0, nil + } + return nil, nil, 0, nil + }) + + chk, found := check.FindCheckByName("Modularity Check") + require.True(t, found, "Modularity Check not found") + config := buildConfigWithBlueprint(func(bp *blueprint.Blueprint) { + bp.EnabledModules = []blueprint.EnabledModule{ + {Name: "nodejs", Stream: "12"}, + {Name: "python38", Stream: "3.8"}, + {Name: "postgresql", Stream: "12"}, + } + }) + + require.NoError(t, chk.Func(chk.Meta, config)) +} + +func TestModularityCheckRHEL9(t *testing.T) { + test.MockGlobal(t, &check.Exec, func(name string, arg ...string) ([]byte, []byte, int, error) { + if joinArgs(name, arg...) == "dnf -q module list --enabled" { + return []byte(dnfModuleListOutputRHEL9()), nil, 0, nil + } + return nil, nil, 0, nil + }) + + chk, found := check.FindCheckByName("Modularity Check") + require.True(t, found, "Modularity Check not found") + config := buildConfigWithBlueprint(func(bp *blueprint.Blueprint) { + bp.EnabledModules = []blueprint.EnabledModule{ + {Name: "nodejs", Stream: "18"}, + {Name: "python39", Stream: "3.9"}, + } + }) + + require.NoError(t, chk.Func(chk.Meta, config)) +} + +func TestModularityCheckRHEL10(t *testing.T) { + test.MockGlobal(t, &check.Exec, func(name string, arg ...string) ([]byte, []byte, int, error) { + if joinArgs(name, arg...) == "dnf -q module list --enabled" { + return []byte(dnfModuleListOutputRHEL10()), nil, 0, nil + } + return nil, nil, 0, nil + }) + + chk, found := check.FindCheckByName("Modularity Check") + require.True(t, found, "Modularity Check not found") + config := buildConfigWithBlueprint(func(bp *blueprint.Blueprint) { + bp.EnabledModules = []blueprint.EnabledModule{ + {Name: "nodejs", Stream: "20"}, + {Name: "python312", Stream: "3.12"}, + {Name: "postgresql", Stream: "16"}, + } + }) + + require.NoError(t, chk.Func(chk.Meta, config)) +} + +func TestModularityCheckMultipleModules(t *testing.T) { + test.MockGlobal(t, &check.Exec, func(name string, arg ...string) ([]byte, []byte, int, error) { + if joinArgs(name, arg...) == "dnf -q module list --enabled" { + return []byte(dnfModuleListOutputMultiple()), nil, 0, nil + } + return nil, nil, 0, nil + }) + + chk, found := check.FindCheckByName("Modularity Check") + require.True(t, found, "Modularity Check not found") + config := buildConfigWithBlueprint(func(bp *blueprint.Blueprint) { + bp.EnabledModules = []blueprint.EnabledModule{ + {Name: "nodejs", Stream: "18"}, + {Name: "python39", Stream: "3.9"}, + {Name: "postgresql", Stream: "13"}, + {Name: "ruby", Stream: "3.1"}, + } + }) + + require.NoError(t, chk.Func(chk.Meta, config)) +} diff --git a/cmd/check-host-config/check/oscap.go b/cmd/check-host-config/check/oscap.go new file mode 100644 index 0000000000..85ce453d9c --- /dev/null +++ b/cmd/check-host-config/check/oscap.go @@ -0,0 +1,206 @@ +package check + +import ( + "encoding/xml" + "fmt" + "log" + "os" + "slices" + "strconv" + "strings" + + "github.com/gocomply/scap/pkg/scap/models/cdf" + "github.com/osbuild/images/internal/buildconfig" +) + +// ignoredSeverityRules is a list of rule IDs that are ignored by the OpenSCAP check. +var ignoredSeverityRules = []string{ + "xccdf_org.ssgproject.content_rule_ensure_redhat_gpgkey_installed", // requires rhsm subscription +} + +func init() { + RegisterCheck(Metadata{ + Name: "OpenSCAP Check", + ShortName: "oscap", + RequiresBlueprint: true, + RequiresCustomizations: true, + }, openSCAPCheck) +} + +// GetDatastreamFilename returns the full OpenSCAP datastream path based on OSRelease. +// Returns the full path (e.g., "/usr/share/xml/scap/ssg/content/ssg-rhel9-ds.xml") or an error if the OS/version combination is not supported. +func GetDatastreamFilename(release *OSRelease) (string, error) { + // Map of OS ID and version to datastream filenames + datastreamMap := map[string]string{ + "rhel:8": "ssg-rhel8-ds.xml", + "rhel:9": "ssg-rhel9-ds.xml", + "rhel:10": "ssg-rhel10-ds.xml", + "centos:8": "ssg-centos8-ds.xml", + "centos:9": "ssg-cs9-ds.xml", + "centos:10": "ssg-cs10-ds.xml", + "fedora": "ssg-fedora-ds.xml", + } + + // Build lookup key + var key string + switch release.ID { + case "rhel", "centos": + if release.MajorVersion == 0 { + return "", fmt.Errorf("unsupported OS version: %s %s", release.ID, release.VersionID) + } + key = fmt.Sprintf("%s:%d", release.ID, release.MajorVersion) + case "fedora": + key = "fedora" + default: + return "", fmt.Errorf("unsupported OS ID: %s", release.ID) + } + + filename, ok := datastreamMap[key] + if !ok { + return "", fmt.Errorf("no datastream found for %s version %d", release.ID, release.MajorVersion) + } + + return "/usr/share/xml/scap/ssg/content/" + filename, nil +} + +// parseOSCAPResults parses the OpenSCAP results.xml file and extracts the score and rule results +func parseOSCAPResults(filename string) (score string, failedHighSeverityRules []string, err error) { + data, err := ReadFile(filename) + if err != nil { + return "", nil, fmt.Errorf("failed to read results.xml: %w", err) + } + log.Printf("Read file: %s (%d bytes)\n", filename, len(data)) + + var benchmark cdf.Benchmark + if err := xml.Unmarshal(data, &benchmark); err != nil { + return "", nil, fmt.Errorf("failed to parse XML (only XCCDF 1.2 is supported): %w", err) + } + + if len(benchmark.TestResult) != 1 { + return "", nil, fmt.Errorf("expected exactly one test result, found %d", len(benchmark.TestResult)) + } + + testResult := benchmark.TestResult[0] + + if len(testResult.Score) == 0 { + return "", nil, fmt.Errorf("score not found in results.xml") + } + score = strings.TrimSpace(testResult.Score[0].Text) + if score == "" { + return "", nil, fmt.Errorf("score is empty in results.xml") + } + + for _, rule := range testResult.RuleResult { + severityStr := string(rule.Severity) + resultStr := string(rule.Result) + + if severityStr == "high" && strings.ToLower(resultStr) == "fail" { + if !slices.Contains(ignoredSeverityRules, rule.Idref) { + ruleStr := fmt.Sprintf("rule-result idref=\"%s\" severity=\"%s\" result=\"%s\"", rule.Idref, severityStr, resultStr) + failedHighSeverityRules = append(failedHighSeverityRules, ruleStr) + } + } + } + + return score, failedHighSeverityRules, nil +} + +func openSCAPCheck(meta *Metadata, config *buildconfig.BuildConfig) error { + oscap := config.Blueprint.Customizations.OpenSCAP + if oscap == nil { + return Skip("no OpenSCAP customization") + } + + osRelease, err := ParseOSRelease("/etc/os-release") + if err != nil { + return Fail("failed to read OS ID from /etc/os-release:", err.Error()) + } + + if osRelease.ID == "rhel" && osRelease.MajorVersion < 8 { + return Skip("only XCCDF 1.2 is supported, which requires RHEL 8.0+") + } + + baselineScore := 0.8 + profile := oscap.ProfileID + datastream := oscap.DataStream + + if profile == "" { + return Skip("incomplete OpenSCAP configuration") + } + + // Handle null/empty datastream by finding default datastream + // See pkg/customizations/oscap/oscap.go:datastream fallbacks + if datastream == "" || datastream == "null" { + datastream, err = GetDatastreamFilename(osRelease) + if err != nil { + return Fail("failed to determine datastream filename:", err.Error()) + } + + log.Printf("Using default datastream: %s\n", datastream) + } + + profileName := profile + "_osbuild_tailoring" + + // Run oscap evaluation + // NOTE: sudo works here without password because we test this only on ami + // initialised with cloud-init, which sets sudo NOPASSWD for the user + // NOTE: oscap returns exit code 2 for any failed rules, so we ignore the error + stdout, _, _, err := Exec("sudo", "oscap", "xccdf", "eval", + "--results", "results.xml", + "--profile", profileName, + "--tailoring-file", "/oscap_data/tailoring.xml", + datastream) + + // oscap may return non-zero exit code even on success (exit code 2 for failed rules) + // so we check if results.xml was created instead + if !Exists("results.xml") { + errMsg := "" + if err != nil { + errMsg = err.Error() + } + return Fail("oscap evaluation failed:", string(stdout), "error:", errMsg) + } + + _, _, _, err = Exec("sudo", "chown", fmt.Sprintf("%d", os.Getuid()), "results.xml") + if err != nil { + log.Printf("Warning: failed to chown results.xml: %v\n", err) + } + + scoreStr, failedRules, err := parseOSCAPResults("results.xml") + if err != nil { + return Fail("failed to parse results.xml:", err.Error()) + } + + hardenedScore, err := strconv.ParseFloat(scoreStr, 64) + if err != nil { + return Fail("failed to parse oscap score:", scoreStr, "error:", err.Error()) + } + // XCCDF scores are already normalized between 0 and 1 + // If score is > 1, it's a percentage that needs conversion + if hardenedScore > 1.0 { + hardenedScore = hardenedScore / 100.0 + } + + log.Printf("Hardened score: %.2f%%\n", hardenedScore*100) + + severityCount := len(failedRules) + log.Printf("Severity count: %d\n", severityCount) + + log.Printf("Baseline score: %.2f%%\n", baselineScore*100) + log.Printf("Hardened score: %.2f%%\n", hardenedScore*100) + + if hardenedScore < baselineScore { + return Fail("hardened image score (", fmt.Sprintf("%.2f", hardenedScore*100), + "%) did not improve baseline score (", fmt.Sprintf("%.2f", baselineScore*100), "%)") + } + + if severityCount > 0 { + log.Println("Failed high severity rules:") + for _, rule := range failedRules { + log.Printf(" %s\n", rule) + } + return Fail("one or more oscap rules with high severity failed") + } + + return Pass() +} diff --git a/cmd/check-host-config/check/oscap_test.go b/cmd/check-host-config/check/oscap_test.go new file mode 100644 index 0000000000..cdf86cfd2c --- /dev/null +++ b/cmd/check-host-config/check/oscap_test.go @@ -0,0 +1,681 @@ +package check_test + +import ( + "os" + "strings" + "testing" + + "github.com/osbuild/blueprint/pkg/blueprint" + check "github.com/osbuild/images/cmd/check-host-config/check" + "github.com/osbuild/images/internal/test" + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" +) + +func TestOpenSCAPCheck(t *testing.T) { + test.MockGlobal(t, &check.Exists, func(name string) bool { + return name == "results.xml" + }) + + // Mock XML file content with score 85.0 and no high severity failures (XCCDF 1.2 format) + xmlContent := ` + + + 85.0 + + pass + + + fail + + +` + + test.MockGlobal(t, &check.ParseOSRelease, func(osReleasePath string) (*check.OSRelease, error) { + return &check.OSRelease{ + ID: "rhel", + VersionID: "9.0", + Version: "9.0 (Plow)", + MajorVersion: 9, + }, nil + }) + + test.MockGlobal(t, &check.ReadFile, func(filename string) ([]byte, error) { + if filename == "results.xml" { + return []byte(xmlContent), nil + } + return os.ReadFile(filename) + }) + + test.MockGlobal(t, &check.Exec, func(name string, arg ...string) ([]byte, []byte, int, error) { + cmd := joinArgs(name, arg...) + if strings.HasPrefix(cmd, "sudo oscap") { + return []byte(""), nil, 0, nil + } + if strings.HasPrefix(cmd, "sudo chown") { + return []byte(""), nil, 0, nil + } + return nil, nil, 0, nil + }) + + chk, found := check.FindCheckByName("OpenSCAP Check") + require.True(t, found, "OpenSCAP Check not found") + config := buildConfig(&blueprint.Customizations{ + OpenSCAP: &blueprint.OpenSCAPCustomization{ + ProfileID: "xccdf_org.ssgproject.content_profile_ospp", + DataStream: "/usr/share/xml/scap/ssg/content/ssg-rhel9-ds.xml", + }, + }) + + require.NoError(t, chk.Func(chk.Meta, config)) +} + +func TestOpenSCAPCheckSkip(t *testing.T) { + chk, found := check.FindCheckByName("OpenSCAP Check") + require.True(t, found, "OpenSCAP Check not found") + config := buildConfig(&blueprint.Customizations{ + OpenSCAP: nil, + }) + + err := chk.Func(chk.Meta, config) + require.Error(t, err) + assert.True(t, check.IsSkip(err)) +} + +func TestOpenSCAPCheckSkipIncomplete(t *testing.T) { + chk, found := check.FindCheckByName("OpenSCAP Check") + require.True(t, found, "OpenSCAP Check not found") + config := buildConfig(&blueprint.Customizations{ + OpenSCAP: &blueprint.OpenSCAPCustomization{ + ProfileID: "", + DataStream: "/usr/share/xml/scap/ssg/content/ssg-rhel9-ds.xml", + }, + }) + + err := chk.Func(chk.Meta, config) + require.Error(t, err) + assert.True(t, check.IsSkip(err)) +} + +func TestOpenSCAPCheckFailNoResults(t *testing.T) { + test.MockGlobal(t, &check.Exists, func(name string) bool { + // results.xml does not exist + return false + }) + + test.MockGlobal(t, &check.Exec, func(name string, arg ...string) ([]byte, []byte, int, error) { + cmd := joinArgs(name, arg...) + if strings.HasPrefix(cmd, "sudo oscap") { + return []byte("oscap error"), nil, 0, nil + } + if strings.HasPrefix(cmd, "sudo chown") { + return []byte(""), nil, 0, nil + } + return nil, nil, 0, nil + }) + + chk, found := check.FindCheckByName("OpenSCAP Check") + require.True(t, found, "OpenSCAP Check not found") + config := buildConfig(&blueprint.Customizations{ + OpenSCAP: &blueprint.OpenSCAPCustomization{ + ProfileID: "xccdf_org.ssgproject.content_profile_ospp", + DataStream: "/usr/share/xml/scap/ssg/content/ssg-rhel9-ds.xml", + }, + }) + + err := chk.Func(chk.Meta, config) + require.Error(t, err) + assert.True(t, check.IsFail(err)) +} + +func TestOpenSCAPCheckFailLowScore(t *testing.T) { + test.MockGlobal(t, &check.Exists, func(name string) bool { + return name == "results.xml" + }) + + // Mock XML file content with low score (70.0, below baseline of 80.0) (XCCDF 1.2 format) + xmlContent := ` + + + 70.0 + + pass + + +` + + test.MockGlobal(t, &check.ParseOSRelease, func(osReleasePath string) (*check.OSRelease, error) { + return &check.OSRelease{ + ID: "rhel", + VersionID: "9.0", + Version: "9.0 (Plow)", + MajorVersion: 9, + }, nil + }) + + test.MockGlobal(t, &check.ReadFile, func(filename string) ([]byte, error) { + if filename == "results.xml" { + return []byte(xmlContent), nil + } + return os.ReadFile(filename) + }) + + test.MockGlobal(t, &check.Exec, func(name string, arg ...string) ([]byte, []byte, int, error) { + cmd := joinArgs(name, arg...) + if strings.HasPrefix(cmd, "sudo oscap") { + return []byte(""), nil, 0, nil + } + if strings.HasPrefix(cmd, "sudo chown") { + return []byte(""), nil, 0, nil + } + return nil, nil, 0, nil + }) + + chk, found := check.FindCheckByName("OpenSCAP Check") + require.True(t, found, "OpenSCAP Check not found") + config := buildConfig(&blueprint.Customizations{ + OpenSCAP: &blueprint.OpenSCAPCustomization{ + ProfileID: "xccdf_org.ssgproject.content_profile_ospp", + DataStream: "/usr/share/xml/scap/ssg/content/ssg-rhel9-ds.xml", + }, + }) + + err := chk.Func(chk.Meta, config) + require.Error(t, err) + assert.True(t, check.IsFail(err)) +} + +func TestOpenSCAPCheckFailHighSeverityRules(t *testing.T) { + test.MockGlobal(t, &check.Exists, func(name string) bool { + return name == "results.xml" + }) + + // Mock XML file content with good score but high severity failures (XCCDF 1.2 format) + xmlContent := ` + + + 85.0 + + fail + + + pass + + + fail + + +` + + test.MockGlobal(t, &check.ParseOSRelease, func(osReleasePath string) (*check.OSRelease, error) { + return &check.OSRelease{ + ID: "rhel", + VersionID: "9.0", + Version: "9.0 (Plow)", + MajorVersion: 9, + }, nil + }) + + test.MockGlobal(t, &check.ReadFile, func(filename string) ([]byte, error) { + if filename == "results.xml" { + return []byte(xmlContent), nil + } + return os.ReadFile(filename) + }) + + test.MockGlobal(t, &check.Exec, func(name string, arg ...string) ([]byte, []byte, int, error) { + cmd := joinArgs(name, arg...) + if strings.HasPrefix(cmd, "sudo oscap") { + return []byte(""), nil, 0, nil + } + if strings.HasPrefix(cmd, "sudo chown") { + return []byte(""), nil, 0, nil + } + return nil, nil, 0, nil + }) + + chk, found := check.FindCheckByName("OpenSCAP Check") + require.True(t, found, "OpenSCAP Check not found") + config := buildConfig(&blueprint.Customizations{ + OpenSCAP: &blueprint.OpenSCAPCustomization{ + ProfileID: "xccdf_org.ssgproject.content_profile_ospp", + DataStream: "/usr/share/xml/scap/ssg/content/ssg-rhel9-ds.xml", + }, + }) + + err := chk.Func(chk.Meta, config) + require.Error(t, err) + assert.True(t, check.IsFail(err)) +} + +func TestOpenSCAPCheckIgnoreHighSeverityRules(t *testing.T) { + test.MockGlobal(t, &check.Exists, func(name string) bool { + return name == "results.xml" + }) + + // Mock XML file content with good score and ignored high severity failure (XCCDF 1.2 format) + // The ignored rule should not cause the check to fail + xmlContent := ` + + + 85.0 + + fail + + + pass + + +` + + test.MockGlobal(t, &check.ParseOSRelease, func(osReleasePath string) (*check.OSRelease, error) { + return &check.OSRelease{ + ID: "rhel", + VersionID: "9.0", + Version: "9.0 (Plow)", + MajorVersion: 9, + }, nil + }) + + test.MockGlobal(t, &check.ReadFile, func(filename string) ([]byte, error) { + if filename == "results.xml" { + return []byte(xmlContent), nil + } + return os.ReadFile(filename) + }) + + test.MockGlobal(t, &check.Exec, func(name string, arg ...string) ([]byte, []byte, int, error) { + cmd := joinArgs(name, arg...) + if strings.HasPrefix(cmd, "sudo oscap") { + return []byte(""), nil, 0, nil + } + if strings.HasPrefix(cmd, "sudo chown") { + return []byte(""), nil, 0, nil + } + return nil, nil, 0, nil + }) + + chk, found := check.FindCheckByName("OpenSCAP Check") + require.True(t, found, "OpenSCAP Check not found") + config := buildConfig(&blueprint.Customizations{ + OpenSCAP: &blueprint.OpenSCAPCustomization{ + ProfileID: "xccdf_org.ssgproject.content_profile_ospp", + DataStream: "/usr/share/xml/scap/ssg/content/ssg-rhel9-ds.xml", + }, + }) + + require.NoError(t, chk.Func(chk.Meta, config)) +} + +func TestOpenSCAPCheckIgnoreAndFailHighSeverityRules(t *testing.T) { + test.MockGlobal(t, &check.Exists, func(name string) bool { + return name == "results.xml" + }) + + // Mock XML file content with good score, one ignored high severity failure and one non-ignored failure + // The check should fail because of the non-ignored rule, but the ignored rule should not appear in the error + xmlContent := ` + + + 85.0 + + fail + + + fail + + +` + + test.MockGlobal(t, &check.ParseOSRelease, func(osReleasePath string) (*check.OSRelease, error) { + return &check.OSRelease{ + ID: "rhel", + VersionID: "9.0", + Version: "9.0 (Plow)", + MajorVersion: 9, + }, nil + }) + + test.MockGlobal(t, &check.ReadFile, func(filename string) ([]byte, error) { + if filename == "results.xml" { + return []byte(xmlContent), nil + } + return os.ReadFile(filename) + }) + + test.MockGlobal(t, &check.Exec, func(name string, arg ...string) ([]byte, []byte, int, error) { + cmd := joinArgs(name, arg...) + if strings.HasPrefix(cmd, "sudo oscap") { + return []byte(""), nil, 0, nil + } + if strings.HasPrefix(cmd, "sudo chown") { + return []byte(""), nil, 0, nil + } + return nil, nil, 0, nil + }) + + chk, found := check.FindCheckByName("OpenSCAP Check") + require.True(t, found, "OpenSCAP Check not found") + config := buildConfig(&blueprint.Customizations{ + OpenSCAP: &blueprint.OpenSCAPCustomization{ + ProfileID: "xccdf_org.ssgproject.content_profile_ospp", + DataStream: "/usr/share/xml/scap/ssg/content/ssg-rhel9-ds.xml", + }, + }) + + err := chk.Func(chk.Meta, config) + require.Error(t, err) + assert.True(t, check.IsFail(err)) +} + +func TestOpenSCAPCheckFailExtractScore(t *testing.T) { + test.MockGlobal(t, &check.Exists, func(name string) bool { + return name == "results.xml" + }) + + // Mock XML file content without score element (should fail parsing) + xmlContent := ` + + + + pass + + +` + + test.MockGlobal(t, &check.ParseOSRelease, func(osReleasePath string) (*check.OSRelease, error) { + return &check.OSRelease{ + ID: "rhel", + VersionID: "9.0", + Version: "9.0 (Plow)", + MajorVersion: 9, + }, nil + }) + + test.MockGlobal(t, &check.ReadFile, func(filename string) ([]byte, error) { + if filename == "results.xml" { + return []byte(xmlContent), nil + } + return os.ReadFile(filename) + }) + + test.MockGlobal(t, &check.Exec, func(name string, arg ...string) ([]byte, []byte, int, error) { + cmd := joinArgs(name, arg...) + if strings.HasPrefix(cmd, "sudo oscap") { + return []byte(""), nil, 0, nil + } + if strings.HasPrefix(cmd, "sudo chown") { + return []byte(""), nil, 0, nil + } + return nil, nil, 0, nil + }) + + chk, found := check.FindCheckByName("OpenSCAP Check") + require.True(t, found, "OpenSCAP Check not found") + config := buildConfig(&blueprint.Customizations{ + OpenSCAP: &blueprint.OpenSCAPCustomization{ + ProfileID: "xccdf_org.ssgproject.content_profile_ospp", + DataStream: "/usr/share/xml/scap/ssg/content/ssg-rhel9-ds.xml", + }, + }) + + err := chk.Func(chk.Meta, config) + require.Error(t, err) + assert.True(t, check.IsFail(err)) +} + +func TestOpenSCAPCheckFailExtractRules(t *testing.T) { + test.MockGlobal(t, &check.Exists, func(name string) bool { + return name == "results.xml" + }) + + // Mock XML file content with invalid XML (should fail parsing) + xmlContent := ` + + + 85.0 + + fail + + +` + + test.MockGlobal(t, &check.ParseOSRelease, func(osReleasePath string) (*check.OSRelease, error) { + return &check.OSRelease{ + ID: "rhel", + VersionID: "9.0", + Version: "9.0 (Plow)", + MajorVersion: 9, + }, nil + }) + + test.MockGlobal(t, &check.ReadFile, func(filename string) ([]byte, error) { + if filename == "results.xml" { + return []byte(xmlContent), nil + } + return os.ReadFile(filename) + }) + + test.MockGlobal(t, &check.Exec, func(name string, arg ...string) ([]byte, []byte, int, error) { + cmd := joinArgs(name, arg...) + if strings.HasPrefix(cmd, "sudo oscap") { + return []byte(""), nil, 0, nil + } + if strings.HasPrefix(cmd, "sudo chown") { + return []byte(""), nil, 0, nil + } + return nil, nil, 0, nil + }) + + chk, found := check.FindCheckByName("OpenSCAP Check") + require.True(t, found, "OpenSCAP Check not found") + config := buildConfig(&blueprint.Customizations{ + OpenSCAP: &blueprint.OpenSCAPCustomization{ + ProfileID: "xccdf_org.ssgproject.content_profile_ospp", + DataStream: "/usr/share/xml/scap/ssg/content/ssg-rhel9-ds.xml", + }, + }) + + err := chk.Func(chk.Meta, config) + require.Error(t, err) + assert.True(t, check.IsFail(err)) +} + +func TestOpenSCAPCheckNullDatastreamRHEL(t *testing.T) { + test.MockGlobal(t, &check.Exists, func(name string) bool { + return name == "results.xml" + }) + + // Mock XML file content with score 85.0 and no high severity failures (XCCDF 1.2 format) + xmlContent := ` + + + 85.0 + + pass + + + fail + + +` + + test.MockGlobal(t, &check.ParseOSRelease, func(osReleasePath string) (*check.OSRelease, error) { + return &check.OSRelease{ + ID: "rhel", + VersionID: "9.0", + Version: "9.0 (Plow)", + MajorVersion: 9, + }, nil + }) + + test.MockGlobal(t, &check.ReadFile, func(filename string) ([]byte, error) { + if filename == "results.xml" { + return []byte(xmlContent), nil + } + return os.ReadFile(filename) + }) + + test.MockGlobal(t, &check.Exec, func(name string, arg ...string) ([]byte, []byte, int, error) { + cmd := joinArgs(name, arg...) + if strings.HasPrefix(cmd, "sudo oscap") { + return []byte(""), nil, 0, nil + } + if strings.HasPrefix(cmd, "sudo chown") { + return []byte(""), nil, 0, nil + } + return nil, nil, 0, nil + }) + + chk, found := check.FindCheckByName("OpenSCAP Check") + require.True(t, found, "OpenSCAP Check not found") + config := buildConfig(&blueprint.Customizations{ + OpenSCAP: &blueprint.OpenSCAPCustomization{ + ProfileID: "xccdf_org.ssgproject.content_profile_ospp", + DataStream: "null", // null datastream should trigger fallback + }, + }) + + require.NoError(t, chk.Func(chk.Meta, config)) +} + +func TestOpenSCAPCheckSkipRHEL7(t *testing.T) { + test.MockGlobal(t, &check.ParseOSRelease, func(osReleasePath string) (*check.OSRelease, error) { + return &check.OSRelease{ + ID: "rhel", + VersionID: "7.9", + Version: "7.9 (Maipo)", + MajorVersion: 7, + }, nil + }) + + chk, found := check.FindCheckByName("OpenSCAP Check") + require.True(t, found, "OpenSCAP Check not found") + config := buildConfig(&blueprint.Customizations{ + OpenSCAP: &blueprint.OpenSCAPCustomization{ + ProfileID: "xccdf_org.ssgproject.content_profile_ospp", + DataStream: "/usr/share/xml/scap/ssg/content/ssg-rhel7-ds.xml", + }, + }) + + err := chk.Func(chk.Meta, config) + require.Error(t, err) + assert.True(t, check.IsSkip(err)) + assert.Contains(t, err.Error(), "only XCCDF 1.2 is supported") +} + +func TestOpenSCAPCheckFailNoTestResult(t *testing.T) { + test.MockGlobal(t, &check.Exists, func(name string) bool { + return name == "results.xml" + }) + + // Mock XML file content with Benchmark but no TestResult (should fail) + xmlContent := ` + +` + + test.MockGlobal(t, &check.ParseOSRelease, func(osReleasePath string) (*check.OSRelease, error) { + return &check.OSRelease{ + ID: "rhel", + VersionID: "9.0", + Version: "9.0 (Plow)", + MajorVersion: 9, + }, nil + }) + + test.MockGlobal(t, &check.ReadFile, func(filename string) ([]byte, error) { + if filename == "results.xml" { + return []byte(xmlContent), nil + } + return os.ReadFile(filename) + }) + + test.MockGlobal(t, &check.Exec, func(name string, arg ...string) ([]byte, []byte, int, error) { + cmd := joinArgs(name, arg...) + if strings.HasPrefix(cmd, "sudo oscap") { + return []byte(""), nil, 0, nil + } + if strings.HasPrefix(cmd, "sudo chown") { + return []byte(""), nil, 0, nil + } + return nil, nil, 0, nil + }) + + chk, found := check.FindCheckByName("OpenSCAP Check") + require.True(t, found, "OpenSCAP Check not found") + config := buildConfig(&blueprint.Customizations{ + OpenSCAP: &blueprint.OpenSCAPCustomization{ + ProfileID: "xccdf_org.ssgproject.content_profile_ospp", + DataStream: "/usr/share/xml/scap/ssg/content/ssg-rhel9-ds.xml", + }, + }) + + err := chk.Func(chk.Meta, config) + require.Error(t, err) + assert.True(t, check.IsFail(err)) + assert.Contains(t, err.Error(), "expected exactly one test result") +} + +func TestOpenSCAPCheckFailMultipleTestResults(t *testing.T) { + test.MockGlobal(t, &check.Exists, func(name string) bool { + return name == "results.xml" + }) + + // Mock XML file content with multiple TestResult elements (should fail) + xmlContent := ` + + + 85.0 + + pass + + + + 90.0 + + pass + + +` + + test.MockGlobal(t, &check.ParseOSRelease, func(osReleasePath string) (*check.OSRelease, error) { + return &check.OSRelease{ + ID: "rhel", + VersionID: "9.0", + Version: "9.0 (Plow)", + MajorVersion: 9, + }, nil + }) + + test.MockGlobal(t, &check.ReadFile, func(filename string) ([]byte, error) { + if filename == "results.xml" { + return []byte(xmlContent), nil + } + return os.ReadFile(filename) + }) + + test.MockGlobal(t, &check.Exec, func(name string, arg ...string) ([]byte, []byte, int, error) { + cmd := joinArgs(name, arg...) + if strings.HasPrefix(cmd, "sudo oscap") { + return []byte(""), nil, 0, nil + } + if strings.HasPrefix(cmd, "sudo chown") { + return []byte(""), nil, 0, nil + } + return nil, nil, 0, nil + }) + + chk, found := check.FindCheckByName("OpenSCAP Check") + require.True(t, found, "OpenSCAP Check not found") + config := buildConfig(&blueprint.Customizations{ + OpenSCAP: &blueprint.OpenSCAPCustomization{ + ProfileID: "xccdf_org.ssgproject.content_profile_ospp", + DataStream: "/usr/share/xml/scap/ssg/content/ssg-rhel9-ds.xml", + }, + }) + + err := chk.Func(chk.Meta, config) + require.Error(t, err) + assert.True(t, check.IsFail(err)) + assert.Contains(t, err.Error(), "expected exactly one test result") +} diff --git a/cmd/check-host-config/check/osfuncs.go b/cmd/check-host-config/check/osfuncs.go new file mode 100644 index 0000000000..4813eb2771 --- /dev/null +++ b/cmd/check-host-config/check/osfuncs.go @@ -0,0 +1,77 @@ +package check + +import ( + "bytes" + "log" + "os" + "os/exec" + "strings" +) + +// ExecCommand is mockable version of os/exec.Command +var ExecCommand func(name string, arg ...string) *exec.Cmd = exec.Command + +// Exec is mockable version of os/exec.Command.Run +var Exec func(name string, arg ...string) ([]byte, []byte, int, error) = func(name string, arg ...string) ([]byte, []byte, int, error) { + cmdStr := name + if len(arg) > 0 { + cmdStr += " " + strings.Join(arg, " ") + } + + cmd := exec.Command(name, arg...) + var stdoutBuf, stderrBuf bytes.Buffer + cmd.Stdout = &stdoutBuf + cmd.Stderr = &stderrBuf + err := cmd.Run() + + exitCode := 0 + if err != nil { + if exitError, ok := err.(*exec.ExitError); ok { + exitCode = exitError.ExitCode() + } + log.Printf("Exec: %s (%s)\n%s\n%s", cmdStr, err, stdoutBuf.String(), stderrBuf.String()) + } else { + log.Printf("Exec: %s\n", cmdStr) + } + + return stdoutBuf.Bytes(), stderrBuf.Bytes(), exitCode, err +} + +// ExecString is a convenience function that returns the stdout and stderr as strings +// and trims the whitespace. It uses mockable Exec. +func ExecString(name string, arg ...string) (string, string, int, error) { + stdout, stderr, exitCode, err := Exec(name, arg...) + return strings.TrimSpace(string(stdout)), strings.TrimSpace(string(stderr)), exitCode, err +} + +// Exists is mockable version of os.Stat +var Exists func(name string) bool = func(name string) bool { + log.Printf("Exists: %s\n", name) + _, err := os.Stat(name) + exists := !os.IsNotExist(err) + if err != nil && !os.IsNotExist(err) { + log.Printf("Exists failed: %s (error: %v)\n", name, err) + } + return exists +} + +// Grep is mockable version of os.ReadFile with grep capabilities +var Grep func(pattern, filename string) (bool, error) = func(pattern, filename string) (bool, error) { + log.Printf("Grep: %s %s\n", pattern, filename) + content, err := os.ReadFile(filename) + if err != nil { + log.Printf("Grep failed: %s %s (error: %v)\n", pattern, filename, err) + return false, err + } + return strings.Contains(string(content), pattern), nil +} + +// ReadFile is mockable version of os.ReadFile +var ReadFile func(filename string) ([]byte, error) = func(filename string) ([]byte, error) { + log.Printf("ReadFile: %s\n", filename) + data, err := os.ReadFile(filename) + if err != nil { + log.Printf("ReadFile failed: %s (error: %v)\n", filename, err) + } + return data, err +} diff --git a/cmd/check-host-config/check/services_disabled.go b/cmd/check-host-config/check/services_disabled.go new file mode 100644 index 0000000000..525575ea28 --- /dev/null +++ b/cmd/check-host-config/check/services_disabled.go @@ -0,0 +1,41 @@ +package check + +import ( + "log" + + "github.com/osbuild/images/internal/buildconfig" +) + +func init() { + RegisterCheck(Metadata{ + Name: "Services Disabled Check", + ShortName: "srv-disabled", + RequiresBlueprint: true, + RequiresCustomizations: true, + }, servicesDisabledCheck) +} + +func servicesDisabledCheck(meta *Metadata, config *buildconfig.BuildConfig) error { + services := config.Blueprint.Customizations.Services + if services == nil || len(services.Disabled) == 0 { + return Skip("no disabled services to check") + } + + for _, service := range services.Disabled { + log.Printf("Checking disabled service: %s\n", service) + // systemctl is-enabled returns non-zero exit code for disabled services, + // but still outputs "disabled", so we check the output regardless of error + state, _, _, err := ExecString("systemctl", "is-enabled", service) + if state == "" && err != nil { + // If we got no output and an error, the service might not exist + return Fail("service is not disabled:", service, "error:", err.Error()) + } + + if state != "disabled" { + return Fail("service is not disabled:", service, "state:", state) + } + log.Printf("Service was disabled service=%s state=%s\n", service, state) + } + + return Pass() +} diff --git a/cmd/check-host-config/check/services_disabled_test.go b/cmd/check-host-config/check/services_disabled_test.go new file mode 100644 index 0000000000..9689df7dd5 --- /dev/null +++ b/cmd/check-host-config/check/services_disabled_test.go @@ -0,0 +1,29 @@ +package check_test + +import ( + "testing" + + "github.com/osbuild/blueprint/pkg/blueprint" + check "github.com/osbuild/images/cmd/check-host-config/check" + "github.com/osbuild/images/internal/test" + "github.com/stretchr/testify/require" +) + +func TestServicesDisabledCheck(t *testing.T) { + test.MockGlobal(t, &check.Exec, func(name string, arg ...string) ([]byte, []byte, int, error) { + if joinArgs(name, arg...) == "systemctl is-enabled test.service" { + return []byte("disabled\n"), nil, 0, nil + } + return nil, nil, 0, nil + }) + + chk, found := check.FindCheckByName("Services Disabled Check") + require.True(t, found, "Services Disabled Check not found") + config := buildConfig(&blueprint.Customizations{ + Services: &blueprint.ServicesCustomization{ + Disabled: []string{"test.service"}, + }, + }) + + require.NoError(t, chk.Func(chk.Meta, config)) +} diff --git a/cmd/check-host-config/check/services_enabled.go b/cmd/check-host-config/check/services_enabled.go new file mode 100644 index 0000000000..0b857a522a --- /dev/null +++ b/cmd/check-host-config/check/services_enabled.go @@ -0,0 +1,37 @@ +package check + +import ( + "log" + + "github.com/osbuild/images/internal/buildconfig" +) + +func init() { + RegisterCheck(Metadata{ + Name: "Services Enabled Check", + ShortName: "srv-enabled", + RequiresBlueprint: true, + RequiresCustomizations: true, + }, servicesEnabledCheck) +} + +func servicesEnabledCheck(meta *Metadata, config *buildconfig.BuildConfig) error { + services := config.Blueprint.Customizations.Services + if services == nil || len(services.Enabled) == 0 { + return Skip("no enabled services to check") + } + + for _, service := range services.Enabled { + log.Printf("Checking enabled service: %s\n", service) + state, _, _, err := ExecString("systemctl", "is-enabled", service) + if err != nil { + return Fail("service is not enabled:", service, "error:", err.Error()) + } + if state != "enabled" { + return Fail("service is not enabled:", service, "state:", state) + } + log.Printf("Service was enabled service=%s state=%s\n", service, state) + } + + return Pass() +} diff --git a/cmd/check-host-config/check/services_enabled_test.go b/cmd/check-host-config/check/services_enabled_test.go new file mode 100644 index 0000000000..7b93093843 --- /dev/null +++ b/cmd/check-host-config/check/services_enabled_test.go @@ -0,0 +1,44 @@ +package check_test + +import ( + "testing" + + "github.com/osbuild/blueprint/pkg/blueprint" + check "github.com/osbuild/images/cmd/check-host-config/check" + "github.com/osbuild/images/internal/test" + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" +) + +func TestServicesEnabledCheck(t *testing.T) { + test.MockGlobal(t, &check.Exec, func(name string, arg ...string) ([]byte, []byte, int, error) { + if joinArgs(name, arg...) == "systemctl is-enabled test.service" { + return []byte("enabled\n"), nil, 0, nil + } + return nil, nil, 0, nil + }) + + chk, found := check.FindCheckByName("Services Enabled Check") + require.True(t, found, "Services Enabled Check not found") + config := buildConfig(&blueprint.Customizations{ + Services: &blueprint.ServicesCustomization{ + Enabled: []string{"test.service"}, + }, + }) + + require.NoError(t, chk.Func(chk.Meta, config)) +} + +func TestServicesEnabledCheckSkip(t *testing.T) { + chk, found := check.FindCheckByName("Services Enabled Check") + require.True(t, found, "Services Enabled Check not found") + config := buildConfig(&blueprint.Customizations{ + Services: &blueprint.ServicesCustomization{ + Enabled: []string{}, + }, + }) + + err := chk.Func(chk.Meta, config) + require.Error(t, err) + assert.True(t, check.IsSkip(err)) +} diff --git a/cmd/check-host-config/check/services_masked.go b/cmd/check-host-config/check/services_masked.go new file mode 100644 index 0000000000..942967af0e --- /dev/null +++ b/cmd/check-host-config/check/services_masked.go @@ -0,0 +1,41 @@ +package check + +import ( + "strings" + + "github.com/osbuild/images/internal/buildconfig" +) + +func init() { + RegisterCheck(Metadata{ + Name: "Services Masked Check", + ShortName: "srv-masked", + RequiresBlueprint: true, + RequiresCustomizations: true, + }, servicesMaskedCheck) +} + +func servicesMaskedCheck(meta *Metadata, config *buildconfig.BuildConfig) error { + services := config.Blueprint.Customizations.Services + if services == nil || len(services.Masked) == 0 { + return Skip("no masked services to check") + } + + stdout, _, _, err := ExecString("systemctl", "list-unit-files", "--state=masked") + if err != nil { + return Fail("failed to list masked services:", err.Error()) + } + + for _, service := range services.Masked { + // Prevent false positives by appending suffix if it is not present + if !strings.Contains(service, ".") { + service = service + ".service" + } + + if !strings.Contains(stdout, service) { + return Fail("service is not masked:", service) + } + } + + return Pass() +} diff --git a/cmd/check-host-config/check/services_masked_test.go b/cmd/check-host-config/check/services_masked_test.go new file mode 100644 index 0000000000..3b2dbcc613 --- /dev/null +++ b/cmd/check-host-config/check/services_masked_test.go @@ -0,0 +1,31 @@ +package check_test + +import ( + "testing" + + "github.com/osbuild/blueprint/pkg/blueprint" + check "github.com/osbuild/images/cmd/check-host-config/check" + "github.com/osbuild/images/internal/test" + "github.com/stretchr/testify/require" +) + +func TestServicesMaskedCheck(t *testing.T) { + test.MockGlobal(t, &check.Exec, func(name string, arg ...string) ([]byte, []byte, int, error) { + if joinArgs(name, arg...) == "systemctl list-unit-files --state=masked" { + return []byte("UNIT FILE\t\t\t\t\tSTATE\n" + + "test.service\t\t\t\t\tmasked\n" + + "other.service\t\t\t\t\tenabled\n"), nil, 0, nil + } + return nil, nil, 0, nil + }) + + chk, found := check.FindCheckByName("Services Masked Check") + require.True(t, found, "Services Masked Check not found") + config := buildConfig(&blueprint.Customizations{ + Services: &blueprint.ServicesCustomization{ + Masked: []string{"test.service"}, + }, + }) + + require.NoError(t, chk.Func(chk.Meta, config)) +} diff --git a/cmd/check-host-config/check/users.go b/cmd/check-host-config/check/users.go new file mode 100644 index 0000000000..a5bf123be6 --- /dev/null +++ b/cmd/check-host-config/check/users.go @@ -0,0 +1,33 @@ +package check + +import ( + "log" + + "github.com/osbuild/images/internal/buildconfig" +) + +func init() { + RegisterCheck(Metadata{ + Name: "Users Check", + ShortName: "users", + RequiresBlueprint: true, + RequiresCustomizations: true, + }, usersCheck) +} + +func usersCheck(meta *Metadata, config *buildconfig.BuildConfig) error { + users := config.Blueprint.Customizations.User + if len(users) == 0 { + return Skip("no users to check") + } + + for _, user := range users { + stdout, _, _, err := ExecString("id", user.Name) + if err != nil { + return Fail("user does not exist:", user.Name) + } + log.Printf("User %s exists: %s\n", user.Name, stdout) + } + + return Pass() +} diff --git a/cmd/check-host-config/check/users_test.go b/cmd/check-host-config/check/users_test.go new file mode 100644 index 0000000000..12fffc231c --- /dev/null +++ b/cmd/check-host-config/check/users_test.go @@ -0,0 +1,42 @@ +package check_test + +import ( + "testing" + + "github.com/osbuild/blueprint/pkg/blueprint" + check "github.com/osbuild/images/cmd/check-host-config/check" + "github.com/osbuild/images/internal/test" + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" +) + +func TestUsersCheck(t *testing.T) { + test.MockGlobal(t, &check.Exec, func(name string, arg ...string) ([]byte, []byte, int, error) { + if joinArgs(name, arg...) == "id testuser" { + return []byte("uid=1000(testuser) gid=1000(testuser) groups=1000(testuser)\n"), nil, 0, nil + } + return nil, nil, 0, nil + }) + + chk, found := check.FindCheckByName("Users Check") + require.True(t, found, "Users Check not found") + config := buildConfig(&blueprint.Customizations{ + User: []blueprint.UserCustomization{ + {Name: "testuser"}, + }, + }) + + require.NoError(t, chk.Func(chk.Meta, config)) +} + +func TestUsersCheckSkip(t *testing.T) { + chk, found := check.FindCheckByName("Users Check") + require.True(t, found, "Users Check not found") + config := buildConfig(&blueprint.Customizations{ + User: []blueprint.UserCustomization{}, + }) + + err := chk.Func(chk.Meta, config) + require.Error(t, err) + assert.True(t, check.IsSkip(err)) +} diff --git a/cmd/check-host-config/check/utils.go b/cmd/check-host-config/check/utils.go new file mode 100644 index 0000000000..8a76d42c53 --- /dev/null +++ b/cmd/check-host-config/check/utils.go @@ -0,0 +1,54 @@ +package check + +import ( + "log" + "strconv" + "strings" + + "github.com/osbuild/images/pkg/distro" +) + +// OSRelease contains parsed fields from /etc/os-release +type OSRelease struct { + ID string + VersionID string + Version string + MajorVersion int // Extracted major version from VersionID (e.g., 9 from "9.0") +} + +// ParseOSRelease is a mockable function that reads and parses /etc/os-release file. +// The default implementation calls distro.ReadOSReleaseFromTree("/") to read from +// the system root, which automatically tries /etc/os-release and /usr/lib/os-release. +// The osReleasePath parameter is kept for API compatibility but ignored in the default implementation. +var ParseOSRelease func(osReleasePath string) (*OSRelease, error) = func(osReleasePath string) (*OSRelease, error) { + log.Printf("ParseOSRelease: reading from system root\n") + osrelease, err := distro.ReadOSReleaseFromTree("/") + if err != nil { + log.Printf("ParseOSRelease failed: %v\n", err) + return nil, err + } + + release := &OSRelease{ + ID: osrelease["ID"], + VersionID: osrelease["VERSION_ID"], + Version: osrelease["VERSION"], + } + + // Extract major version from VersionID (e.g., "9.0" -> 9) + if release.VersionID != "" { + majorVersionStr := release.VersionID + if idx := strings.Index(majorVersionStr, "."); idx != -1 { + majorVersionStr = majorVersionStr[:idx] + } + majorVersion, err := strconv.Atoi(majorVersionStr) + if err != nil { + // If parsing fails, leave MajorVersion as 0 (zero value) + // This allows callers to check for 0 to detect invalid versions + release.MajorVersion = 0 + } else { + release.MajorVersion = majorVersion + } + } + + return release, nil +} diff --git a/cmd/check-host-config/check/utils_test.go b/cmd/check-host-config/check/utils_test.go new file mode 100644 index 0000000000..a64d59599e --- /dev/null +++ b/cmd/check-host-config/check/utils_test.go @@ -0,0 +1,139 @@ +package check_test + +import ( + "strings" + "testing" + + "github.com/osbuild/blueprint/pkg/blueprint" + check "github.com/osbuild/images/cmd/check-host-config/check" + "github.com/osbuild/images/internal/buildconfig" + "github.com/osbuild/images/internal/test" + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" +) + +// joinArgs is a test helper function that joins a name and a list of arguments into a single string +func joinArgs(name string, arg ...string) string { + return name + " " + strings.Join(arg, " ") +} + +// buildConfig is a test helper function that builds a buildconfig.BuildConfig with a given customizations +func buildConfig(customizations *blueprint.Customizations) *buildconfig.BuildConfig { + return &buildconfig.BuildConfig{ + Blueprint: &blueprint.Blueprint{ + Customizations: customizations, + }, + } +} + +// buildConfigWithBlueprint is a test helper function that builds a buildconfig.BuildConfig with a Blueprint builder function +func buildConfigWithBlueprint(fn func(*blueprint.Blueprint)) *buildconfig.BuildConfig { + bp := &blueprint.Blueprint{} + fn(bp) + return &buildconfig.BuildConfig{ + Blueprint: bp, + } +} + +func TestParseOSRelease(t *testing.T) { + test.MockGlobal(t, &check.ParseOSRelease, func(osReleasePath string) (*check.OSRelease, error) { + return &check.OSRelease{ + ID: "rhel", + VersionID: "9.0", + Version: "9.0 (Plow)", + MajorVersion: 9, + }, nil + }) + release, err := check.ParseOSRelease("/etc/os-release") + require.NoError(t, err) + + assert.Equal(t, "rhel", release.ID) + assert.Equal(t, "9.0", release.VersionID) + assert.Equal(t, "9.0 (Plow)", release.Version) + assert.Equal(t, 9, release.MajorVersion) +} + +func TestGetDatastreamFilename(t *testing.T) { + tests := []struct { + name string + release *check.OSRelease + expected string + wantErr bool + }{ + { + name: "RHEL 9", + release: &check.OSRelease{ + ID: "rhel", + VersionID: "9.0", + MajorVersion: 9, + }, + expected: "/usr/share/xml/scap/ssg/content/ssg-rhel9-ds.xml", + }, + { + name: "RHEL 8", + release: &check.OSRelease{ + ID: "rhel", + VersionID: "8.6", + MajorVersion: 8, + }, + expected: "/usr/share/xml/scap/ssg/content/ssg-rhel8-ds.xml", + }, + { + name: "CentOS 9", + release: &check.OSRelease{ + ID: "centos", + VersionID: "9", + MajorVersion: 9, + }, + expected: "/usr/share/xml/scap/ssg/content/ssg-cs9-ds.xml", + }, + { + name: "CentOS 8", + release: &check.OSRelease{ + ID: "centos", + VersionID: "8.5", + MajorVersion: 8, + }, + expected: "/usr/share/xml/scap/ssg/content/ssg-centos8-ds.xml", + }, + { + name: "Fedora", + release: &check.OSRelease{ + ID: "fedora", + VersionID: "39", + MajorVersion: 39, + }, + expected: "/usr/share/xml/scap/ssg/content/ssg-fedora-ds.xml", + }, + { + name: "Unsupported OS", + release: &check.OSRelease{ + ID: "ubuntu", + VersionID: "22.04", + MajorVersion: 22, + }, + wantErr: true, + }, + { + name: "Unsupported version", + release: &check.OSRelease{ + ID: "rhel", + VersionID: "7", + MajorVersion: 7, + }, + wantErr: true, + }, + } + + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + filename, err := check.GetDatastreamFilename(tt.release) + if tt.wantErr { + require.Error(t, err) + return + } + require.NoError(t, err) + assert.Equal(t, tt.expected, filename) + }) + } +} diff --git a/cmd/check-host-config/checks.go b/cmd/check-host-config/checks.go new file mode 100644 index 0000000000..a028a26351 --- /dev/null +++ b/cmd/check-host-config/checks.go @@ -0,0 +1,32 @@ +package main + +import ( + "sort" + + "github.com/osbuild/images/cmd/check-host-config/check" +) + +// getAllChecks returns all checks discovered from the check package. +// Checks are automatically registered via their init() functions. +func getAllChecks() []check.RegisteredCheck { + checks := check.GetAllChecks() + // Sort checks by name for consistent ordering + sort.Slice(checks, func(i, j int) bool { + return checks[i].Meta.Name < checks[j].Meta.Name + }) + return checks +} + +var checks = getAllChecks() + +// MaxShortCheckName is the length of the longest check short name. This is only used +// for formatting the log output in a nice and readable way. +var MaxShortCheckName int + +func init() { + for _, c := range checks { + if nameLen := len(c.Meta.ShortName); nameLen > MaxShortCheckName { + MaxShortCheckName = nameLen + } + } +} diff --git a/cmd/check-host-config/logger.go b/cmd/check-host-config/logger.go new file mode 100644 index 0000000000..35239d4a5c --- /dev/null +++ b/cmd/check-host-config/logger.go @@ -0,0 +1,22 @@ +package main + +import ( + "fmt" + "io" + "log" +) + +// NewLogger creates a new logger with the given writer, prefix, and quiet flag. +// It formats the prefix to have consistent length. +func NewLogger(writer io.Writer, prefix string, quiet bool) *log.Logger { + for len(prefix) < MaxShortCheckName { + prefix += " " + } + logger := log.New(writer, fmt.Sprintf("[%s] ", prefix), 0) + + if quiet { + logger.SetOutput(io.Discard) + } + + return logger +} diff --git a/cmd/check-host-config/main.go b/cmd/check-host-config/main.go new file mode 100644 index 0000000000..c2cd30a251 --- /dev/null +++ b/cmd/check-host-config/main.go @@ -0,0 +1,114 @@ +package main + +import ( + "errors" + "flag" + "fmt" + "io" + "log" + "os" + "sort" + "time" + + "github.com/osbuild/images/cmd/check-host-config/check" + "github.com/osbuild/images/internal/buildconfig" +) + +// waitForSystem waits until the system is reported by systemd as "running" or the timeout is reached. +func waitForSystem(timeout time.Duration) error { + if timeout <= 0 { + return nil + } + + if err := runningWait(timeout, 15*time.Second); err != nil { + fmt.Fprintf(os.Stderr, "Error while waiting for system to be running: %v\n", err) + if errors.Is(err, ErrTimeout) { + if activatingUnits := listBadUnits(); activatingUnits != "" { + fmt.Fprintf(os.Stderr, "Units still activating: %s\n", activatingUnits) + } + } + return err + } + return nil +} + +// runChecks runs all checks sequentially and processes their results. +func runChecks(checks []check.RegisteredCheck, config *buildconfig.BuildConfig, quiet bool) bool { + defer log.SetPrefix("") + if quiet { + log.SetOutput(io.Discard) + defer log.SetOutput(os.Stdout) + } + + var results check.SortedResults + for _, chk := range checks { + var err error + meta := chk.Meta + log.SetPrefix(meta.ShortName + ": ") + + switch { + case meta.TempDisabled != "": + err = check.Skip("temporarily disabled: " + meta.TempDisabled) + case meta.RequiresBlueprint && (config == nil || config.Blueprint == nil): + err = check.Skip("no blueprint") + case meta.RequiresCustomizations && (config == nil || config.Blueprint == nil || config.Blueprint.Customizations == nil): + err = check.Skip("no customizations") + default: + err = chk.Func(meta, config) + } + + results = append(results, check.Result{Meta: meta, Error: err}) + + if err != nil { + log.Println(err) + } + } + + log.SetOutput(os.Stdout) + sort.Sort(results) + var seenError bool + for _, res := range results { + err := res.Error + icon := check.IconFor(err) + + switch err { + case nil: + fmt.Printf("%s %s: passed\n", icon, res.Meta.Name) + default: + if !check.IsSkip(err) && !check.IsWarning(err) { + seenError = true + } + fmt.Printf("%s %s: %s\n", icon, res.Meta.Name, err) + } + } + + return !seenError +} + +func main() { + log.SetOutput(os.Stdout) + log.SetFlags(0) + + waitTimeout := flag.Duration("wait-timeout", 15*time.Minute, "timeout for waiting for system to be running (0 to skip)") + quiet := flag.Bool("quiet", false, "less logging output") + flag.Parse() + configFile := flag.Arg(0) + if configFile == "" { + log.Fatalf("Missing build config file, usage: %s ", os.Args[0]) + } + + var config *buildconfig.BuildConfig + var err error + config, err = buildconfig.New(configFile, nil) + if err != nil { + log.Fatalf("Failed to load build config: %v\n", err) + } + + if err := waitForSystem(*waitTimeout); err != nil { + log.Fatalf("Problem during waiting for system to be running: %v\n", err) + } + + if !runChecks(checks, config, *quiet) { + log.Fatalf("Host check with config %q failed, return code 1\n", configFile) + } +} diff --git a/cmd/check-host-config/wait.go b/cmd/check-host-config/wait.go new file mode 100644 index 0000000000..ca58d5dc38 --- /dev/null +++ b/cmd/check-host-config/wait.go @@ -0,0 +1,85 @@ +package main + +import ( + "errors" + "fmt" + "log" + "strings" + "time" + + "github.com/osbuild/images/cmd/check-host-config/check" +) + +var ErrTimeout = errors.New("timeout") + +// runningWait emulates 'systemctl is-system-running --wait' +// It blocks until the system reaches "running" or fails on other states. +// It is required for older versions of systemd that don't support the option (EL8). +// It silences the global logger and only logs once per minute. +func runningWait(timeout time.Duration, ticks time.Duration) error { + startTime := time.Now() + ticker := time.NewTicker(ticks) + defer ticker.Stop() + + for { + // Check if timeout has been exceeded + if time.Since(startTime) > timeout { + return fmt.Errorf("%w: before waiting for running state: exceeded %v", ErrTimeout, timeout) + } + + stdout, _, _, err := check.ExecString("systemctl", "is-system-running") + if err != nil { + // systemctl typically returns non-zero exit code for non-running states but on + // older RHEL systems it returns zero exit code and outputs the state to stdout. + // Wait for next tick before continuing + <-ticker.C + continue + } + + switch stdout { + case "initializing", "starting": + // Wait for next tick before checking again + <-ticker.C + continue + case "running": + log.Println("System is running") + return nil + case "degraded": + log.Println("System is degraded") + return fmt.Errorf("systemctl returned degraded output") + case "": + log.Println("System is in unknown state") + return fmt.Errorf("systemctl returned empty output") + default: + return fmt.Errorf("system is at non-running state: %q", stdout) + } + } +} + +// listBadUnits returns a space-separated string of systemd units that are +// still in the activating state. It calls systemctl list-units to get the list. +// This is only used in case of timeout to help with debugging. +func listBadUnits() string { + stdout, _, _, err := check.Exec("systemctl", "list-units", "--state=activating,failed", "--plain", "--no-legend", "--no-pager") + if err != nil { + return "" + } + out := stdout + + lines := strings.Split(strings.TrimSpace(string(out)), "\n") + var units []string + + for _, line := range lines { + line = strings.TrimSpace(line) + if line == "" { + continue + } + // First column is the unit name (everything before the first space) + fields := strings.Fields(line) + if len(fields) > 0 { + units = append(units, fields[0]) + } + } + + return strings.Join(units, " ") +} diff --git a/cmd/check-host-config/wait_test.go b/cmd/check-host-config/wait_test.go new file mode 100644 index 0000000000..f5f403dca6 --- /dev/null +++ b/cmd/check-host-config/wait_test.go @@ -0,0 +1,85 @@ +package main + +import ( + "testing" + "time" + + "github.com/osbuild/images/cmd/check-host-config/check" + "github.com/osbuild/images/internal/test" +) + +func TestRunningWait(t *testing.T) { + responses := make(chan []byte, 2) + responses <- []byte("starting\n") + responses <- []byte("running\n") + + test.MockGlobal(t, &check.Exec, func(name string, arg ...string) ([]byte, []byte, int, error) { + return <-responses, nil, 0, nil // reading 3rd time will block and fail test + }) + + // XXX: use synctest.Run to speed it up after Go 1.24+ upgrade + if err := runningWait(1*time.Second, 20*time.Millisecond); err != nil { + t.Fatalf("expected nil error, got: %v", err) + } +} + +func TestGetActivatingUnits(t *testing.T) { + tests := []struct { + name string + output string + expected string + }{ + { + name: "single unit", + output: "foo.service loaded activating auto vendor preset: enabled\n", + expected: "foo.service", + }, + { + name: "multiple units", + output: `foo.service loaded activating auto vendor preset: enabled +bar.service loaded activating auto vendor preset: enabled +baz.service loaded activating auto vendor preset: enabled +`, + expected: "foo.service bar.service baz.service", + }, + { + name: "empty output", + output: "", + expected: "", + }, + { + name: "whitespace only", + output: " \n \n", + expected: "", + }, + { + name: "unit with spaces in name", + output: "foo-bar.service loaded activating auto vendor preset: enabled\n", + expected: "foo-bar.service", + }, + { + name: "mixed with empty lines", + output: `foo.service loaded activating auto vendor preset: enabled + +bar.service loaded activating auto vendor preset: enabled +`, + expected: "foo.service bar.service", + }, + } + + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + test.MockGlobal(t, &check.Exec, func(name string, arg ...string) ([]byte, []byte, int, error) { + if name == "systemctl" { + return []byte(tt.output), nil, 0, nil + } + return nil, nil, 0, nil + }) + + result := listBadUnits() + if result != tt.expected { + t.Errorf("expected %q, got %q", tt.expected, result) + } + }) + } +} diff --git a/go.mod b/go.mod index b595ca67d0..ca5e2b7588 100644 --- a/go.mod +++ b/go.mod @@ -24,6 +24,7 @@ require ( github.com/containers/image/v5 v5.36.1 github.com/containers/storage v1.59.1 github.com/gobwas/glob v0.2.3 + github.com/gocomply/scap v0.1.3 github.com/google/go-cmp v0.7.0 github.com/google/uuid v1.6.0 github.com/gophercloud/gophercloud/v2 v2.8.0 diff --git a/go.sum b/go.sum index 4dcdcb2067..6da7bb6b26 100644 --- a/go.sum +++ b/go.sum @@ -228,6 +228,8 @@ github.com/go-test/deep v1.1.1 h1:0r/53hagsehfO4bzD2Pgr/+RgHqhmf+k1Bpse2cTu1U= github.com/go-test/deep v1.1.1/go.mod h1:5C2ZWiW0ErCdrYzpqxLbTX7MG14M9iiw8DgHncVwcsE= github.com/gobwas/glob v0.2.3 h1:A4xDbljILXROh+kObIiy5kIaPYD8e96x1tgBhUI5J+Y= github.com/gobwas/glob v0.2.3/go.mod h1:d3Ez4x06l9bZtSvzIay5+Yzi0fmZzPgnTbPcKjJAkT8= +github.com/gocomply/scap v0.1.3 h1:QPadOSsvq2IJzENzHdmbDFefAN1GU4iCyfaKMDLWZ6A= +github.com/gocomply/scap v0.1.3/go.mod h1:NF0cOw7BC3SibN3O5+oyIMMMKtQNYCRFIMuaW1u7R9c= github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q= github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= github.com/golang-jwt/jwt/v5 v5.3.0 h1:pv4AsKCKKZuqlgs5sUmn4x8UlGa0kEVt/puTpKx9vvo= diff --git a/internal/test/mock_helpers.go b/internal/test/mock_helpers.go new file mode 100644 index 0000000000..1b03c8dfc7 --- /dev/null +++ b/internal/test/mock_helpers.go @@ -0,0 +1,48 @@ +package test + +import ( + "sync" + "testing" +) + +var ( + // registryMu protects access to the mutex map itself + registryMu sync.Mutex + // mutexRegistry stores a mutex for every unique global pointer + mutexRegistry = make(map[any]*sync.Mutex) +) + +// getMutexFor returns a dedicated mutex for a specific memory address +func getMutexFor(ptr any) *sync.Mutex { + registryMu.Lock() + defer registryMu.Unlock() + + if mu, ok := mutexRegistry[ptr]; ok { + return mu + } + + mu := &sync.Mutex{} + mutexRegistry[ptr] = mu + return mu +} + +// MockGlobal provides a thread-safe way to swap a global variable. +// It only blocks other tests attempting to mock the SAME variable. +// It will block if a single test attempts to mock the same variable twice. +func MockGlobal[T any](t *testing.T, target *T, mock T) { + t.Helper() + + // Get the mutex specific to this variable's memory address + mu := getMutexFor(target) + + // Lock it—this test now "owns" this specific global + mu.Lock() + + original := *target + *target = mock + + t.Cleanup(func() { + *target = original + mu.Unlock() // Release only this specific lock + }) +} diff --git a/test/config-list.json b/test/config-list.json index 5a79b8f6ab..3c47fbeb91 100644 --- a/test/config-list.json +++ b/test/config-list.json @@ -173,7 +173,7 @@ } }, { - "path": "./configs/jq-only.json", + "path": "./configs/empty.json", "filters": { "arches": [], "distros": [ @@ -668,7 +668,7 @@ } }, { - "path": "./configs/jq-only.json", + "path": "./configs/empty.json", "filters": { "distros": [ "rhel-8*", diff --git a/test/configs/all-customizations.json b/test/configs/all-customizations.json index 0ef6ef678d..956f1fbe0f 100644 --- a/test/configs/all-customizations.json +++ b/test/configs/all-customizations.json @@ -12,9 +12,6 @@ { "name": "bluez", "version": "*" - }, - { - "name": "jq" } ], "modules": [], diff --git a/test/configs/file-customizations.json b/test/configs/file-customizations.json index 33e355a9de..a4f1a4b8da 100644 --- a/test/configs/file-customizations.json +++ b/test/configs/file-customizations.json @@ -4,11 +4,6 @@ "name": "file-customizations", "description": "Simple blueprint with directory and file customizations. jq is added for the check-host-config script.", "version": "1.0", - "packages": [ - { - "name": "jq" - } - ], "customizations": { "directories": [ { diff --git a/test/configs/jq-only.json b/test/configs/jq-only.json deleted file mode 100644 index b80748b9c3..0000000000 --- a/test/configs/jq-only.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "name": "jq-only", - "blueprint": { - "name": "jq-only", - "description": "Mostly empty blueprint that installs jq to run the base-host-check script.", - "version": "1.0", - "packages": [ - { - "name": "jq" - } - ] - } -} diff --git a/test/configs/oscap-generic.json b/test/configs/oscap-generic.json index 8a5ee077df..547bd1e442 100644 --- a/test/configs/oscap-generic.json +++ b/test/configs/oscap-generic.json @@ -2,7 +2,7 @@ "name": "oscap-generic", "blueprint": { "name": "oscap-generic", - "description": "Almost full (disk) blueprint with additional openscap options.", + "description": "Almost full (disk) blueprint with additional openscap options.\nService sssd is masked because it does not start on some versions: https://access.redhat.com/solutions/7017538", "version": "1.0", "packages": [ { @@ -85,6 +85,9 @@ ], "disabled": [ "bluetooth.service" + ], + "masked": [ + "sssd.service" ] }, "filesystem": [ diff --git a/test/configs/oscap-rhel10.json b/test/configs/oscap-rhel10.json index fe983a8cc7..1cb90ea11b 100644 --- a/test/configs/oscap-rhel10.json +++ b/test/configs/oscap-rhel10.json @@ -10,9 +10,6 @@ }, { "name": "openscap-utils" - }, - { - "name": "jq" } ], "customizations": { @@ -24,6 +21,11 @@ "grub2_password" ] } + }, + "services": { + "masked": [ + "sssd.service" + ] } } } diff --git a/test/configs/oscap-rhel8.json b/test/configs/oscap-rhel8.json index 89e6fe1837..6609af5808 100644 --- a/test/configs/oscap-rhel8.json +++ b/test/configs/oscap-rhel8.json @@ -10,9 +10,6 @@ }, { "name": "openscap-utils" - }, - { - "name": "jq" } ], "customizations": { @@ -29,6 +26,11 @@ "mount_option_dev_shm_nodev" ] } + }, + "services": { + "masked": [ + "sssd.service" + ] } } } diff --git a/test/configs/oscap-rhel9-with-json-tailoring.json b/test/configs/oscap-rhel9-with-json-tailoring.json index 81112dae25..25a9400345 100644 --- a/test/configs/oscap-rhel9-with-json-tailoring.json +++ b/test/configs/oscap-rhel9-with-json-tailoring.json @@ -10,9 +10,6 @@ }, { "name": "openscap-utils" - }, - { - "name": "jq" } ], "customizations": { @@ -22,6 +19,11 @@ "data": "{\"profiles\":[{\"id\":\"cis\",\"base_profile_id\":\"cis\",\"rules\":{\"partition_var_log\":{\"evaluate\":true},\"rpm_verify_hashes\":{\"evaluate\":false},\"rpm_verify_permisions\":{\"evaluate\":false},\"grub2_password\":{\"evaluate\":false},\"grub2_uefi_password\":{\"evaluate\":false},\"partition_for_dev_shm\":{\"evaluate\":false},\"mount_option_dev_shm_nosuid\":{\"evaluate\":false},\"mount_option_dev_shm_noexec\":{\"evaluate\":false},\"mount_option_dev_shm_nodev\":{\"evaluate\":false}}}]}" } ], + "services": { + "masked": [ + "sssd.service" + ] + }, "openscap": { "profile_id": "xccdf_org.ssgproject.content_profile_cis", "datastream": "/usr/share/xml/scap/ssg/content/ssg-rhel9-ds.xml", diff --git a/test/configs/oscap-rhel9.json b/test/configs/oscap-rhel9.json index 7ef55180e9..89684b936f 100644 --- a/test/configs/oscap-rhel9.json +++ b/test/configs/oscap-rhel9.json @@ -10,9 +10,6 @@ }, { "name": "openscap-utils" - }, - { - "name": "jq" } ], "customizations": { @@ -24,6 +21,11 @@ "grub2_password" ] } + }, + "services": { + "masked": [ + "sssd.service" + ] } } } diff --git a/test/configs/partitioning-lvm-noswap.json b/test/configs/partitioning-lvm-noswap.json index f35a8c6283..0600df3a2e 100644 --- a/test/configs/partitioning-lvm-noswap.json +++ b/test/configs/partitioning-lvm-noswap.json @@ -4,11 +4,6 @@ "name": "partitioning-lvm", "description": "Disk customizations to create an LVM volume group with logical volumes and a plain data partition (variant without swap).", "version": "1.0", - "packages": [ - { - "name": "jq" - } - ], "customizations": { "disk": { "type": "gpt", diff --git a/test/configs/partitioning-lvm.json b/test/configs/partitioning-lvm.json index 87f8840909..03baa641cb 100644 --- a/test/configs/partitioning-lvm.json +++ b/test/configs/partitioning-lvm.json @@ -4,11 +4,6 @@ "name": "paritioning-lvm", "description": "Disk customizations to create an LVM volume group with logical volumes (GPT partition table variant).", "version": "1.0", - "packages": [ - { - "name": "jq" - } - ], "customizations": { "disk": { "type": "gpt", diff --git a/test/configs/partitioning-plain.json b/test/configs/partitioning-plain.json index 8dc8fd3e69..98b3014cfa 100644 --- a/test/configs/partitioning-plain.json +++ b/test/configs/partitioning-plain.json @@ -2,11 +2,6 @@ "name": "partitioning-plain", "blueprint": { "description": "Disk customizations with plain partitioning.", - "packages": [ - { - "name": "jq" - } - ], "customizations": { "disk": { "partitions": [ diff --git a/test/data/manifest-checksums/centos_10-aarch64-ami-all_customizations b/test/data/manifest-checksums/centos_10-aarch64-ami-all_customizations index 5a0f9bf224..e2ada1c251 100644 --- a/test/data/manifest-checksums/centos_10-aarch64-ami-all_customizations +++ b/test/data/manifest-checksums/centos_10-aarch64-ami-all_customizations @@ -1 +1 @@ -de7499cf2bb363db80735dd7e4c06c90f6559b59 +a3b1d70f429c7e16f6cf8db425a1458c362db229 diff --git a/test/data/manifest-checksums/centos_10-aarch64-ami-empty b/test/data/manifest-checksums/centos_10-aarch64-ami-empty new file mode 100644 index 0000000000..3ad68fbfee --- /dev/null +++ b/test/data/manifest-checksums/centos_10-aarch64-ami-empty @@ -0,0 +1 @@ +9f37d4836300fe79227d9e2bde1d7d971ae13eba diff --git a/test/data/manifest-checksums/centos_10-aarch64-ami-file_customizations b/test/data/manifest-checksums/centos_10-aarch64-ami-file_customizations index f52737fd6a..ad14378c95 100644 --- a/test/data/manifest-checksums/centos_10-aarch64-ami-file_customizations +++ b/test/data/manifest-checksums/centos_10-aarch64-ami-file_customizations @@ -1 +1 @@ -4e18e23236e77922c7a53ca09e96ff140b4cc82d +b415e230d3fc405b9f03e848be0460b8b2f9cd07 diff --git a/test/data/manifest-checksums/centos_10-aarch64-ami-jq_only b/test/data/manifest-checksums/centos_10-aarch64-ami-jq_only deleted file mode 100644 index 9a5794b313..0000000000 --- a/test/data/manifest-checksums/centos_10-aarch64-ami-jq_only +++ /dev/null @@ -1 +0,0 @@ -65121a41c26bf8d42f32aae33c44ffaa95905cdb diff --git a/test/data/manifest-checksums/centos_10-aarch64-ami-partitioning_lvm b/test/data/manifest-checksums/centos_10-aarch64-ami-partitioning_lvm index e41fe55fa6..a717acf970 100644 --- a/test/data/manifest-checksums/centos_10-aarch64-ami-partitioning_lvm +++ b/test/data/manifest-checksums/centos_10-aarch64-ami-partitioning_lvm @@ -1 +1 @@ -a5dd2ba4751cd2cb5b723d98a9955f1cee26e008 +d7410a64ea69458850a00e86f4519d5d03c98b9a diff --git a/test/data/manifest-checksums/centos_10-aarch64-ami-partitioning_plain b/test/data/manifest-checksums/centos_10-aarch64-ami-partitioning_plain index a1b94f9b2f..77fb69e265 100644 --- a/test/data/manifest-checksums/centos_10-aarch64-ami-partitioning_plain +++ b/test/data/manifest-checksums/centos_10-aarch64-ami-partitioning_plain @@ -1 +1 @@ -b39cb56b1ab54249ae7c089f055829096f63c83a +2352237caaa9b4ebb42b1ec480e54ecb61fe1a71 diff --git a/test/data/manifest-checksums/centos_10-aarch64-azure-empty b/test/data/manifest-checksums/centos_10-aarch64-azure-empty new file mode 100644 index 0000000000..061304c872 --- /dev/null +++ b/test/data/manifest-checksums/centos_10-aarch64-azure-empty @@ -0,0 +1 @@ +54f65bc5ab23fa36aa714183fb1a788394501ded diff --git a/test/data/manifest-checksums/centos_10-aarch64-azure-jq_only b/test/data/manifest-checksums/centos_10-aarch64-azure-jq_only deleted file mode 100644 index a51ecf72a2..0000000000 --- a/test/data/manifest-checksums/centos_10-aarch64-azure-jq_only +++ /dev/null @@ -1 +0,0 @@ -a4145f20d64464227d8fbd1e8456859bceb71666 diff --git a/test/data/manifest-checksums/centos_10-aarch64-container-jq_only b/test/data/manifest-checksums/centos_10-aarch64-container-jq_only deleted file mode 100644 index 331e82f93a..0000000000 --- a/test/data/manifest-checksums/centos_10-aarch64-container-jq_only +++ /dev/null @@ -1 +0,0 @@ -040d9ddc7350b7b7596ea444af95e5ddce6d3f91 diff --git a/test/data/manifest-checksums/centos_10-aarch64-ec2-empty b/test/data/manifest-checksums/centos_10-aarch64-ec2-empty new file mode 100644 index 0000000000..491e2c981e --- /dev/null +++ b/test/data/manifest-checksums/centos_10-aarch64-ec2-empty @@ -0,0 +1 @@ +246b6d5ca2b807149ddb8c93e1072a184b488129 diff --git a/test/data/manifest-checksums/centos_10-aarch64-ec2-jq_only b/test/data/manifest-checksums/centos_10-aarch64-ec2-jq_only deleted file mode 100644 index 1f54759d01..0000000000 --- a/test/data/manifest-checksums/centos_10-aarch64-ec2-jq_only +++ /dev/null @@ -1 +0,0 @@ -4e10c2bd610a76f3c094f41d4ce3d3056832fba7 diff --git a/test/data/manifest-checksums/centos_10-aarch64-image_installer-empty b/test/data/manifest-checksums/centos_10-aarch64-image_installer-empty new file mode 100644 index 0000000000..f7b19750ca --- /dev/null +++ b/test/data/manifest-checksums/centos_10-aarch64-image_installer-empty @@ -0,0 +1 @@ +12f50281bcbb2bd4710dd13ca2e9be542eeb7aac diff --git a/test/data/manifest-checksums/centos_10-aarch64-image_installer-jq_only b/test/data/manifest-checksums/centos_10-aarch64-image_installer-jq_only deleted file mode 100644 index a3d2cf5b55..0000000000 --- a/test/data/manifest-checksums/centos_10-aarch64-image_installer-jq_only +++ /dev/null @@ -1 +0,0 @@ -dd9c2adf956cdbda88848cf1f9373c9d9ce5c994 diff --git a/test/data/manifest-checksums/centos_10-aarch64-pxe_tar_xz-empty b/test/data/manifest-checksums/centos_10-aarch64-pxe_tar_xz-empty new file mode 100644 index 0000000000..5b31cec52a --- /dev/null +++ b/test/data/manifest-checksums/centos_10-aarch64-pxe_tar_xz-empty @@ -0,0 +1 @@ +ad880424de650c85602f1f401f331c452812e8b6 diff --git a/test/data/manifest-checksums/centos_10-aarch64-pxe_tar_xz-jq_only b/test/data/manifest-checksums/centos_10-aarch64-pxe_tar_xz-jq_only deleted file mode 100644 index 07d64a924e..0000000000 --- a/test/data/manifest-checksums/centos_10-aarch64-pxe_tar_xz-jq_only +++ /dev/null @@ -1 +0,0 @@ -15d87c5b741d268d6e61fd42d9300e83758c21e6 diff --git a/test/data/manifest-checksums/centos_10-aarch64-qcow2-empty b/test/data/manifest-checksums/centos_10-aarch64-qcow2-empty new file mode 100644 index 0000000000..78a92e7209 --- /dev/null +++ b/test/data/manifest-checksums/centos_10-aarch64-qcow2-empty @@ -0,0 +1 @@ +3fbcf711556602eae9bd9470efab59e2c84dfce9 diff --git a/test/data/manifest-checksums/centos_10-aarch64-qcow2-jq_only b/test/data/manifest-checksums/centos_10-aarch64-qcow2-jq_only deleted file mode 100644 index bfe7ac4142..0000000000 --- a/test/data/manifest-checksums/centos_10-aarch64-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -d385af3dfa1260a658bdaa4cb1d27b01859b4d90 diff --git a/test/data/manifest-checksums/centos_10-aarch64-tar-empty b/test/data/manifest-checksums/centos_10-aarch64-tar-empty new file mode 100644 index 0000000000..53df09752a --- /dev/null +++ b/test/data/manifest-checksums/centos_10-aarch64-tar-empty @@ -0,0 +1 @@ +0114a0adc7a3cc29b404d1b9df657917105fecb3 diff --git a/test/data/manifest-checksums/centos_10-aarch64-tar-jq_only b/test/data/manifest-checksums/centos_10-aarch64-tar-jq_only deleted file mode 100644 index 6cdbba2675..0000000000 --- a/test/data/manifest-checksums/centos_10-aarch64-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -a41bdc128d3b5089da08beb0d9d9b8dba5d78914 diff --git a/test/data/manifest-checksums/centos_10-aarch64-vagrant_libvirt-empty b/test/data/manifest-checksums/centos_10-aarch64-vagrant_libvirt-empty new file mode 100644 index 0000000000..1171ed548c --- /dev/null +++ b/test/data/manifest-checksums/centos_10-aarch64-vagrant_libvirt-empty @@ -0,0 +1 @@ +de94fd1ad9efb5a0f32b015338a46e63b96918c6 diff --git a/test/data/manifest-checksums/centos_10-aarch64-vagrant_libvirt-jq_only b/test/data/manifest-checksums/centos_10-aarch64-vagrant_libvirt-jq_only deleted file mode 100644 index bdf235b3ad..0000000000 --- a/test/data/manifest-checksums/centos_10-aarch64-vagrant_libvirt-jq_only +++ /dev/null @@ -1 +0,0 @@ -c383a927ff60b6be652397ee7ac5034dd06a0260 diff --git a/test/data/manifest-checksums/centos_10-aarch64-vhd-empty b/test/data/manifest-checksums/centos_10-aarch64-vhd-empty new file mode 100644 index 0000000000..a3a66b2cf2 --- /dev/null +++ b/test/data/manifest-checksums/centos_10-aarch64-vhd-empty @@ -0,0 +1 @@ +9bd1b8c55709264c94bd885b8e2651dd17e43f8c diff --git a/test/data/manifest-checksums/centos_10-aarch64-vhd-jq_only b/test/data/manifest-checksums/centos_10-aarch64-vhd-jq_only deleted file mode 100644 index ed4f6fc95a..0000000000 --- a/test/data/manifest-checksums/centos_10-aarch64-vhd-jq_only +++ /dev/null @@ -1 +0,0 @@ -0577575006c1eddeb31aeeb7cc1d2ab474657a52 diff --git a/test/data/manifest-checksums/centos_10-aarch64-wsl-empty b/test/data/manifest-checksums/centos_10-aarch64-wsl-empty new file mode 100644 index 0000000000..fd45a12520 --- /dev/null +++ b/test/data/manifest-checksums/centos_10-aarch64-wsl-empty @@ -0,0 +1 @@ +d54a3ec43028881698e9b9aec146f5648e43a2fa diff --git a/test/data/manifest-checksums/centos_10-aarch64-wsl-jq_only b/test/data/manifest-checksums/centos_10-aarch64-wsl-jq_only deleted file mode 100644 index 6c2f69d09e..0000000000 --- a/test/data/manifest-checksums/centos_10-aarch64-wsl-jq_only +++ /dev/null @@ -1 +0,0 @@ -506c0e916fa8314895f6f55d8b0236deb158bbc2 diff --git a/test/data/manifest-checksums/centos_10-ppc64le-container-jq_only b/test/data/manifest-checksums/centos_10-ppc64le-container-jq_only deleted file mode 100644 index 1f441b4fdd..0000000000 --- a/test/data/manifest-checksums/centos_10-ppc64le-container-jq_only +++ /dev/null @@ -1 +0,0 @@ -e777e99c9115bcac562f42593165d5783aaf9a49 diff --git a/test/data/manifest-checksums/centos_10-ppc64le-qcow2-empty b/test/data/manifest-checksums/centos_10-ppc64le-qcow2-empty new file mode 100644 index 0000000000..730eafe754 --- /dev/null +++ b/test/data/manifest-checksums/centos_10-ppc64le-qcow2-empty @@ -0,0 +1 @@ +99f7fff53ce92164d1e1829d3ac9936687889a9f diff --git a/test/data/manifest-checksums/centos_10-ppc64le-qcow2-jq_only b/test/data/manifest-checksums/centos_10-ppc64le-qcow2-jq_only deleted file mode 100644 index 9203161449..0000000000 --- a/test/data/manifest-checksums/centos_10-ppc64le-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -6023d5f890ec14fb79636921efa2175d2be6bbac diff --git a/test/data/manifest-checksums/centos_10-ppc64le-tar-empty b/test/data/manifest-checksums/centos_10-ppc64le-tar-empty new file mode 100644 index 0000000000..51587f3115 --- /dev/null +++ b/test/data/manifest-checksums/centos_10-ppc64le-tar-empty @@ -0,0 +1 @@ +e20a50e7252da980f23f88577abd8129e8c37bf3 diff --git a/test/data/manifest-checksums/centos_10-ppc64le-tar-jq_only b/test/data/manifest-checksums/centos_10-ppc64le-tar-jq_only deleted file mode 100644 index de7cca89d2..0000000000 --- a/test/data/manifest-checksums/centos_10-ppc64le-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -349b398d35a715246c784e7949e079f51cf59bb4 diff --git a/test/data/manifest-checksums/centos_10-s390x-container-jq_only b/test/data/manifest-checksums/centos_10-s390x-container-jq_only deleted file mode 100644 index e5e192dbb3..0000000000 --- a/test/data/manifest-checksums/centos_10-s390x-container-jq_only +++ /dev/null @@ -1 +0,0 @@ -3efce82c39ddcc002aff98fcd6bd140e60cb331f diff --git a/test/data/manifest-checksums/centos_10-s390x-qcow2-empty b/test/data/manifest-checksums/centos_10-s390x-qcow2-empty new file mode 100644 index 0000000000..e4a69ff969 --- /dev/null +++ b/test/data/manifest-checksums/centos_10-s390x-qcow2-empty @@ -0,0 +1 @@ +8811e1c0e07e0ac84cc63ab73134e9f6e49776a6 diff --git a/test/data/manifest-checksums/centos_10-s390x-qcow2-jq_only b/test/data/manifest-checksums/centos_10-s390x-qcow2-jq_only deleted file mode 100644 index 9194eefe0f..0000000000 --- a/test/data/manifest-checksums/centos_10-s390x-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -67087d4c444b074b62f775e27f95915c6d5c5935 diff --git a/test/data/manifest-checksums/centos_10-s390x-tar-empty b/test/data/manifest-checksums/centos_10-s390x-tar-empty new file mode 100644 index 0000000000..553f8b734c --- /dev/null +++ b/test/data/manifest-checksums/centos_10-s390x-tar-empty @@ -0,0 +1 @@ +28c31b5f72c26edc18cd80eb2a41087521ecde7c diff --git a/test/data/manifest-checksums/centos_10-s390x-tar-jq_only b/test/data/manifest-checksums/centos_10-s390x-tar-jq_only deleted file mode 100644 index 004cda3dee..0000000000 --- a/test/data/manifest-checksums/centos_10-s390x-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -39340cb2cc7ac6eafdcc2f845cdb04a40da95793 diff --git a/test/data/manifest-checksums/centos_10-x86_64-ami-all_customizations b/test/data/manifest-checksums/centos_10-x86_64-ami-all_customizations index e3fa70287f..0d40adb00f 100644 --- a/test/data/manifest-checksums/centos_10-x86_64-ami-all_customizations +++ b/test/data/manifest-checksums/centos_10-x86_64-ami-all_customizations @@ -1 +1 @@ -07bfa023365ac1617353567f342d79632a95ef5e +ef25645251b54d7f8140144c9abcafbbfd14c051 diff --git a/test/data/manifest-checksums/centos_10-x86_64-ami-empty b/test/data/manifest-checksums/centos_10-x86_64-ami-empty new file mode 100644 index 0000000000..d399501003 --- /dev/null +++ b/test/data/manifest-checksums/centos_10-x86_64-ami-empty @@ -0,0 +1 @@ +1fdb692fe2df0f9ca3f35d93cae70098742fe5da diff --git a/test/data/manifest-checksums/centos_10-x86_64-ami-file_customizations b/test/data/manifest-checksums/centos_10-x86_64-ami-file_customizations index 40079921ed..817759267d 100644 --- a/test/data/manifest-checksums/centos_10-x86_64-ami-file_customizations +++ b/test/data/manifest-checksums/centos_10-x86_64-ami-file_customizations @@ -1 +1 @@ -fb4b09b9a05af5df7b89df13056d9a56b55eea6e +370fb6291feb65190d5034f3a6ab4faacba8e955 diff --git a/test/data/manifest-checksums/centos_10-x86_64-ami-jq_only b/test/data/manifest-checksums/centos_10-x86_64-ami-jq_only deleted file mode 100644 index 428782a93e..0000000000 --- a/test/data/manifest-checksums/centos_10-x86_64-ami-jq_only +++ /dev/null @@ -1 +0,0 @@ -c172597fe38796a4915e707ea9d8849b08d2a728 diff --git a/test/data/manifest-checksums/centos_10-x86_64-ami-partitioning_lvm b/test/data/manifest-checksums/centos_10-x86_64-ami-partitioning_lvm index 5e68356b7d..9dc5ba51e5 100644 --- a/test/data/manifest-checksums/centos_10-x86_64-ami-partitioning_lvm +++ b/test/data/manifest-checksums/centos_10-x86_64-ami-partitioning_lvm @@ -1 +1 @@ -f41165d51af8bc7feab3e4da80c359d5c002990b +f924b23a2dce5460cbb0b4e9cbfabf1684101459 diff --git a/test/data/manifest-checksums/centos_10-x86_64-ami-partitioning_plain b/test/data/manifest-checksums/centos_10-x86_64-ami-partitioning_plain index 4d89ce5c3a..69de897b16 100644 --- a/test/data/manifest-checksums/centos_10-x86_64-ami-partitioning_plain +++ b/test/data/manifest-checksums/centos_10-x86_64-ami-partitioning_plain @@ -1 +1 @@ -7a11d7a6278a6e1733349ed0964dc3cfcd346751 +c761f60a52c33059da560406144b1f34089c36ef diff --git a/test/data/manifest-checksums/centos_10-x86_64-azure-empty b/test/data/manifest-checksums/centos_10-x86_64-azure-empty new file mode 100644 index 0000000000..6a7cf258d8 --- /dev/null +++ b/test/data/manifest-checksums/centos_10-x86_64-azure-empty @@ -0,0 +1 @@ +965cb3aa26d463322406e868f04ce146e2aa2f8f diff --git a/test/data/manifest-checksums/centos_10-x86_64-azure-jq_only b/test/data/manifest-checksums/centos_10-x86_64-azure-jq_only deleted file mode 100644 index 49fda891ea..0000000000 --- a/test/data/manifest-checksums/centos_10-x86_64-azure-jq_only +++ /dev/null @@ -1 +0,0 @@ -1e74c5e3fa3209afd53cd14506aa04252529732d diff --git a/test/data/manifest-checksums/centos_10-x86_64-container-jq_only b/test/data/manifest-checksums/centos_10-x86_64-container-jq_only deleted file mode 100644 index d4335ec255..0000000000 --- a/test/data/manifest-checksums/centos_10-x86_64-container-jq_only +++ /dev/null @@ -1 +0,0 @@ -720fdd58a21a2faacb2ce17437a3c0e03708a4a6 diff --git a/test/data/manifest-checksums/centos_10-x86_64-ec2-empty b/test/data/manifest-checksums/centos_10-x86_64-ec2-empty new file mode 100644 index 0000000000..e6269f7217 --- /dev/null +++ b/test/data/manifest-checksums/centos_10-x86_64-ec2-empty @@ -0,0 +1 @@ +74d4faa63ee2e238fc5413458caab6b2d2e94936 diff --git a/test/data/manifest-checksums/centos_10-x86_64-ec2-jq_only b/test/data/manifest-checksums/centos_10-x86_64-ec2-jq_only deleted file mode 100644 index e91684eaa0..0000000000 --- a/test/data/manifest-checksums/centos_10-x86_64-ec2-jq_only +++ /dev/null @@ -1 +0,0 @@ -04470052660b864d969ed41fa9ca1fea5fab5d7d diff --git a/test/data/manifest-checksums/centos_10-x86_64-gce-empty b/test/data/manifest-checksums/centos_10-x86_64-gce-empty new file mode 100644 index 0000000000..588ff2cb3b --- /dev/null +++ b/test/data/manifest-checksums/centos_10-x86_64-gce-empty @@ -0,0 +1 @@ +32da9a0c3e7e6c3244bad72d634eeb809bef6472 diff --git a/test/data/manifest-checksums/centos_10-x86_64-gce-jq_only b/test/data/manifest-checksums/centos_10-x86_64-gce-jq_only deleted file mode 100644 index ff1f979e8a..0000000000 --- a/test/data/manifest-checksums/centos_10-x86_64-gce-jq_only +++ /dev/null @@ -1 +0,0 @@ -6c62d170ba5c0cd0cfe55b17a9c06e84f08e2a69 diff --git a/test/data/manifest-checksums/centos_10-x86_64-image_installer-empty b/test/data/manifest-checksums/centos_10-x86_64-image_installer-empty new file mode 100644 index 0000000000..b0cac59b07 --- /dev/null +++ b/test/data/manifest-checksums/centos_10-x86_64-image_installer-empty @@ -0,0 +1 @@ +59428dd32b3e3347f97e0255a304d9be97988900 diff --git a/test/data/manifest-checksums/centos_10-x86_64-image_installer-jq_only b/test/data/manifest-checksums/centos_10-x86_64-image_installer-jq_only deleted file mode 100644 index d09ac74a78..0000000000 --- a/test/data/manifest-checksums/centos_10-x86_64-image_installer-jq_only +++ /dev/null @@ -1 +0,0 @@ -4dd07d25eb06d4fd397e98cb5667715d0898c496 diff --git a/test/data/manifest-checksums/centos_10-x86_64-oci-empty b/test/data/manifest-checksums/centos_10-x86_64-oci-empty new file mode 100644 index 0000000000..74491c045b --- /dev/null +++ b/test/data/manifest-checksums/centos_10-x86_64-oci-empty @@ -0,0 +1 @@ +906219d356f33f96be81a7e75e1175037d2ab2f1 diff --git a/test/data/manifest-checksums/centos_10-x86_64-oci-jq_only b/test/data/manifest-checksums/centos_10-x86_64-oci-jq_only deleted file mode 100644 index bcfc317757..0000000000 --- a/test/data/manifest-checksums/centos_10-x86_64-oci-jq_only +++ /dev/null @@ -1 +0,0 @@ -8c3247da646ee35687b112db3f68ae4a3bc53c3f diff --git a/test/data/manifest-checksums/centos_10-x86_64-ova-empty b/test/data/manifest-checksums/centos_10-x86_64-ova-empty new file mode 100644 index 0000000000..d917a1850f --- /dev/null +++ b/test/data/manifest-checksums/centos_10-x86_64-ova-empty @@ -0,0 +1 @@ +da53ae7710019883424070268150142fbb04def2 diff --git a/test/data/manifest-checksums/centos_10-x86_64-ova-jq_only b/test/data/manifest-checksums/centos_10-x86_64-ova-jq_only deleted file mode 100644 index abce6346d7..0000000000 --- a/test/data/manifest-checksums/centos_10-x86_64-ova-jq_only +++ /dev/null @@ -1 +0,0 @@ -662a1dae47cb5ff01c6e18c36dfe1268ecc25de2 diff --git a/test/data/manifest-checksums/centos_10-x86_64-pxe_tar_xz-empty b/test/data/manifest-checksums/centos_10-x86_64-pxe_tar_xz-empty new file mode 100644 index 0000000000..537fa03523 --- /dev/null +++ b/test/data/manifest-checksums/centos_10-x86_64-pxe_tar_xz-empty @@ -0,0 +1 @@ +9458c04e89c490dedc949bd48bd5d4b681a0eeb7 diff --git a/test/data/manifest-checksums/centos_10-x86_64-pxe_tar_xz-jq_only b/test/data/manifest-checksums/centos_10-x86_64-pxe_tar_xz-jq_only deleted file mode 100644 index 22df212e62..0000000000 --- a/test/data/manifest-checksums/centos_10-x86_64-pxe_tar_xz-jq_only +++ /dev/null @@ -1 +0,0 @@ -12a4cae4fc6ab7df8a2f413858e4fa985bc32c21 diff --git a/test/data/manifest-checksums/centos_10-x86_64-qcow2-empty b/test/data/manifest-checksums/centos_10-x86_64-qcow2-empty new file mode 100644 index 0000000000..74491c045b --- /dev/null +++ b/test/data/manifest-checksums/centos_10-x86_64-qcow2-empty @@ -0,0 +1 @@ +906219d356f33f96be81a7e75e1175037d2ab2f1 diff --git a/test/data/manifest-checksums/centos_10-x86_64-qcow2-jq_only b/test/data/manifest-checksums/centos_10-x86_64-qcow2-jq_only deleted file mode 100644 index bcfc317757..0000000000 --- a/test/data/manifest-checksums/centos_10-x86_64-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -8c3247da646ee35687b112db3f68ae4a3bc53c3f diff --git a/test/data/manifest-checksums/centos_10-x86_64-tar-empty b/test/data/manifest-checksums/centos_10-x86_64-tar-empty new file mode 100644 index 0000000000..fc4842eafa --- /dev/null +++ b/test/data/manifest-checksums/centos_10-x86_64-tar-empty @@ -0,0 +1 @@ +34f20c15fdd2fdc276e6545d0a258f50c43649d2 diff --git a/test/data/manifest-checksums/centos_10-x86_64-tar-jq_only b/test/data/manifest-checksums/centos_10-x86_64-tar-jq_only deleted file mode 100644 index 4bafdf1538..0000000000 --- a/test/data/manifest-checksums/centos_10-x86_64-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -0547e60a58279f1b0235668ab5939c899968d057 diff --git a/test/data/manifest-checksums/centos_10-x86_64-vagrant_libvirt-empty b/test/data/manifest-checksums/centos_10-x86_64-vagrant_libvirt-empty new file mode 100644 index 0000000000..dd9ef7672d --- /dev/null +++ b/test/data/manifest-checksums/centos_10-x86_64-vagrant_libvirt-empty @@ -0,0 +1 @@ +83d29d1d6c5a571e9173eeb07d2475be89dd7944 diff --git a/test/data/manifest-checksums/centos_10-x86_64-vagrant_libvirt-jq_only b/test/data/manifest-checksums/centos_10-x86_64-vagrant_libvirt-jq_only deleted file mode 100644 index a370403057..0000000000 --- a/test/data/manifest-checksums/centos_10-x86_64-vagrant_libvirt-jq_only +++ /dev/null @@ -1 +0,0 @@ -1afbf52a1cd99772c2dbf5bd1fbe47457c041e55 diff --git a/test/data/manifest-checksums/centos_10-x86_64-vagrant_virtualbox-empty b/test/data/manifest-checksums/centos_10-x86_64-vagrant_virtualbox-empty new file mode 100644 index 0000000000..bdd949cce9 --- /dev/null +++ b/test/data/manifest-checksums/centos_10-x86_64-vagrant_virtualbox-empty @@ -0,0 +1 @@ +1dca1f763b0b76290cb27118edcbf2ce3be73a82 diff --git a/test/data/manifest-checksums/centos_10-x86_64-vagrant_virtualbox-jq_only b/test/data/manifest-checksums/centos_10-x86_64-vagrant_virtualbox-jq_only deleted file mode 100644 index 5c9c604c29..0000000000 --- a/test/data/manifest-checksums/centos_10-x86_64-vagrant_virtualbox-jq_only +++ /dev/null @@ -1 +0,0 @@ -0e3bdc6316fe4ad14e72fb07a9c9cfc598b3c0da diff --git a/test/data/manifest-checksums/centos_10-x86_64-vhd-empty b/test/data/manifest-checksums/centos_10-x86_64-vhd-empty new file mode 100644 index 0000000000..62ecf004d1 --- /dev/null +++ b/test/data/manifest-checksums/centos_10-x86_64-vhd-empty @@ -0,0 +1 @@ +9d4b26abbfdca5d0507d3557161b6c1ca54adf7f diff --git a/test/data/manifest-checksums/centos_10-x86_64-vhd-jq_only b/test/data/manifest-checksums/centos_10-x86_64-vhd-jq_only deleted file mode 100644 index 504d2e0e3a..0000000000 --- a/test/data/manifest-checksums/centos_10-x86_64-vhd-jq_only +++ /dev/null @@ -1 +0,0 @@ -fbcc382cee98f220c80f42c7f03ec06aec0664ea diff --git a/test/data/manifest-checksums/centos_10-x86_64-vmdk-empty b/test/data/manifest-checksums/centos_10-x86_64-vmdk-empty new file mode 100644 index 0000000000..d97d7f7ff0 --- /dev/null +++ b/test/data/manifest-checksums/centos_10-x86_64-vmdk-empty @@ -0,0 +1 @@ +4e82022a63c6a2c70fbd77f06af0843787d41cb8 diff --git a/test/data/manifest-checksums/centos_10-x86_64-vmdk-jq_only b/test/data/manifest-checksums/centos_10-x86_64-vmdk-jq_only deleted file mode 100644 index 14f8d1f2d1..0000000000 --- a/test/data/manifest-checksums/centos_10-x86_64-vmdk-jq_only +++ /dev/null @@ -1 +0,0 @@ -33514a1efb1521ef3e83f38d9516d99831fb47ed diff --git a/test/data/manifest-checksums/centos_10-x86_64-wsl-empty b/test/data/manifest-checksums/centos_10-x86_64-wsl-empty new file mode 100644 index 0000000000..c38852ef67 --- /dev/null +++ b/test/data/manifest-checksums/centos_10-x86_64-wsl-empty @@ -0,0 +1 @@ +06fab70352c009994265a9443f991d8051564435 diff --git a/test/data/manifest-checksums/centos_10-x86_64-wsl-jq_only b/test/data/manifest-checksums/centos_10-x86_64-wsl-jq_only deleted file mode 100644 index ce3affa49c..0000000000 --- a/test/data/manifest-checksums/centos_10-x86_64-wsl-jq_only +++ /dev/null @@ -1 +0,0 @@ -e666296ad20dbcdff38b1098d199df0bb99a08bd diff --git a/test/data/manifest-checksums/centos_9-aarch64-ami-all_customizations b/test/data/manifest-checksums/centos_9-aarch64-ami-all_customizations index 066c32b7cb..8dbb8f12a2 100644 --- a/test/data/manifest-checksums/centos_9-aarch64-ami-all_customizations +++ b/test/data/manifest-checksums/centos_9-aarch64-ami-all_customizations @@ -1 +1 @@ -caaf00275ad8fa7483ce7cf4925f687efcbd6b73 +bbe8f4572e09298ca848706d1d130477ced083e4 diff --git a/test/data/manifest-checksums/centos_9-aarch64-ami-empty b/test/data/manifest-checksums/centos_9-aarch64-ami-empty new file mode 100644 index 0000000000..4ff71a885d --- /dev/null +++ b/test/data/manifest-checksums/centos_9-aarch64-ami-empty @@ -0,0 +1 @@ +bd35f8478d77b7eca1b22adc7346c2f3475f67e9 diff --git a/test/data/manifest-checksums/centos_9-aarch64-ami-file_customizations b/test/data/manifest-checksums/centos_9-aarch64-ami-file_customizations index cd6adf7fdf..30aaf3d8ab 100644 --- a/test/data/manifest-checksums/centos_9-aarch64-ami-file_customizations +++ b/test/data/manifest-checksums/centos_9-aarch64-ami-file_customizations @@ -1 +1 @@ -9e536b7fa482cedbd8663b8da223c1e94d40eb18 +9b7c2d24bdacf48f6e75404e66e0ba6fa3b43b3a diff --git a/test/data/manifest-checksums/centos_9-aarch64-ami-jq_only b/test/data/manifest-checksums/centos_9-aarch64-ami-jq_only deleted file mode 100644 index b5d99f8dad..0000000000 --- a/test/data/manifest-checksums/centos_9-aarch64-ami-jq_only +++ /dev/null @@ -1 +0,0 @@ -3443a7f206eb3bde1dcbf4f05d3c4a52e0bc7fae diff --git a/test/data/manifest-checksums/centos_9-aarch64-ami-partitioning_lvm b/test/data/manifest-checksums/centos_9-aarch64-ami-partitioning_lvm index 8c5d277f99..9d3fe386a3 100644 --- a/test/data/manifest-checksums/centos_9-aarch64-ami-partitioning_lvm +++ b/test/data/manifest-checksums/centos_9-aarch64-ami-partitioning_lvm @@ -1 +1 @@ -26a4334119878c6a945a8f661f674c125a140f45 +ca25f826b548fb499f939ffacc2bbca46d2e6521 diff --git a/test/data/manifest-checksums/centos_9-aarch64-ami-partitioning_plain b/test/data/manifest-checksums/centos_9-aarch64-ami-partitioning_plain index 895722d952..632eec1ef4 100644 --- a/test/data/manifest-checksums/centos_9-aarch64-ami-partitioning_plain +++ b/test/data/manifest-checksums/centos_9-aarch64-ami-partitioning_plain @@ -1 +1 @@ -e10f47eec936b9ae6691407c24f9316b26d8151f +e0a2b68eaa4d65daa5a849c618da8c3ef6106c41 diff --git a/test/data/manifest-checksums/centos_9-aarch64-azure-empty b/test/data/manifest-checksums/centos_9-aarch64-azure-empty new file mode 100644 index 0000000000..de4e98f2ec --- /dev/null +++ b/test/data/manifest-checksums/centos_9-aarch64-azure-empty @@ -0,0 +1 @@ +eb1ee44a9141757e87b2b169bb5ce65e1ecbddc5 diff --git a/test/data/manifest-checksums/centos_9-aarch64-azure-jq_only b/test/data/manifest-checksums/centos_9-aarch64-azure-jq_only deleted file mode 100644 index cfbb30f0ef..0000000000 --- a/test/data/manifest-checksums/centos_9-aarch64-azure-jq_only +++ /dev/null @@ -1 +0,0 @@ -b541c070d34862d345462d29acf73673a90a6a97 diff --git a/test/data/manifest-checksums/centos_9-aarch64-container-jq_only b/test/data/manifest-checksums/centos_9-aarch64-container-jq_only deleted file mode 100644 index b13ff1830a..0000000000 --- a/test/data/manifest-checksums/centos_9-aarch64-container-jq_only +++ /dev/null @@ -1 +0,0 @@ -8b1746728869821ee5ddf6e63c9460ad7830b263 diff --git a/test/data/manifest-checksums/centos_9-aarch64-ec2-empty b/test/data/manifest-checksums/centos_9-aarch64-ec2-empty new file mode 100644 index 0000000000..2820c955d4 --- /dev/null +++ b/test/data/manifest-checksums/centos_9-aarch64-ec2-empty @@ -0,0 +1 @@ +ff4a571007dc9bec3677862e1fe42ae46dabbb65 diff --git a/test/data/manifest-checksums/centos_9-aarch64-ec2-jq_only b/test/data/manifest-checksums/centos_9-aarch64-ec2-jq_only deleted file mode 100644 index 39ff4d8e0f..0000000000 --- a/test/data/manifest-checksums/centos_9-aarch64-ec2-jq_only +++ /dev/null @@ -1 +0,0 @@ -7db9155aa9753f9b0f8c3af37a831da431995e9f diff --git a/test/data/manifest-checksums/centos_9-aarch64-edge_container-empty b/test/data/manifest-checksums/centos_9-aarch64-edge_container-empty new file mode 100644 index 0000000000..daa842e28d --- /dev/null +++ b/test/data/manifest-checksums/centos_9-aarch64-edge_container-empty @@ -0,0 +1 @@ +4e1b2141f3732520925be74ef756d30ece6615e7 diff --git a/test/data/manifest-checksums/centos_9-aarch64-edge_container-jq_only b/test/data/manifest-checksums/centos_9-aarch64-edge_container-jq_only deleted file mode 100644 index 51f0bc45e8..0000000000 --- a/test/data/manifest-checksums/centos_9-aarch64-edge_container-jq_only +++ /dev/null @@ -1 +0,0 @@ -7142a3d62dcd597195babddc9e5be7d0c286c5c3 diff --git a/test/data/manifest-checksums/centos_9-aarch64-image_installer-empty b/test/data/manifest-checksums/centos_9-aarch64-image_installer-empty new file mode 100644 index 0000000000..bf269e3961 --- /dev/null +++ b/test/data/manifest-checksums/centos_9-aarch64-image_installer-empty @@ -0,0 +1 @@ +d62aff492f54faebafa9bc618433e986d4bcf3b1 diff --git a/test/data/manifest-checksums/centos_9-aarch64-image_installer-jq_only b/test/data/manifest-checksums/centos_9-aarch64-image_installer-jq_only deleted file mode 100644 index 5d1b1b64af..0000000000 --- a/test/data/manifest-checksums/centos_9-aarch64-image_installer-jq_only +++ /dev/null @@ -1 +0,0 @@ -16293cb681cffb2db6b1175f7346601bff70fae6 diff --git a/test/data/manifest-checksums/centos_9-aarch64-minimal_raw-empty b/test/data/manifest-checksums/centos_9-aarch64-minimal_raw-empty new file mode 100644 index 0000000000..806b479ad8 --- /dev/null +++ b/test/data/manifest-checksums/centos_9-aarch64-minimal_raw-empty @@ -0,0 +1 @@ +ad7c7d22fc20cbe5f3bb85f1a378584a5b93cd2c diff --git a/test/data/manifest-checksums/centos_9-aarch64-minimal_raw-jq_only b/test/data/manifest-checksums/centos_9-aarch64-minimal_raw-jq_only deleted file mode 100644 index 8df9095c52..0000000000 --- a/test/data/manifest-checksums/centos_9-aarch64-minimal_raw-jq_only +++ /dev/null @@ -1 +0,0 @@ -85558b2904a0066f91a890da564d5f3de4107e60 diff --git a/test/data/manifest-checksums/centos_9-aarch64-openstack-empty b/test/data/manifest-checksums/centos_9-aarch64-openstack-empty new file mode 100644 index 0000000000..168e6b9329 --- /dev/null +++ b/test/data/manifest-checksums/centos_9-aarch64-openstack-empty @@ -0,0 +1 @@ +b4bc0cfbb22855b4ffd18e2fdd46603b84a9510a diff --git a/test/data/manifest-checksums/centos_9-aarch64-openstack-jq_only b/test/data/manifest-checksums/centos_9-aarch64-openstack-jq_only deleted file mode 100644 index 6c57d319c7..0000000000 --- a/test/data/manifest-checksums/centos_9-aarch64-openstack-jq_only +++ /dev/null @@ -1 +0,0 @@ -c9d9d72ef45dbd2c7fc7135995bc99752cad9df7 diff --git a/test/data/manifest-checksums/centos_9-aarch64-pxe_tar_xz-empty b/test/data/manifest-checksums/centos_9-aarch64-pxe_tar_xz-empty new file mode 100644 index 0000000000..184d9d6a2b --- /dev/null +++ b/test/data/manifest-checksums/centos_9-aarch64-pxe_tar_xz-empty @@ -0,0 +1 @@ +9c8595432e7fc1a33614266fc35a8c1e57e41979 diff --git a/test/data/manifest-checksums/centos_9-aarch64-pxe_tar_xz-jq_only b/test/data/manifest-checksums/centos_9-aarch64-pxe_tar_xz-jq_only deleted file mode 100644 index 2c9c32872d..0000000000 --- a/test/data/manifest-checksums/centos_9-aarch64-pxe_tar_xz-jq_only +++ /dev/null @@ -1 +0,0 @@ -f54cfa3615d8f4548541ee2e7827f5553b229e25 diff --git a/test/data/manifest-checksums/centos_9-aarch64-qcow2-empty b/test/data/manifest-checksums/centos_9-aarch64-qcow2-empty new file mode 100644 index 0000000000..af7a7308bd --- /dev/null +++ b/test/data/manifest-checksums/centos_9-aarch64-qcow2-empty @@ -0,0 +1 @@ +c1b4a44ef70c7834d9783e73580422893ebb7f16 diff --git a/test/data/manifest-checksums/centos_9-aarch64-qcow2-jq_only b/test/data/manifest-checksums/centos_9-aarch64-qcow2-jq_only deleted file mode 100644 index 7a27e3a753..0000000000 --- a/test/data/manifest-checksums/centos_9-aarch64-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -a48060e93363df246604fe7b18d0f8036fda6a83 diff --git a/test/data/manifest-checksums/centos_9-aarch64-qcow2-oscap_generic b/test/data/manifest-checksums/centos_9-aarch64-qcow2-oscap_generic index 8501579ee6..a657547a8e 100644 --- a/test/data/manifest-checksums/centos_9-aarch64-qcow2-oscap_generic +++ b/test/data/manifest-checksums/centos_9-aarch64-qcow2-oscap_generic @@ -1 +1 @@ -d0850ae140a270fb47b5012016a34266ec77a0a6 +799aeddf3f378102439750a9acdc2ff0999c7805 diff --git a/test/data/manifest-checksums/centos_9-aarch64-tar-empty b/test/data/manifest-checksums/centos_9-aarch64-tar-empty new file mode 100644 index 0000000000..cdeb58c4c8 --- /dev/null +++ b/test/data/manifest-checksums/centos_9-aarch64-tar-empty @@ -0,0 +1 @@ +d5e09d9ff7012d03fb1eea6bfa54a82e74354c31 diff --git a/test/data/manifest-checksums/centos_9-aarch64-tar-jq_only b/test/data/manifest-checksums/centos_9-aarch64-tar-jq_only deleted file mode 100644 index 721576a2bf..0000000000 --- a/test/data/manifest-checksums/centos_9-aarch64-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -458034fb49f7ef008ba4913bb2d8b117d4c0e849 diff --git a/test/data/manifest-checksums/centos_9-aarch64-vagrant_libvirt-empty b/test/data/manifest-checksums/centos_9-aarch64-vagrant_libvirt-empty new file mode 100644 index 0000000000..accf31d089 --- /dev/null +++ b/test/data/manifest-checksums/centos_9-aarch64-vagrant_libvirt-empty @@ -0,0 +1 @@ +acc10b35e6f8c3b71d0b8cd7e48b2ea8e657d914 diff --git a/test/data/manifest-checksums/centos_9-aarch64-vagrant_libvirt-jq_only b/test/data/manifest-checksums/centos_9-aarch64-vagrant_libvirt-jq_only deleted file mode 100644 index ef4ea0626f..0000000000 --- a/test/data/manifest-checksums/centos_9-aarch64-vagrant_libvirt-jq_only +++ /dev/null @@ -1 +0,0 @@ -2200e7da548f90b1c536015e66aa1e91433a438b diff --git a/test/data/manifest-checksums/centos_9-aarch64-vhd-empty b/test/data/manifest-checksums/centos_9-aarch64-vhd-empty new file mode 100644 index 0000000000..b434939ad0 --- /dev/null +++ b/test/data/manifest-checksums/centos_9-aarch64-vhd-empty @@ -0,0 +1 @@ +90ee27bf05cd149a19763dc1db4354ea0c8ebeda diff --git a/test/data/manifest-checksums/centos_9-aarch64-vhd-jq_only b/test/data/manifest-checksums/centos_9-aarch64-vhd-jq_only deleted file mode 100644 index 1c676aad4f..0000000000 --- a/test/data/manifest-checksums/centos_9-aarch64-vhd-jq_only +++ /dev/null @@ -1 +0,0 @@ -1ac2fc764e539bedc6a7aa0f77fff748f0352b11 diff --git a/test/data/manifest-checksums/centos_9-aarch64-wsl-empty b/test/data/manifest-checksums/centos_9-aarch64-wsl-empty new file mode 100644 index 0000000000..91c5c5215d --- /dev/null +++ b/test/data/manifest-checksums/centos_9-aarch64-wsl-empty @@ -0,0 +1 @@ +76308bdd47653a6d2306cf8691f9a84fc34d70b0 diff --git a/test/data/manifest-checksums/centos_9-aarch64-wsl-jq_only b/test/data/manifest-checksums/centos_9-aarch64-wsl-jq_only deleted file mode 100644 index 570fb3854b..0000000000 --- a/test/data/manifest-checksums/centos_9-aarch64-wsl-jq_only +++ /dev/null @@ -1 +0,0 @@ -28ede0415c959564abc8fa9b90f53cb7b04a8398 diff --git a/test/data/manifest-checksums/centos_9-ppc64le-container-jq_only b/test/data/manifest-checksums/centos_9-ppc64le-container-jq_only deleted file mode 100644 index 3262c1553d..0000000000 --- a/test/data/manifest-checksums/centos_9-ppc64le-container-jq_only +++ /dev/null @@ -1 +0,0 @@ -407b7af53fefa12e64b7db6f4fbae1695c579050 diff --git a/test/data/manifest-checksums/centos_9-ppc64le-qcow2-empty b/test/data/manifest-checksums/centos_9-ppc64le-qcow2-empty new file mode 100644 index 0000000000..04f0746518 --- /dev/null +++ b/test/data/manifest-checksums/centos_9-ppc64le-qcow2-empty @@ -0,0 +1 @@ +a3283b50fe7b4ef95ce5c299f368d853a7ca12c3 diff --git a/test/data/manifest-checksums/centos_9-ppc64le-qcow2-jq_only b/test/data/manifest-checksums/centos_9-ppc64le-qcow2-jq_only deleted file mode 100644 index d920f5ec11..0000000000 --- a/test/data/manifest-checksums/centos_9-ppc64le-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -61648d9ae078af03caf2dea07f0e192eed7880da diff --git a/test/data/manifest-checksums/centos_9-ppc64le-qcow2-oscap_generic b/test/data/manifest-checksums/centos_9-ppc64le-qcow2-oscap_generic index ae8e5d7b98..9ea5516001 100644 --- a/test/data/manifest-checksums/centos_9-ppc64le-qcow2-oscap_generic +++ b/test/data/manifest-checksums/centos_9-ppc64le-qcow2-oscap_generic @@ -1 +1 @@ -a1c0f12d1ffb5b5705a7e7b108e9e60ed8b81c1f +6cc0184a3a1798aff4b05f382c07e9a942e862a7 diff --git a/test/data/manifest-checksums/centos_9-ppc64le-tar-empty b/test/data/manifest-checksums/centos_9-ppc64le-tar-empty new file mode 100644 index 0000000000..b56021c1d0 --- /dev/null +++ b/test/data/manifest-checksums/centos_9-ppc64le-tar-empty @@ -0,0 +1 @@ +909e98fb40a857764a7a4afaa5f2193f82266ce5 diff --git a/test/data/manifest-checksums/centos_9-ppc64le-tar-jq_only b/test/data/manifest-checksums/centos_9-ppc64le-tar-jq_only deleted file mode 100644 index 113c859701..0000000000 --- a/test/data/manifest-checksums/centos_9-ppc64le-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -008843a120f6f53dd6964e01ae224e60b6bb60af diff --git a/test/data/manifest-checksums/centos_9-s390x-container-jq_only b/test/data/manifest-checksums/centos_9-s390x-container-jq_only deleted file mode 100644 index 41b9ab2934..0000000000 --- a/test/data/manifest-checksums/centos_9-s390x-container-jq_only +++ /dev/null @@ -1 +0,0 @@ -6e61dc26fd02d6536f239c1ab73c5e8a854ee49a diff --git a/test/data/manifest-checksums/centos_9-s390x-qcow2-empty b/test/data/manifest-checksums/centos_9-s390x-qcow2-empty new file mode 100644 index 0000000000..cfa4d820d6 --- /dev/null +++ b/test/data/manifest-checksums/centos_9-s390x-qcow2-empty @@ -0,0 +1 @@ +3d35dbdb070f84e9ec7d004c839a539ae2569a41 diff --git a/test/data/manifest-checksums/centos_9-s390x-qcow2-jq_only b/test/data/manifest-checksums/centos_9-s390x-qcow2-jq_only deleted file mode 100644 index 8b42640440..0000000000 --- a/test/data/manifest-checksums/centos_9-s390x-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -c3ff59725a4a7424212f19156ad87d5342e6f8f2 diff --git a/test/data/manifest-checksums/centos_9-s390x-qcow2-oscap_generic b/test/data/manifest-checksums/centos_9-s390x-qcow2-oscap_generic index d59edc4cdb..c258d63c68 100644 --- a/test/data/manifest-checksums/centos_9-s390x-qcow2-oscap_generic +++ b/test/data/manifest-checksums/centos_9-s390x-qcow2-oscap_generic @@ -1 +1 @@ -098c180877c087e4be7fa186a507901ea072bcaf +0824578b5b51a53ed1967311625e6c0d2477cb06 diff --git a/test/data/manifest-checksums/centos_9-s390x-tar-empty b/test/data/manifest-checksums/centos_9-s390x-tar-empty new file mode 100644 index 0000000000..bdd401e379 --- /dev/null +++ b/test/data/manifest-checksums/centos_9-s390x-tar-empty @@ -0,0 +1 @@ +c5a7082aa7b3b74c47daa84f62429429d57ec77b diff --git a/test/data/manifest-checksums/centos_9-s390x-tar-jq_only b/test/data/manifest-checksums/centos_9-s390x-tar-jq_only deleted file mode 100644 index f070b960cb..0000000000 --- a/test/data/manifest-checksums/centos_9-s390x-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -a39c5731f1c3d30c5847fb6eee3e733b7008e8a5 diff --git a/test/data/manifest-checksums/centos_9-x86_64-ami-all_customizations b/test/data/manifest-checksums/centos_9-x86_64-ami-all_customizations index 6574196af9..4b6dec13e1 100644 --- a/test/data/manifest-checksums/centos_9-x86_64-ami-all_customizations +++ b/test/data/manifest-checksums/centos_9-x86_64-ami-all_customizations @@ -1 +1 @@ -dde4e1bbef7caea4ec9df852a3ae94ff6a7eb2c0 +54bf03ff7bc1e5c1d84ca8e6f4d581b5b9af1a67 diff --git a/test/data/manifest-checksums/centos_9-x86_64-ami-empty b/test/data/manifest-checksums/centos_9-x86_64-ami-empty new file mode 100644 index 0000000000..baa55a29e3 --- /dev/null +++ b/test/data/manifest-checksums/centos_9-x86_64-ami-empty @@ -0,0 +1 @@ +6223497aa682ae097061a99fcee1b743a971a512 diff --git a/test/data/manifest-checksums/centos_9-x86_64-ami-file_customizations b/test/data/manifest-checksums/centos_9-x86_64-ami-file_customizations index 41e9747063..6b39cef3f9 100644 --- a/test/data/manifest-checksums/centos_9-x86_64-ami-file_customizations +++ b/test/data/manifest-checksums/centos_9-x86_64-ami-file_customizations @@ -1 +1 @@ -9b6c6d1ab8eff85cfefcf4bc1972ad9879df9045 +3db21780380c596285654a9ed95bc7f68a76a345 diff --git a/test/data/manifest-checksums/centos_9-x86_64-ami-jq_only b/test/data/manifest-checksums/centos_9-x86_64-ami-jq_only deleted file mode 100644 index 523a215e15..0000000000 --- a/test/data/manifest-checksums/centos_9-x86_64-ami-jq_only +++ /dev/null @@ -1 +0,0 @@ -701bbc6ce6205fbecfde3e61c505d131da0ddd6a diff --git a/test/data/manifest-checksums/centos_9-x86_64-ami-partitioning_lvm b/test/data/manifest-checksums/centos_9-x86_64-ami-partitioning_lvm index 4dddc2f243..d77225cfb6 100644 --- a/test/data/manifest-checksums/centos_9-x86_64-ami-partitioning_lvm +++ b/test/data/manifest-checksums/centos_9-x86_64-ami-partitioning_lvm @@ -1 +1 @@ -9f73d930d6061944fd41555c5d3f4810583179d7 +c075abb0c76030579df27d53433927c9b0f4fc12 diff --git a/test/data/manifest-checksums/centos_9-x86_64-ami-partitioning_plain b/test/data/manifest-checksums/centos_9-x86_64-ami-partitioning_plain index bb84eb0616..bdc33933a4 100644 --- a/test/data/manifest-checksums/centos_9-x86_64-ami-partitioning_plain +++ b/test/data/manifest-checksums/centos_9-x86_64-ami-partitioning_plain @@ -1 +1 @@ -4b865ec0f054677fb3f9f1effeb3bcc2d354ba02 +f5a1ecad4e44738d91986f0c6d8e53c08c90c7b5 diff --git a/test/data/manifest-checksums/centos_9-x86_64-azure-empty b/test/data/manifest-checksums/centos_9-x86_64-azure-empty new file mode 100644 index 0000000000..12e09ea11e --- /dev/null +++ b/test/data/manifest-checksums/centos_9-x86_64-azure-empty @@ -0,0 +1 @@ +be87dabdbc9be7f8a5ff99ff15be818d4dd47066 diff --git a/test/data/manifest-checksums/centos_9-x86_64-azure-jq_only b/test/data/manifest-checksums/centos_9-x86_64-azure-jq_only deleted file mode 100644 index 7b2ba70eb0..0000000000 --- a/test/data/manifest-checksums/centos_9-x86_64-azure-jq_only +++ /dev/null @@ -1 +0,0 @@ -2f4d744c2cb9d6fa1b7ab0093b03a29a6097714e diff --git a/test/data/manifest-checksums/centos_9-x86_64-container-jq_only b/test/data/manifest-checksums/centos_9-x86_64-container-jq_only deleted file mode 100644 index 039df87f56..0000000000 --- a/test/data/manifest-checksums/centos_9-x86_64-container-jq_only +++ /dev/null @@ -1 +0,0 @@ -1f717150a298df2d67884b10b60a8c3aa8e9cb93 diff --git a/test/data/manifest-checksums/centos_9-x86_64-ec2-empty b/test/data/manifest-checksums/centos_9-x86_64-ec2-empty new file mode 100644 index 0000000000..38bfb99cdc --- /dev/null +++ b/test/data/manifest-checksums/centos_9-x86_64-ec2-empty @@ -0,0 +1 @@ +110ba6de355ff73e5498e5615b9d98b826074fec diff --git a/test/data/manifest-checksums/centos_9-x86_64-ec2-jq_only b/test/data/manifest-checksums/centos_9-x86_64-ec2-jq_only deleted file mode 100644 index afd0b4f293..0000000000 --- a/test/data/manifest-checksums/centos_9-x86_64-ec2-jq_only +++ /dev/null @@ -1 +0,0 @@ -a89b83bf6c79ee7ea26ab57af8355ace9b412aff diff --git a/test/data/manifest-checksums/centos_9-x86_64-edge_container-empty b/test/data/manifest-checksums/centos_9-x86_64-edge_container-empty new file mode 100644 index 0000000000..a257fea5b3 --- /dev/null +++ b/test/data/manifest-checksums/centos_9-x86_64-edge_container-empty @@ -0,0 +1 @@ +c29bf540052bdf2b1d367e5d1c656d7e1c4b8bec diff --git a/test/data/manifest-checksums/centos_9-x86_64-edge_container-jq_only b/test/data/manifest-checksums/centos_9-x86_64-edge_container-jq_only deleted file mode 100644 index 729d82c25a..0000000000 --- a/test/data/manifest-checksums/centos_9-x86_64-edge_container-jq_only +++ /dev/null @@ -1 +0,0 @@ -fc5ae031feea415d5dd566e37470ecdd65d1c864 diff --git a/test/data/manifest-checksums/centos_9-x86_64-gce-empty b/test/data/manifest-checksums/centos_9-x86_64-gce-empty new file mode 100644 index 0000000000..974be1ca23 --- /dev/null +++ b/test/data/manifest-checksums/centos_9-x86_64-gce-empty @@ -0,0 +1 @@ +0d31e3ddf1cc612089856c31ed636f6151333bc0 diff --git a/test/data/manifest-checksums/centos_9-x86_64-gce-jq_only b/test/data/manifest-checksums/centos_9-x86_64-gce-jq_only deleted file mode 100644 index 656cd0bd59..0000000000 --- a/test/data/manifest-checksums/centos_9-x86_64-gce-jq_only +++ /dev/null @@ -1 +0,0 @@ -0957e928d00c4ddfd8b1c474078141ba7c352201 diff --git a/test/data/manifest-checksums/centos_9-x86_64-image_installer-empty b/test/data/manifest-checksums/centos_9-x86_64-image_installer-empty new file mode 100644 index 0000000000..881668e2d2 --- /dev/null +++ b/test/data/manifest-checksums/centos_9-x86_64-image_installer-empty @@ -0,0 +1 @@ +e644538cd709f97e7e83d5bf84eca376974bee19 diff --git a/test/data/manifest-checksums/centos_9-x86_64-image_installer-jq_only b/test/data/manifest-checksums/centos_9-x86_64-image_installer-jq_only deleted file mode 100644 index 57c97a1c2b..0000000000 --- a/test/data/manifest-checksums/centos_9-x86_64-image_installer-jq_only +++ /dev/null @@ -1 +0,0 @@ -09b81cd893f386ff2dca74ec641588af150cd2b6 diff --git a/test/data/manifest-checksums/centos_9-x86_64-minimal_raw-empty b/test/data/manifest-checksums/centos_9-x86_64-minimal_raw-empty new file mode 100644 index 0000000000..cc02f2a60d --- /dev/null +++ b/test/data/manifest-checksums/centos_9-x86_64-minimal_raw-empty @@ -0,0 +1 @@ +ce5348d8c3184efbef0d185f37824d9fd3643abd diff --git a/test/data/manifest-checksums/centos_9-x86_64-minimal_raw-jq_only b/test/data/manifest-checksums/centos_9-x86_64-minimal_raw-jq_only deleted file mode 100644 index 799d172c64..0000000000 --- a/test/data/manifest-checksums/centos_9-x86_64-minimal_raw-jq_only +++ /dev/null @@ -1 +0,0 @@ -c5a57d058aadb7207e440d1375fc9efaa089b29c diff --git a/test/data/manifest-checksums/centos_9-x86_64-oci-empty b/test/data/manifest-checksums/centos_9-x86_64-oci-empty new file mode 100644 index 0000000000..3f0aee4007 --- /dev/null +++ b/test/data/manifest-checksums/centos_9-x86_64-oci-empty @@ -0,0 +1 @@ +679daef0371a262ccade26e98b9b0638bd306d7e diff --git a/test/data/manifest-checksums/centos_9-x86_64-oci-jq_only b/test/data/manifest-checksums/centos_9-x86_64-oci-jq_only deleted file mode 100644 index 95dfd6d257..0000000000 --- a/test/data/manifest-checksums/centos_9-x86_64-oci-jq_only +++ /dev/null @@ -1 +0,0 @@ -7215ea5e2f5d46703c0fb3941517c7f329596e3f diff --git a/test/data/manifest-checksums/centos_9-x86_64-openstack-empty b/test/data/manifest-checksums/centos_9-x86_64-openstack-empty new file mode 100644 index 0000000000..6bb0a77d4a --- /dev/null +++ b/test/data/manifest-checksums/centos_9-x86_64-openstack-empty @@ -0,0 +1 @@ +d5103b5bb61e628ab619fcec6886c365df95e8b0 diff --git a/test/data/manifest-checksums/centos_9-x86_64-openstack-jq_only b/test/data/manifest-checksums/centos_9-x86_64-openstack-jq_only deleted file mode 100644 index f37df50392..0000000000 --- a/test/data/manifest-checksums/centos_9-x86_64-openstack-jq_only +++ /dev/null @@ -1 +0,0 @@ -d5803021ab391e614328d25467e7caa047d6d9a6 diff --git a/test/data/manifest-checksums/centos_9-x86_64-ova-empty b/test/data/manifest-checksums/centos_9-x86_64-ova-empty new file mode 100644 index 0000000000..6dee7d0a38 --- /dev/null +++ b/test/data/manifest-checksums/centos_9-x86_64-ova-empty @@ -0,0 +1 @@ +383851b7ff4d6682a35c41d9da0f30dd5afd69b5 diff --git a/test/data/manifest-checksums/centos_9-x86_64-ova-jq_only b/test/data/manifest-checksums/centos_9-x86_64-ova-jq_only deleted file mode 100644 index 62c5a1ae57..0000000000 --- a/test/data/manifest-checksums/centos_9-x86_64-ova-jq_only +++ /dev/null @@ -1 +0,0 @@ -e5234270fb631c315de09e0cb6d8cfd542dab42d diff --git a/test/data/manifest-checksums/centos_9-x86_64-pxe_tar_xz-empty b/test/data/manifest-checksums/centos_9-x86_64-pxe_tar_xz-empty new file mode 100644 index 0000000000..885a89296c --- /dev/null +++ b/test/data/manifest-checksums/centos_9-x86_64-pxe_tar_xz-empty @@ -0,0 +1 @@ +73fb52a46ac549482c16c661d35f858eab59fa2c diff --git a/test/data/manifest-checksums/centos_9-x86_64-pxe_tar_xz-jq_only b/test/data/manifest-checksums/centos_9-x86_64-pxe_tar_xz-jq_only deleted file mode 100644 index 4bdc69e586..0000000000 --- a/test/data/manifest-checksums/centos_9-x86_64-pxe_tar_xz-jq_only +++ /dev/null @@ -1 +0,0 @@ -727d98d28189c04db594c4120cebc1b1bdc1325a diff --git a/test/data/manifest-checksums/centos_9-x86_64-qcow2-empty b/test/data/manifest-checksums/centos_9-x86_64-qcow2-empty new file mode 100644 index 0000000000..3f0aee4007 --- /dev/null +++ b/test/data/manifest-checksums/centos_9-x86_64-qcow2-empty @@ -0,0 +1 @@ +679daef0371a262ccade26e98b9b0638bd306d7e diff --git a/test/data/manifest-checksums/centos_9-x86_64-qcow2-jq_only b/test/data/manifest-checksums/centos_9-x86_64-qcow2-jq_only deleted file mode 100644 index 95dfd6d257..0000000000 --- a/test/data/manifest-checksums/centos_9-x86_64-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -7215ea5e2f5d46703c0fb3941517c7f329596e3f diff --git a/test/data/manifest-checksums/centos_9-x86_64-qcow2-oscap_generic b/test/data/manifest-checksums/centos_9-x86_64-qcow2-oscap_generic index b1620484b7..e2c4e049f2 100644 --- a/test/data/manifest-checksums/centos_9-x86_64-qcow2-oscap_generic +++ b/test/data/manifest-checksums/centos_9-x86_64-qcow2-oscap_generic @@ -1 +1 @@ -a3b2f5062daed859e613ad56bd26f59ac8bb4b61 +a2295a115c8a4739c98613bb026cf75a69dba596 diff --git a/test/data/manifest-checksums/centos_9-x86_64-tar-empty b/test/data/manifest-checksums/centos_9-x86_64-tar-empty new file mode 100644 index 0000000000..bb48a78653 --- /dev/null +++ b/test/data/manifest-checksums/centos_9-x86_64-tar-empty @@ -0,0 +1 @@ +483ad5c92c2dd33f709474c823b8e80842fbb033 diff --git a/test/data/manifest-checksums/centos_9-x86_64-tar-jq_only b/test/data/manifest-checksums/centos_9-x86_64-tar-jq_only deleted file mode 100644 index 41cdd3fa24..0000000000 --- a/test/data/manifest-checksums/centos_9-x86_64-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -ce50bd00b2a642e2966a816862b36bdd4d727848 diff --git a/test/data/manifest-checksums/centos_9-x86_64-vagrant_libvirt-empty b/test/data/manifest-checksums/centos_9-x86_64-vagrant_libvirt-empty new file mode 100644 index 0000000000..4711b2de9c --- /dev/null +++ b/test/data/manifest-checksums/centos_9-x86_64-vagrant_libvirt-empty @@ -0,0 +1 @@ +60c2d6b2f9fa550ed7a6acbfbc1647647dc2cd5d diff --git a/test/data/manifest-checksums/centos_9-x86_64-vagrant_libvirt-jq_only b/test/data/manifest-checksums/centos_9-x86_64-vagrant_libvirt-jq_only deleted file mode 100644 index 53cd46e56a..0000000000 --- a/test/data/manifest-checksums/centos_9-x86_64-vagrant_libvirt-jq_only +++ /dev/null @@ -1 +0,0 @@ -476afc8978e63655594272d2be5d925f6d262453 diff --git a/test/data/manifest-checksums/centos_9-x86_64-vagrant_virtualbox-empty b/test/data/manifest-checksums/centos_9-x86_64-vagrant_virtualbox-empty new file mode 100644 index 0000000000..fc272a38d4 --- /dev/null +++ b/test/data/manifest-checksums/centos_9-x86_64-vagrant_virtualbox-empty @@ -0,0 +1 @@ +02977b127e4757040f4b8c87274d656be48d7ea5 diff --git a/test/data/manifest-checksums/centos_9-x86_64-vagrant_virtualbox-jq_only b/test/data/manifest-checksums/centos_9-x86_64-vagrant_virtualbox-jq_only deleted file mode 100644 index df5938ca49..0000000000 --- a/test/data/manifest-checksums/centos_9-x86_64-vagrant_virtualbox-jq_only +++ /dev/null @@ -1 +0,0 @@ -af5265043fa78bb43ac8d7218bdbcdd777dfb4f6 diff --git a/test/data/manifest-checksums/centos_9-x86_64-vhd-empty b/test/data/manifest-checksums/centos_9-x86_64-vhd-empty new file mode 100644 index 0000000000..2e10286710 --- /dev/null +++ b/test/data/manifest-checksums/centos_9-x86_64-vhd-empty @@ -0,0 +1 @@ +9b020edec559b7a4a0a0ee6af3e671cb0dfb520d diff --git a/test/data/manifest-checksums/centos_9-x86_64-vhd-jq_only b/test/data/manifest-checksums/centos_9-x86_64-vhd-jq_only deleted file mode 100644 index b7c1097726..0000000000 --- a/test/data/manifest-checksums/centos_9-x86_64-vhd-jq_only +++ /dev/null @@ -1 +0,0 @@ -d256bd7d72a32aa45efb8fd708f3fd91e650d66e diff --git a/test/data/manifest-checksums/centos_9-x86_64-vmdk-empty b/test/data/manifest-checksums/centos_9-x86_64-vmdk-empty new file mode 100644 index 0000000000..fe75f97461 --- /dev/null +++ b/test/data/manifest-checksums/centos_9-x86_64-vmdk-empty @@ -0,0 +1 @@ +231fd9dd45042ee1729ed04227b2ab683a43ab4e diff --git a/test/data/manifest-checksums/centos_9-x86_64-vmdk-jq_only b/test/data/manifest-checksums/centos_9-x86_64-vmdk-jq_only deleted file mode 100644 index 58d726e787..0000000000 --- a/test/data/manifest-checksums/centos_9-x86_64-vmdk-jq_only +++ /dev/null @@ -1 +0,0 @@ -63ec86fb10b2e066a9a7bf093e4242fb2bf67204 diff --git a/test/data/manifest-checksums/centos_9-x86_64-wsl-empty b/test/data/manifest-checksums/centos_9-x86_64-wsl-empty new file mode 100644 index 0000000000..321846ba7e --- /dev/null +++ b/test/data/manifest-checksums/centos_9-x86_64-wsl-empty @@ -0,0 +1 @@ +2253e1f82cb2948ef804ed0e7a83c9c89cff5aad diff --git a/test/data/manifest-checksums/centos_9-x86_64-wsl-jq_only b/test/data/manifest-checksums/centos_9-x86_64-wsl-jq_only deleted file mode 100644 index fb11d15b81..0000000000 --- a/test/data/manifest-checksums/centos_9-x86_64-wsl-jq_only +++ /dev/null @@ -1 +0,0 @@ -1410ab8b1eacea1cfeba3e124782fe23c978c94b diff --git a/test/data/manifest-checksums/fedora_42-aarch64-cloud_azure-empty b/test/data/manifest-checksums/fedora_42-aarch64-cloud_azure-empty new file mode 100644 index 0000000000..d9c32d8b1b --- /dev/null +++ b/test/data/manifest-checksums/fedora_42-aarch64-cloud_azure-empty @@ -0,0 +1 @@ +beab5bb2ec07d836c638e597cec8a0356d6e7732 diff --git a/test/data/manifest-checksums/fedora_42-aarch64-cloud_azure-jq_only b/test/data/manifest-checksums/fedora_42-aarch64-cloud_azure-jq_only deleted file mode 100644 index 141c40cefc..0000000000 --- a/test/data/manifest-checksums/fedora_42-aarch64-cloud_azure-jq_only +++ /dev/null @@ -1 +0,0 @@ -a3d14445d81dd349f504e233276cd88abc444888 diff --git a/test/data/manifest-checksums/fedora_42-aarch64-cloud_ec2-empty b/test/data/manifest-checksums/fedora_42-aarch64-cloud_ec2-empty new file mode 100644 index 0000000000..f80e7045f2 --- /dev/null +++ b/test/data/manifest-checksums/fedora_42-aarch64-cloud_ec2-empty @@ -0,0 +1 @@ +55faa76ab6ea02fec1c5008a593794f7301452ee diff --git a/test/data/manifest-checksums/fedora_42-aarch64-cloud_ec2-jq_only b/test/data/manifest-checksums/fedora_42-aarch64-cloud_ec2-jq_only deleted file mode 100644 index 02c841942f..0000000000 --- a/test/data/manifest-checksums/fedora_42-aarch64-cloud_ec2-jq_only +++ /dev/null @@ -1 +0,0 @@ -838b48f744c0a93abf7832d4be4a677efccf9ef7 diff --git a/test/data/manifest-checksums/fedora_42-aarch64-cloud_gce-empty b/test/data/manifest-checksums/fedora_42-aarch64-cloud_gce-empty new file mode 100644 index 0000000000..ae6c0ab281 --- /dev/null +++ b/test/data/manifest-checksums/fedora_42-aarch64-cloud_gce-empty @@ -0,0 +1 @@ +1885012e4b10b92451587bba25ebcceee5a3b566 diff --git a/test/data/manifest-checksums/fedora_42-aarch64-cloud_gce-jq_only b/test/data/manifest-checksums/fedora_42-aarch64-cloud_gce-jq_only deleted file mode 100644 index 0b33108c8c..0000000000 --- a/test/data/manifest-checksums/fedora_42-aarch64-cloud_gce-jq_only +++ /dev/null @@ -1 +0,0 @@ -ef828ad2576668dc1b905d6690244a50e7522594 diff --git a/test/data/manifest-checksums/fedora_42-aarch64-cloud_qcow2-empty b/test/data/manifest-checksums/fedora_42-aarch64-cloud_qcow2-empty new file mode 100644 index 0000000000..0f4b3607a7 --- /dev/null +++ b/test/data/manifest-checksums/fedora_42-aarch64-cloud_qcow2-empty @@ -0,0 +1 @@ +0c2c26ba2b74d248ce3da429850707264c187b94 diff --git a/test/data/manifest-checksums/fedora_42-aarch64-cloud_qcow2-jq_only b/test/data/manifest-checksums/fedora_42-aarch64-cloud_qcow2-jq_only deleted file mode 100644 index 15e1dcf1b2..0000000000 --- a/test/data/manifest-checksums/fedora_42-aarch64-cloud_qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -6f32993a7f0b7b808dbaf2a234df8af25eb63f9c diff --git a/test/data/manifest-checksums/fedora_42-aarch64-generic_ami-all_customizations b/test/data/manifest-checksums/fedora_42-aarch64-generic_ami-all_customizations index 760606ef24..27cf19943e 100644 --- a/test/data/manifest-checksums/fedora_42-aarch64-generic_ami-all_customizations +++ b/test/data/manifest-checksums/fedora_42-aarch64-generic_ami-all_customizations @@ -1 +1 @@ -694a188cd8e0bd60081f5bc1899073dd4f78bd97 +0ded8c6a69b030b2517d9ef3f136710039fd2f3a diff --git a/test/data/manifest-checksums/fedora_42-aarch64-generic_ami-file_customizations b/test/data/manifest-checksums/fedora_42-aarch64-generic_ami-file_customizations index 9113d12b3c..58d16df28e 100644 --- a/test/data/manifest-checksums/fedora_42-aarch64-generic_ami-file_customizations +++ b/test/data/manifest-checksums/fedora_42-aarch64-generic_ami-file_customizations @@ -1 +1 @@ -db016a17aee24a0ae145607c45185906a61f6757 +e7ee8ad4b434ed0c91c3a154282cb7b78faf5cfa diff --git a/test/data/manifest-checksums/fedora_42-aarch64-generic_ami-partitioning_lvm b/test/data/manifest-checksums/fedora_42-aarch64-generic_ami-partitioning_lvm index 2f3bad011f..69b5e198ed 100644 --- a/test/data/manifest-checksums/fedora_42-aarch64-generic_ami-partitioning_lvm +++ b/test/data/manifest-checksums/fedora_42-aarch64-generic_ami-partitioning_lvm @@ -1 +1 @@ -44252a54e9b71dadbf67d57ffdfe1bbf6f2fbc91 +24be42bd316e0b1d9e444ece8fa63064fa6de9f3 diff --git a/test/data/manifest-checksums/fedora_42-aarch64-generic_ami-partitioning_plain b/test/data/manifest-checksums/fedora_42-aarch64-generic_ami-partitioning_plain index 6d5e7caa13..d21c1a86da 100644 --- a/test/data/manifest-checksums/fedora_42-aarch64-generic_ami-partitioning_plain +++ b/test/data/manifest-checksums/fedora_42-aarch64-generic_ami-partitioning_plain @@ -1 +1 @@ -9533f6991063a2cc7f552169a99cb21b25641004 +216f7846077eaf6ae6c243c4ea1d05819875dae7 diff --git a/test/data/manifest-checksums/fedora_42-aarch64-generic_qcow2-all_customizations b/test/data/manifest-checksums/fedora_42-aarch64-generic_qcow2-all_customizations index 973ede424f..5540fa233d 100644 --- a/test/data/manifest-checksums/fedora_42-aarch64-generic_qcow2-all_customizations +++ b/test/data/manifest-checksums/fedora_42-aarch64-generic_qcow2-all_customizations @@ -1 +1 @@ -4cee3f78426f064347fd97d048f9611ddceb3e0e +0bb98710ad3ab7868a6ca2159c09caba8a8ef3f1 diff --git a/test/data/manifest-checksums/fedora_42-aarch64-minimal_raw_zst-jq_only b/test/data/manifest-checksums/fedora_42-aarch64-minimal_raw_zst-jq_only deleted file mode 100644 index 27d0c3b699..0000000000 --- a/test/data/manifest-checksums/fedora_42-aarch64-minimal_raw_zst-jq_only +++ /dev/null @@ -1 +0,0 @@ -4777757bfb2d5e18ffff1d54bd86402592b5557f diff --git a/test/data/manifest-checksums/fedora_42-aarch64-pxe_tar_xz-jq_only b/test/data/manifest-checksums/fedora_42-aarch64-pxe_tar_xz-jq_only deleted file mode 100644 index 1d279d1fe2..0000000000 --- a/test/data/manifest-checksums/fedora_42-aarch64-pxe_tar_xz-jq_only +++ /dev/null @@ -1 +0,0 @@ -fc85e4b3996b95f044fadf9762835903b9bc7b23 diff --git a/test/data/manifest-checksums/fedora_42-aarch64-server_qcow2-all_customizations b/test/data/manifest-checksums/fedora_42-aarch64-server_qcow2-all_customizations index 9e2feffa46..4fe5dda52d 100644 --- a/test/data/manifest-checksums/fedora_42-aarch64-server_qcow2-all_customizations +++ b/test/data/manifest-checksums/fedora_42-aarch64-server_qcow2-all_customizations @@ -1 +1 @@ -e8c693acac5c267a5c6208ad25cd1b7930f00609 +186c066e94f11fc95d21f0c3e58318778f0b499a diff --git a/test/data/manifest-checksums/fedora_42-ppc64le-cloud_qcow2-empty b/test/data/manifest-checksums/fedora_42-ppc64le-cloud_qcow2-empty new file mode 100644 index 0000000000..67313538ef --- /dev/null +++ b/test/data/manifest-checksums/fedora_42-ppc64le-cloud_qcow2-empty @@ -0,0 +1 @@ +b41748416559ffda700b104feab3ec692234d006 diff --git a/test/data/manifest-checksums/fedora_42-ppc64le-cloud_qcow2-jq_only b/test/data/manifest-checksums/fedora_42-ppc64le-cloud_qcow2-jq_only deleted file mode 100644 index 53b566de39..0000000000 --- a/test/data/manifest-checksums/fedora_42-ppc64le-cloud_qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -ea2235e10d089b5dd16bbd30d7242a85268cbc78 diff --git a/test/data/manifest-checksums/fedora_42-ppc64le-generic_qcow2-all_customizations b/test/data/manifest-checksums/fedora_42-ppc64le-generic_qcow2-all_customizations index 797044785e..e8cc652c2e 100644 --- a/test/data/manifest-checksums/fedora_42-ppc64le-generic_qcow2-all_customizations +++ b/test/data/manifest-checksums/fedora_42-ppc64le-generic_qcow2-all_customizations @@ -1 +1 @@ -c6669e1dc5eccbda2a7b22a8ec0c84953ff5501b +ee9b4376648c6ac280359e129c07a30f4b32280d diff --git a/test/data/manifest-checksums/fedora_42-ppc64le-server_qcow2-all_customizations b/test/data/manifest-checksums/fedora_42-ppc64le-server_qcow2-all_customizations index fb5deda645..8e16243809 100644 --- a/test/data/manifest-checksums/fedora_42-ppc64le-server_qcow2-all_customizations +++ b/test/data/manifest-checksums/fedora_42-ppc64le-server_qcow2-all_customizations @@ -1 +1 @@ -8734312bf8f88fbf4d8ecb76167dd592198d319d +a2f2a07ea91054f6bc440a89183dfc37ba251b40 diff --git a/test/data/manifest-checksums/fedora_42-s390x-cloud_qcow2-empty b/test/data/manifest-checksums/fedora_42-s390x-cloud_qcow2-empty new file mode 100644 index 0000000000..76a3123a52 --- /dev/null +++ b/test/data/manifest-checksums/fedora_42-s390x-cloud_qcow2-empty @@ -0,0 +1 @@ +6dc33d0758b049d2f4c3debb674d4fff9f4c291e diff --git a/test/data/manifest-checksums/fedora_42-s390x-cloud_qcow2-jq_only b/test/data/manifest-checksums/fedora_42-s390x-cloud_qcow2-jq_only deleted file mode 100644 index b8c6d02091..0000000000 --- a/test/data/manifest-checksums/fedora_42-s390x-cloud_qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -2e9e3af745cc81410ef994aaecc02ad8754886f3 diff --git a/test/data/manifest-checksums/fedora_42-s390x-generic_qcow2-all_customizations b/test/data/manifest-checksums/fedora_42-s390x-generic_qcow2-all_customizations index e5f37fd453..0acb2198bc 100644 --- a/test/data/manifest-checksums/fedora_42-s390x-generic_qcow2-all_customizations +++ b/test/data/manifest-checksums/fedora_42-s390x-generic_qcow2-all_customizations @@ -1 +1 @@ -56b53af868ebcffa6320503c979fcc6a644ca6a0 +fca79cd10d501c03f73456b6c90e425c46c03756 diff --git a/test/data/manifest-checksums/fedora_42-s390x-server_qcow2-all_customizations b/test/data/manifest-checksums/fedora_42-s390x-server_qcow2-all_customizations index 8918e26ad9..a61f6c3dd9 100644 --- a/test/data/manifest-checksums/fedora_42-s390x-server_qcow2-all_customizations +++ b/test/data/manifest-checksums/fedora_42-s390x-server_qcow2-all_customizations @@ -1 +1 @@ -d9630e68ded7c600c315fdce3f1cd84190bd5219 +3f262e1fd17219c2d7a2d8849254f6b3d387c30c diff --git a/test/data/manifest-checksums/fedora_42-x86_64-cloud_azure-empty b/test/data/manifest-checksums/fedora_42-x86_64-cloud_azure-empty new file mode 100644 index 0000000000..b7cb928031 --- /dev/null +++ b/test/data/manifest-checksums/fedora_42-x86_64-cloud_azure-empty @@ -0,0 +1 @@ +3b2b3644952cbb7149a14177a8017581764de421 diff --git a/test/data/manifest-checksums/fedora_42-x86_64-cloud_azure-jq_only b/test/data/manifest-checksums/fedora_42-x86_64-cloud_azure-jq_only deleted file mode 100644 index 8291ba7e8a..0000000000 --- a/test/data/manifest-checksums/fedora_42-x86_64-cloud_azure-jq_only +++ /dev/null @@ -1 +0,0 @@ -a00e8591c57ea543afa818edd5f0280eee73139f diff --git a/test/data/manifest-checksums/fedora_42-x86_64-cloud_ec2-empty b/test/data/manifest-checksums/fedora_42-x86_64-cloud_ec2-empty new file mode 100644 index 0000000000..35e666caa0 --- /dev/null +++ b/test/data/manifest-checksums/fedora_42-x86_64-cloud_ec2-empty @@ -0,0 +1 @@ +dc1b5ad0d0c1a55d89750a7c81ac5555f0494fbd diff --git a/test/data/manifest-checksums/fedora_42-x86_64-cloud_ec2-jq_only b/test/data/manifest-checksums/fedora_42-x86_64-cloud_ec2-jq_only deleted file mode 100644 index 6b78f0df5d..0000000000 --- a/test/data/manifest-checksums/fedora_42-x86_64-cloud_ec2-jq_only +++ /dev/null @@ -1 +0,0 @@ -c9ddc4eac3274d621b6b2838716b08b83cf2365c diff --git a/test/data/manifest-checksums/fedora_42-x86_64-cloud_gce-empty b/test/data/manifest-checksums/fedora_42-x86_64-cloud_gce-empty new file mode 100644 index 0000000000..d4848f9acf --- /dev/null +++ b/test/data/manifest-checksums/fedora_42-x86_64-cloud_gce-empty @@ -0,0 +1 @@ +1f9ca70332de353af92691c1bf6886ec1069d7d3 diff --git a/test/data/manifest-checksums/fedora_42-x86_64-cloud_gce-jq_only b/test/data/manifest-checksums/fedora_42-x86_64-cloud_gce-jq_only deleted file mode 100644 index 9f5c5eddba..0000000000 --- a/test/data/manifest-checksums/fedora_42-x86_64-cloud_gce-jq_only +++ /dev/null @@ -1 +0,0 @@ -40af096a74c2c055aded24445d1b1cbbc190eab9 diff --git a/test/data/manifest-checksums/fedora_42-x86_64-cloud_qcow2-empty b/test/data/manifest-checksums/fedora_42-x86_64-cloud_qcow2-empty new file mode 100644 index 0000000000..91899d1331 --- /dev/null +++ b/test/data/manifest-checksums/fedora_42-x86_64-cloud_qcow2-empty @@ -0,0 +1 @@ +e33531a228b16936a93154b6dd14f05311f34de5 diff --git a/test/data/manifest-checksums/fedora_42-x86_64-cloud_qcow2-jq_only b/test/data/manifest-checksums/fedora_42-x86_64-cloud_qcow2-jq_only deleted file mode 100644 index ff63af84b2..0000000000 --- a/test/data/manifest-checksums/fedora_42-x86_64-cloud_qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -fd356c85bee07bb118e29c8de47982f838e2343a diff --git a/test/data/manifest-checksums/fedora_42-x86_64-generic_ami-all_customizations b/test/data/manifest-checksums/fedora_42-x86_64-generic_ami-all_customizations index edb84e1e57..722186a696 100644 --- a/test/data/manifest-checksums/fedora_42-x86_64-generic_ami-all_customizations +++ b/test/data/manifest-checksums/fedora_42-x86_64-generic_ami-all_customizations @@ -1 +1 @@ -0f829eca4c9c4d7c87200b6887940e7c27689701 +d8bc219a93dc61fa848c4af368bd5b15e651baa9 diff --git a/test/data/manifest-checksums/fedora_42-x86_64-generic_ami-file_customizations b/test/data/manifest-checksums/fedora_42-x86_64-generic_ami-file_customizations index 61bcf215bc..588a9c8f82 100644 --- a/test/data/manifest-checksums/fedora_42-x86_64-generic_ami-file_customizations +++ b/test/data/manifest-checksums/fedora_42-x86_64-generic_ami-file_customizations @@ -1 +1 @@ -eb248040a7ac43c333298cd412ec68c1a24fd4cf +53b508cb9ee35dae80d832d93ef2a824986e94b1 diff --git a/test/data/manifest-checksums/fedora_42-x86_64-generic_ami-partitioning_lvm b/test/data/manifest-checksums/fedora_42-x86_64-generic_ami-partitioning_lvm index f1f5839def..f5c6c21821 100644 --- a/test/data/manifest-checksums/fedora_42-x86_64-generic_ami-partitioning_lvm +++ b/test/data/manifest-checksums/fedora_42-x86_64-generic_ami-partitioning_lvm @@ -1 +1 @@ -79319f66cb477b0ea89eace5ab880137cf480f7d +f06780f2fa4f1ac1b8dbdf2f04648655c9952bf7 diff --git a/test/data/manifest-checksums/fedora_42-x86_64-generic_ami-partitioning_plain b/test/data/manifest-checksums/fedora_42-x86_64-generic_ami-partitioning_plain index 379f7a31f6..1dcda76db2 100644 --- a/test/data/manifest-checksums/fedora_42-x86_64-generic_ami-partitioning_plain +++ b/test/data/manifest-checksums/fedora_42-x86_64-generic_ami-partitioning_plain @@ -1 +1 @@ -d195b8c3c3f968df8a8514a5f74dc14a869acb64 +22bb4fde17587e444743fedaa3aa2171f0ea18bf diff --git a/test/data/manifest-checksums/fedora_42-x86_64-generic_qcow2-all_customizations b/test/data/manifest-checksums/fedora_42-x86_64-generic_qcow2-all_customizations index bca1bea580..e4d974267c 100644 --- a/test/data/manifest-checksums/fedora_42-x86_64-generic_qcow2-all_customizations +++ b/test/data/manifest-checksums/fedora_42-x86_64-generic_qcow2-all_customizations @@ -1 +1 @@ -2ea72eb4fd8f2c0533ee64945dc960173dd9c70b +8f3afd9da31b75b8556eb22afedbed8892ee2c13 diff --git a/test/data/manifest-checksums/fedora_42-x86_64-minimal_raw_zst-jq_only b/test/data/manifest-checksums/fedora_42-x86_64-minimal_raw_zst-jq_only deleted file mode 100644 index fa4d30c326..0000000000 --- a/test/data/manifest-checksums/fedora_42-x86_64-minimal_raw_zst-jq_only +++ /dev/null @@ -1 +0,0 @@ -98521741fad9b4b9c2bfe8714578fff7bfc9547e diff --git a/test/data/manifest-checksums/fedora_42-x86_64-pxe_tar_xz-jq_only b/test/data/manifest-checksums/fedora_42-x86_64-pxe_tar_xz-jq_only deleted file mode 100644 index bb5390ac53..0000000000 --- a/test/data/manifest-checksums/fedora_42-x86_64-pxe_tar_xz-jq_only +++ /dev/null @@ -1 +0,0 @@ -9691a716a9e814123d4fdc445c59926113f2d5e0 diff --git a/test/data/manifest-checksums/fedora_42-x86_64-server_qcow2-all_customizations b/test/data/manifest-checksums/fedora_42-x86_64-server_qcow2-all_customizations index f9e55a50ba..53e50cd4f4 100644 --- a/test/data/manifest-checksums/fedora_42-x86_64-server_qcow2-all_customizations +++ b/test/data/manifest-checksums/fedora_42-x86_64-server_qcow2-all_customizations @@ -1 +1 @@ -5264209613ed78946dc01263b7e31abd8cb14727 +a1e2f3158663a91c8cd85127ad470b6ccd2e24fa diff --git a/test/data/manifest-checksums/fedora_43-aarch64-cloud_azure-empty b/test/data/manifest-checksums/fedora_43-aarch64-cloud_azure-empty new file mode 100644 index 0000000000..70d5fa8dc1 --- /dev/null +++ b/test/data/manifest-checksums/fedora_43-aarch64-cloud_azure-empty @@ -0,0 +1 @@ +ed86bc326c4a77cfefe8dfade284b39a074aeccb diff --git a/test/data/manifest-checksums/fedora_43-aarch64-cloud_azure-jq_only b/test/data/manifest-checksums/fedora_43-aarch64-cloud_azure-jq_only deleted file mode 100644 index bead076a6a..0000000000 --- a/test/data/manifest-checksums/fedora_43-aarch64-cloud_azure-jq_only +++ /dev/null @@ -1 +0,0 @@ -d5b96db0cb1ab10df70cc556b830796474cdb960 diff --git a/test/data/manifest-checksums/fedora_43-aarch64-cloud_ec2-empty b/test/data/manifest-checksums/fedora_43-aarch64-cloud_ec2-empty new file mode 100644 index 0000000000..0e2b506be6 --- /dev/null +++ b/test/data/manifest-checksums/fedora_43-aarch64-cloud_ec2-empty @@ -0,0 +1 @@ +c8e5b9fa39b0430489e4000f0211979f7902022a diff --git a/test/data/manifest-checksums/fedora_43-aarch64-cloud_ec2-jq_only b/test/data/manifest-checksums/fedora_43-aarch64-cloud_ec2-jq_only deleted file mode 100644 index 6cbc0deb1b..0000000000 --- a/test/data/manifest-checksums/fedora_43-aarch64-cloud_ec2-jq_only +++ /dev/null @@ -1 +0,0 @@ -1830f0b26ee1f3bec0941996f38057e7e2f19d9b diff --git a/test/data/manifest-checksums/fedora_43-aarch64-cloud_gce-empty b/test/data/manifest-checksums/fedora_43-aarch64-cloud_gce-empty new file mode 100644 index 0000000000..77f3a2985b --- /dev/null +++ b/test/data/manifest-checksums/fedora_43-aarch64-cloud_gce-empty @@ -0,0 +1 @@ +88d4902b378fb39bf546e7153cd0d9396093e895 diff --git a/test/data/manifest-checksums/fedora_43-aarch64-cloud_gce-jq_only b/test/data/manifest-checksums/fedora_43-aarch64-cloud_gce-jq_only deleted file mode 100644 index 0ae22332f9..0000000000 --- a/test/data/manifest-checksums/fedora_43-aarch64-cloud_gce-jq_only +++ /dev/null @@ -1 +0,0 @@ -d2fbf8e28a1056d940d8b4e1f6ed3533f4b7ad71 diff --git a/test/data/manifest-checksums/fedora_43-aarch64-cloud_qcow2-empty b/test/data/manifest-checksums/fedora_43-aarch64-cloud_qcow2-empty new file mode 100644 index 0000000000..b8f6f67ec6 --- /dev/null +++ b/test/data/manifest-checksums/fedora_43-aarch64-cloud_qcow2-empty @@ -0,0 +1 @@ +7e724da938e306f96ef12efe1fde3951c02a910b diff --git a/test/data/manifest-checksums/fedora_43-aarch64-cloud_qcow2-jq_only b/test/data/manifest-checksums/fedora_43-aarch64-cloud_qcow2-jq_only deleted file mode 100644 index 2b3e869e9b..0000000000 --- a/test/data/manifest-checksums/fedora_43-aarch64-cloud_qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -96c1af1851f6eb64ffbf8ddd40846c2b21bdc828 diff --git a/test/data/manifest-checksums/fedora_43-aarch64-generic_ami-all_customizations b/test/data/manifest-checksums/fedora_43-aarch64-generic_ami-all_customizations index defb7296c5..3a447062b6 100644 --- a/test/data/manifest-checksums/fedora_43-aarch64-generic_ami-all_customizations +++ b/test/data/manifest-checksums/fedora_43-aarch64-generic_ami-all_customizations @@ -1 +1 @@ -d7293bce0a423ada6123a5ed972e1d202479faa6 +9819a4c3297581112f5985782d45f0e31169800a diff --git a/test/data/manifest-checksums/fedora_43-aarch64-generic_ami-file_customizations b/test/data/manifest-checksums/fedora_43-aarch64-generic_ami-file_customizations index d4d2a4b4e1..a4450e2cf8 100644 --- a/test/data/manifest-checksums/fedora_43-aarch64-generic_ami-file_customizations +++ b/test/data/manifest-checksums/fedora_43-aarch64-generic_ami-file_customizations @@ -1 +1 @@ -11761037b22ed2757b9badc7d22d9cce84c67ed1 +13e8274390412d46c12de61a363b8f8995453ede diff --git a/test/data/manifest-checksums/fedora_43-aarch64-generic_ami-partitioning_lvm b/test/data/manifest-checksums/fedora_43-aarch64-generic_ami-partitioning_lvm index 6b17ca0878..5d58fbe0c5 100644 --- a/test/data/manifest-checksums/fedora_43-aarch64-generic_ami-partitioning_lvm +++ b/test/data/manifest-checksums/fedora_43-aarch64-generic_ami-partitioning_lvm @@ -1 +1 @@ -4a466ef85606c621c607fb759af3bae9a6dd29bd +81d38908d1534cf9af4fcd7234ae043e9369b719 diff --git a/test/data/manifest-checksums/fedora_43-aarch64-generic_ami-partitioning_plain b/test/data/manifest-checksums/fedora_43-aarch64-generic_ami-partitioning_plain index e309ac8f6d..bc19f1641e 100644 --- a/test/data/manifest-checksums/fedora_43-aarch64-generic_ami-partitioning_plain +++ b/test/data/manifest-checksums/fedora_43-aarch64-generic_ami-partitioning_plain @@ -1 +1 @@ -a9739b4952130399b0787846350b05e3ed040b5e +ac1f23be77b10902523d07805cac47e7b5cdff0a diff --git a/test/data/manifest-checksums/fedora_43-aarch64-generic_qcow2-all_customizations b/test/data/manifest-checksums/fedora_43-aarch64-generic_qcow2-all_customizations index 4004fa5f3b..38546ccaf8 100644 --- a/test/data/manifest-checksums/fedora_43-aarch64-generic_qcow2-all_customizations +++ b/test/data/manifest-checksums/fedora_43-aarch64-generic_qcow2-all_customizations @@ -1 +1 @@ -f6d1d49af6ef0da46b03168a60a629b6616324fe +21dabf0590a304d6cd2191c569f45be3ea4d1984 diff --git a/test/data/manifest-checksums/fedora_43-aarch64-minimal_raw_zst-jq_only b/test/data/manifest-checksums/fedora_43-aarch64-minimal_raw_zst-jq_only deleted file mode 100644 index e9acc280ec..0000000000 --- a/test/data/manifest-checksums/fedora_43-aarch64-minimal_raw_zst-jq_only +++ /dev/null @@ -1 +0,0 @@ -c2311ea84c489171dc61876de78df05f97e02e7d diff --git a/test/data/manifest-checksums/fedora_43-aarch64-pxe_tar_xz-jq_only b/test/data/manifest-checksums/fedora_43-aarch64-pxe_tar_xz-jq_only deleted file mode 100644 index 0b5f52db91..0000000000 --- a/test/data/manifest-checksums/fedora_43-aarch64-pxe_tar_xz-jq_only +++ /dev/null @@ -1 +0,0 @@ -9aac7b4863275a403ef26e306f92b543b3e832d2 diff --git a/test/data/manifest-checksums/fedora_43-aarch64-server_qcow2-all_customizations b/test/data/manifest-checksums/fedora_43-aarch64-server_qcow2-all_customizations index b9d6877680..6814ac2e7a 100644 --- a/test/data/manifest-checksums/fedora_43-aarch64-server_qcow2-all_customizations +++ b/test/data/manifest-checksums/fedora_43-aarch64-server_qcow2-all_customizations @@ -1 +1 @@ -3ddf69d3431f10eeb185d661fd3cf68ee2798548 +747e2953d243ae213a421ea3beec6daf26e48bdc diff --git a/test/data/manifest-checksums/fedora_43-ppc64le-cloud_qcow2-empty b/test/data/manifest-checksums/fedora_43-ppc64le-cloud_qcow2-empty new file mode 100644 index 0000000000..5c8f720b12 --- /dev/null +++ b/test/data/manifest-checksums/fedora_43-ppc64le-cloud_qcow2-empty @@ -0,0 +1 @@ +1fb81327f7bdaccaa418372034e59d8487e0aa4e diff --git a/test/data/manifest-checksums/fedora_43-ppc64le-cloud_qcow2-jq_only b/test/data/manifest-checksums/fedora_43-ppc64le-cloud_qcow2-jq_only deleted file mode 100644 index f71f4758a9..0000000000 --- a/test/data/manifest-checksums/fedora_43-ppc64le-cloud_qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -0df9be26b4231336bebc3347379356476304ed10 diff --git a/test/data/manifest-checksums/fedora_43-ppc64le-generic_qcow2-all_customizations b/test/data/manifest-checksums/fedora_43-ppc64le-generic_qcow2-all_customizations index b2fae5d165..ed26de26fa 100644 --- a/test/data/manifest-checksums/fedora_43-ppc64le-generic_qcow2-all_customizations +++ b/test/data/manifest-checksums/fedora_43-ppc64le-generic_qcow2-all_customizations @@ -1 +1 @@ -8ee5266e5614dc2de54afa0d993b764f02c6d524 +0504660b626239ab1f1bbd3e7b3d6f0fc6dc08fb diff --git a/test/data/manifest-checksums/fedora_43-ppc64le-server_qcow2-all_customizations b/test/data/manifest-checksums/fedora_43-ppc64le-server_qcow2-all_customizations index ec5d5a3399..a6d4fc583c 100644 --- a/test/data/manifest-checksums/fedora_43-ppc64le-server_qcow2-all_customizations +++ b/test/data/manifest-checksums/fedora_43-ppc64le-server_qcow2-all_customizations @@ -1 +1 @@ -057607ed6e2cea52680b5e1efa050a23e64ef189 +c45e6d62dace671f54e3ad2d9b50bfbbb3b64b46 diff --git a/test/data/manifest-checksums/fedora_43-s390x-cloud_qcow2-empty b/test/data/manifest-checksums/fedora_43-s390x-cloud_qcow2-empty new file mode 100644 index 0000000000..1af7633b46 --- /dev/null +++ b/test/data/manifest-checksums/fedora_43-s390x-cloud_qcow2-empty @@ -0,0 +1 @@ +69954c8de9a115b190654e93c5b1febaf7944ecb diff --git a/test/data/manifest-checksums/fedora_43-s390x-cloud_qcow2-jq_only b/test/data/manifest-checksums/fedora_43-s390x-cloud_qcow2-jq_only deleted file mode 100644 index c5501bf732..0000000000 --- a/test/data/manifest-checksums/fedora_43-s390x-cloud_qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -2b44f0469ce0ca370a63096ef9e3ed643ba6bb1e diff --git a/test/data/manifest-checksums/fedora_43-s390x-generic_qcow2-all_customizations b/test/data/manifest-checksums/fedora_43-s390x-generic_qcow2-all_customizations index f5041c0b8b..d70db61289 100644 --- a/test/data/manifest-checksums/fedora_43-s390x-generic_qcow2-all_customizations +++ b/test/data/manifest-checksums/fedora_43-s390x-generic_qcow2-all_customizations @@ -1 +1 @@ -0fa27c72f60be8d31053cd56fd093d53beb306ce +b1864f3a53596b45a31e28010bbf08eeb5c6af72 diff --git a/test/data/manifest-checksums/fedora_43-s390x-server_qcow2-all_customizations b/test/data/manifest-checksums/fedora_43-s390x-server_qcow2-all_customizations index f8b4106164..b1c13d1c66 100644 --- a/test/data/manifest-checksums/fedora_43-s390x-server_qcow2-all_customizations +++ b/test/data/manifest-checksums/fedora_43-s390x-server_qcow2-all_customizations @@ -1 +1 @@ -6ffbb9a0d70aeb998633e04a1529c25eb47f07a5 +0333a06b98803c8a991adbeb8ed3776b5f87dfef diff --git a/test/data/manifest-checksums/fedora_43-x86_64-cloud_azure-empty b/test/data/manifest-checksums/fedora_43-x86_64-cloud_azure-empty new file mode 100644 index 0000000000..f5d8ab3352 --- /dev/null +++ b/test/data/manifest-checksums/fedora_43-x86_64-cloud_azure-empty @@ -0,0 +1 @@ +82840576560d63c250b5440545e9f6386893c66e diff --git a/test/data/manifest-checksums/fedora_43-x86_64-cloud_azure-jq_only b/test/data/manifest-checksums/fedora_43-x86_64-cloud_azure-jq_only deleted file mode 100644 index 9eb6f1e000..0000000000 --- a/test/data/manifest-checksums/fedora_43-x86_64-cloud_azure-jq_only +++ /dev/null @@ -1 +0,0 @@ -f33d35106ae86d5dfed183a5e0a0b42e5f505a45 diff --git a/test/data/manifest-checksums/fedora_43-x86_64-cloud_ec2-empty b/test/data/manifest-checksums/fedora_43-x86_64-cloud_ec2-empty new file mode 100644 index 0000000000..02f9e93bf5 --- /dev/null +++ b/test/data/manifest-checksums/fedora_43-x86_64-cloud_ec2-empty @@ -0,0 +1 @@ +e2fa422f99ffb736d5b0cdb3cd72b2102ad400f0 diff --git a/test/data/manifest-checksums/fedora_43-x86_64-cloud_ec2-jq_only b/test/data/manifest-checksums/fedora_43-x86_64-cloud_ec2-jq_only deleted file mode 100644 index 76525632eb..0000000000 --- a/test/data/manifest-checksums/fedora_43-x86_64-cloud_ec2-jq_only +++ /dev/null @@ -1 +0,0 @@ -8bccdb56f1e6e6a1b9e33f5ae4c7121d4e16988c diff --git a/test/data/manifest-checksums/fedora_43-x86_64-cloud_gce-empty b/test/data/manifest-checksums/fedora_43-x86_64-cloud_gce-empty new file mode 100644 index 0000000000..57a03d1269 --- /dev/null +++ b/test/data/manifest-checksums/fedora_43-x86_64-cloud_gce-empty @@ -0,0 +1 @@ +44a0fd8c3abfb5a127d69f563a42b2c0106d14bb diff --git a/test/data/manifest-checksums/fedora_43-x86_64-cloud_gce-jq_only b/test/data/manifest-checksums/fedora_43-x86_64-cloud_gce-jq_only deleted file mode 100644 index a80b0caab7..0000000000 --- a/test/data/manifest-checksums/fedora_43-x86_64-cloud_gce-jq_only +++ /dev/null @@ -1 +0,0 @@ -d291dc14526e74fed3987864f93a1f58ddbc988b diff --git a/test/data/manifest-checksums/fedora_43-x86_64-cloud_qcow2-empty b/test/data/manifest-checksums/fedora_43-x86_64-cloud_qcow2-empty new file mode 100644 index 0000000000..a1b21b66ad --- /dev/null +++ b/test/data/manifest-checksums/fedora_43-x86_64-cloud_qcow2-empty @@ -0,0 +1 @@ +3368156ca69675303a5fdc6c397d77ca69051058 diff --git a/test/data/manifest-checksums/fedora_43-x86_64-cloud_qcow2-jq_only b/test/data/manifest-checksums/fedora_43-x86_64-cloud_qcow2-jq_only deleted file mode 100644 index 126435fce6..0000000000 --- a/test/data/manifest-checksums/fedora_43-x86_64-cloud_qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -e536b3b4e440153454530290c96032e17a9b3d0c diff --git a/test/data/manifest-checksums/fedora_43-x86_64-generic_ami-all_customizations b/test/data/manifest-checksums/fedora_43-x86_64-generic_ami-all_customizations index e237ad719f..f58b4ffd58 100644 --- a/test/data/manifest-checksums/fedora_43-x86_64-generic_ami-all_customizations +++ b/test/data/manifest-checksums/fedora_43-x86_64-generic_ami-all_customizations @@ -1 +1 @@ -0f93cf5ae8690ede07717efa3a6705e9926eb338 +c161671d6b86da2b1a824e93ef66184a68c5140b diff --git a/test/data/manifest-checksums/fedora_43-x86_64-generic_ami-file_customizations b/test/data/manifest-checksums/fedora_43-x86_64-generic_ami-file_customizations index fe0d94229f..3c0caa93c9 100644 --- a/test/data/manifest-checksums/fedora_43-x86_64-generic_ami-file_customizations +++ b/test/data/manifest-checksums/fedora_43-x86_64-generic_ami-file_customizations @@ -1 +1 @@ -c84344bc2445418fbe6b136f6ee29a016db6aeed +384b7519297676acfae001ceaf555db5e3cfe9cd diff --git a/test/data/manifest-checksums/fedora_43-x86_64-generic_ami-partitioning_lvm b/test/data/manifest-checksums/fedora_43-x86_64-generic_ami-partitioning_lvm index 8ad4524cff..92f751181b 100644 --- a/test/data/manifest-checksums/fedora_43-x86_64-generic_ami-partitioning_lvm +++ b/test/data/manifest-checksums/fedora_43-x86_64-generic_ami-partitioning_lvm @@ -1 +1 @@ -78d563435870f194d7118a9e8de39abca74af560 +2346acd77bd019b6a42f35303eb707c1be05639a diff --git a/test/data/manifest-checksums/fedora_43-x86_64-generic_ami-partitioning_plain b/test/data/manifest-checksums/fedora_43-x86_64-generic_ami-partitioning_plain index 4e78305122..151b25d7be 100644 --- a/test/data/manifest-checksums/fedora_43-x86_64-generic_ami-partitioning_plain +++ b/test/data/manifest-checksums/fedora_43-x86_64-generic_ami-partitioning_plain @@ -1 +1 @@ -4a3ab6339ed69384c4c2f9ccadf1c3af2746e009 +5e6c3fda88c9216970b8ca0753d05bbd242e6281 diff --git a/test/data/manifest-checksums/fedora_43-x86_64-generic_qcow2-all_customizations b/test/data/manifest-checksums/fedora_43-x86_64-generic_qcow2-all_customizations index 9b28cdb37c..208350e5d8 100644 --- a/test/data/manifest-checksums/fedora_43-x86_64-generic_qcow2-all_customizations +++ b/test/data/manifest-checksums/fedora_43-x86_64-generic_qcow2-all_customizations @@ -1 +1 @@ -fee0fcee49ce4dad177a8220e34c74559b147f5c +ef988c4032dfd546114ffbac9d6ed27ca7f865fa diff --git a/test/data/manifest-checksums/fedora_43-x86_64-minimal_raw_zst-jq_only b/test/data/manifest-checksums/fedora_43-x86_64-minimal_raw_zst-jq_only deleted file mode 100644 index 1ce9851cd5..0000000000 --- a/test/data/manifest-checksums/fedora_43-x86_64-minimal_raw_zst-jq_only +++ /dev/null @@ -1 +0,0 @@ -a153dd4a6c3a36271ea7dafbeccbfca9c3edcc23 diff --git a/test/data/manifest-checksums/fedora_43-x86_64-pxe_tar_xz-jq_only b/test/data/manifest-checksums/fedora_43-x86_64-pxe_tar_xz-jq_only deleted file mode 100644 index 715c9dad96..0000000000 --- a/test/data/manifest-checksums/fedora_43-x86_64-pxe_tar_xz-jq_only +++ /dev/null @@ -1 +0,0 @@ -6d9b938370a0e1df8e3de789b3945756d7a1385c diff --git a/test/data/manifest-checksums/fedora_43-x86_64-server_qcow2-all_customizations b/test/data/manifest-checksums/fedora_43-x86_64-server_qcow2-all_customizations index a8938a8f5f..f2208c961b 100644 --- a/test/data/manifest-checksums/fedora_43-x86_64-server_qcow2-all_customizations +++ b/test/data/manifest-checksums/fedora_43-x86_64-server_qcow2-all_customizations @@ -1 +1 @@ -b2f4c06f82241a2ae993cb4e34b9e17119580add +f8f73179acc10c38bd38ca45fb2d19833e69e8b1 diff --git a/test/data/manifest-checksums/fedora_44-aarch64-cloud_azure-empty b/test/data/manifest-checksums/fedora_44-aarch64-cloud_azure-empty new file mode 100644 index 0000000000..d828b8fa96 --- /dev/null +++ b/test/data/manifest-checksums/fedora_44-aarch64-cloud_azure-empty @@ -0,0 +1 @@ +22bea4081f049a27032e09fb397edd8c1e213a56 diff --git a/test/data/manifest-checksums/fedora_44-aarch64-cloud_azure-jq_only b/test/data/manifest-checksums/fedora_44-aarch64-cloud_azure-jq_only deleted file mode 100644 index fb29a6b1ee..0000000000 --- a/test/data/manifest-checksums/fedora_44-aarch64-cloud_azure-jq_only +++ /dev/null @@ -1 +0,0 @@ -4710c4e903205abe605a55c0fcace4ab214be8b2 diff --git a/test/data/manifest-checksums/fedora_44-aarch64-cloud_ec2-empty b/test/data/manifest-checksums/fedora_44-aarch64-cloud_ec2-empty new file mode 100644 index 0000000000..2f40386176 --- /dev/null +++ b/test/data/manifest-checksums/fedora_44-aarch64-cloud_ec2-empty @@ -0,0 +1 @@ +1966d1e5f71cdb5561bbc9578aab4214852547a1 diff --git a/test/data/manifest-checksums/fedora_44-aarch64-cloud_ec2-jq_only b/test/data/manifest-checksums/fedora_44-aarch64-cloud_ec2-jq_only deleted file mode 100644 index 25793d2a35..0000000000 --- a/test/data/manifest-checksums/fedora_44-aarch64-cloud_ec2-jq_only +++ /dev/null @@ -1 +0,0 @@ -38a87f147ee09ffedc70a94a2d458f3e3aacfd75 diff --git a/test/data/manifest-checksums/fedora_44-aarch64-cloud_gce-empty b/test/data/manifest-checksums/fedora_44-aarch64-cloud_gce-empty new file mode 100644 index 0000000000..9010f5e211 --- /dev/null +++ b/test/data/manifest-checksums/fedora_44-aarch64-cloud_gce-empty @@ -0,0 +1 @@ +a74755921ce4ae349c9e14af9b5acd344b4ab84c diff --git a/test/data/manifest-checksums/fedora_44-aarch64-cloud_gce-jq_only b/test/data/manifest-checksums/fedora_44-aarch64-cloud_gce-jq_only deleted file mode 100644 index a34a1a0488..0000000000 --- a/test/data/manifest-checksums/fedora_44-aarch64-cloud_gce-jq_only +++ /dev/null @@ -1 +0,0 @@ -4580a62d4ffe71f365a1b91a55b48a2746f01fbb diff --git a/test/data/manifest-checksums/fedora_44-aarch64-cloud_qcow2-empty b/test/data/manifest-checksums/fedora_44-aarch64-cloud_qcow2-empty new file mode 100644 index 0000000000..620482a011 --- /dev/null +++ b/test/data/manifest-checksums/fedora_44-aarch64-cloud_qcow2-empty @@ -0,0 +1 @@ +eb6e60b4d5385da8efd0e7358b8f6f2e56a6b2bc diff --git a/test/data/manifest-checksums/fedora_44-aarch64-cloud_qcow2-jq_only b/test/data/manifest-checksums/fedora_44-aarch64-cloud_qcow2-jq_only deleted file mode 100644 index f300fd0cf9..0000000000 --- a/test/data/manifest-checksums/fedora_44-aarch64-cloud_qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -e04508146d871411c110cb25fc120c2ca994628d diff --git a/test/data/manifest-checksums/fedora_44-aarch64-generic_ami-all_customizations b/test/data/manifest-checksums/fedora_44-aarch64-generic_ami-all_customizations index dd22d9071b..fcd3a7410c 100644 --- a/test/data/manifest-checksums/fedora_44-aarch64-generic_ami-all_customizations +++ b/test/data/manifest-checksums/fedora_44-aarch64-generic_ami-all_customizations @@ -1 +1 @@ -3dcc1547ffdc045a6e9a491aecd254c02ea34db9 +c58a9f1788ed5b3fc8a4d66d5f7e3f74a5c716c8 diff --git a/test/data/manifest-checksums/fedora_44-aarch64-generic_ami-file_customizations b/test/data/manifest-checksums/fedora_44-aarch64-generic_ami-file_customizations index 9f779b8dbe..761b7cab3c 100644 --- a/test/data/manifest-checksums/fedora_44-aarch64-generic_ami-file_customizations +++ b/test/data/manifest-checksums/fedora_44-aarch64-generic_ami-file_customizations @@ -1 +1 @@ -c8fb2417e98d69455b78100b42b9f60842cde53f +87b26205de181a40d5cf2859160b1c49bbeefa85 diff --git a/test/data/manifest-checksums/fedora_44-aarch64-generic_ami-partitioning_lvm b/test/data/manifest-checksums/fedora_44-aarch64-generic_ami-partitioning_lvm index f0021df063..e31cf10d62 100644 --- a/test/data/manifest-checksums/fedora_44-aarch64-generic_ami-partitioning_lvm +++ b/test/data/manifest-checksums/fedora_44-aarch64-generic_ami-partitioning_lvm @@ -1 +1 @@ -9545193dc3fe9d52afd601522777b236a9c74800 +9bd05b4d2f5239c8230f2f688976c4de61946910 diff --git a/test/data/manifest-checksums/fedora_44-aarch64-generic_ami-partitioning_plain b/test/data/manifest-checksums/fedora_44-aarch64-generic_ami-partitioning_plain index 2afcc0fad1..7f4a6a8322 100644 --- a/test/data/manifest-checksums/fedora_44-aarch64-generic_ami-partitioning_plain +++ b/test/data/manifest-checksums/fedora_44-aarch64-generic_ami-partitioning_plain @@ -1 +1 @@ -797511b1b92a3e667c773bdd89ff59d7af5409dd +35d67ffab019d6e40d8020716d20ce0b3d2eef43 diff --git a/test/data/manifest-checksums/fedora_44-aarch64-generic_qcow2-all_customizations b/test/data/manifest-checksums/fedora_44-aarch64-generic_qcow2-all_customizations index 4d464f401e..df673c67e3 100644 --- a/test/data/manifest-checksums/fedora_44-aarch64-generic_qcow2-all_customizations +++ b/test/data/manifest-checksums/fedora_44-aarch64-generic_qcow2-all_customizations @@ -1 +1 @@ -6ca4f033bddd58e41727980a7a540b28d86d4645 +a7feb45ac4c5d7059450bf9e270667fa506de98b diff --git a/test/data/manifest-checksums/fedora_44-aarch64-minimal_raw_zst-jq_only b/test/data/manifest-checksums/fedora_44-aarch64-minimal_raw_zst-jq_only deleted file mode 100644 index b8ab319b1c..0000000000 --- a/test/data/manifest-checksums/fedora_44-aarch64-minimal_raw_zst-jq_only +++ /dev/null @@ -1 +0,0 @@ -6ba81e3260de89d1352eb7b79cfcad7d5698068f diff --git a/test/data/manifest-checksums/fedora_44-aarch64-pxe_tar_xz-jq_only b/test/data/manifest-checksums/fedora_44-aarch64-pxe_tar_xz-jq_only deleted file mode 100644 index 3505f93d5b..0000000000 --- a/test/data/manifest-checksums/fedora_44-aarch64-pxe_tar_xz-jq_only +++ /dev/null @@ -1 +0,0 @@ -0f3623dc7ae43c7603ee872394efdf407e277659 diff --git a/test/data/manifest-checksums/fedora_44-aarch64-server_qcow2-all_customizations b/test/data/manifest-checksums/fedora_44-aarch64-server_qcow2-all_customizations index 3955c4a508..cd076beacc 100644 --- a/test/data/manifest-checksums/fedora_44-aarch64-server_qcow2-all_customizations +++ b/test/data/manifest-checksums/fedora_44-aarch64-server_qcow2-all_customizations @@ -1 +1 @@ -f3bf3697bfad0f25ef7f134dee2a50f32eead583 +65f0fb142cdb33853c52de1475ac4b3f5601eda6 diff --git a/test/data/manifest-checksums/fedora_44-ppc64le-cloud_qcow2-empty b/test/data/manifest-checksums/fedora_44-ppc64le-cloud_qcow2-empty new file mode 100644 index 0000000000..35b91674bb --- /dev/null +++ b/test/data/manifest-checksums/fedora_44-ppc64le-cloud_qcow2-empty @@ -0,0 +1 @@ +9c67bf9c61369b54e83aaa55b9a60d880afe8d6f diff --git a/test/data/manifest-checksums/fedora_44-ppc64le-cloud_qcow2-jq_only b/test/data/manifest-checksums/fedora_44-ppc64le-cloud_qcow2-jq_only deleted file mode 100644 index 307d940eb8..0000000000 --- a/test/data/manifest-checksums/fedora_44-ppc64le-cloud_qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -58d51b7a9ca061787352cbfc6f18f63005b382e0 diff --git a/test/data/manifest-checksums/fedora_44-ppc64le-generic_qcow2-all_customizations b/test/data/manifest-checksums/fedora_44-ppc64le-generic_qcow2-all_customizations index fd2dc61392..614258bdd8 100644 --- a/test/data/manifest-checksums/fedora_44-ppc64le-generic_qcow2-all_customizations +++ b/test/data/manifest-checksums/fedora_44-ppc64le-generic_qcow2-all_customizations @@ -1 +1 @@ -5c99132e63ecbbcb088a7c419275c53402463066 +a6f8cfe8e25f7299851843a56826cc5e52e77130 diff --git a/test/data/manifest-checksums/fedora_44-ppc64le-server_qcow2-all_customizations b/test/data/manifest-checksums/fedora_44-ppc64le-server_qcow2-all_customizations index 7079fc5669..8e05662eaa 100644 --- a/test/data/manifest-checksums/fedora_44-ppc64le-server_qcow2-all_customizations +++ b/test/data/manifest-checksums/fedora_44-ppc64le-server_qcow2-all_customizations @@ -1 +1 @@ -9d5fc7adf0d6e34c91677543e234e48de5614de1 +2c939fcd106de641c353c3f9c15f0a590129bbce diff --git a/test/data/manifest-checksums/fedora_44-s390x-cloud_qcow2-empty b/test/data/manifest-checksums/fedora_44-s390x-cloud_qcow2-empty new file mode 100644 index 0000000000..aeb484a7f2 --- /dev/null +++ b/test/data/manifest-checksums/fedora_44-s390x-cloud_qcow2-empty @@ -0,0 +1 @@ +7803d810d6ccd86ca23c989ce09fc2ad7807abce diff --git a/test/data/manifest-checksums/fedora_44-s390x-cloud_qcow2-jq_only b/test/data/manifest-checksums/fedora_44-s390x-cloud_qcow2-jq_only deleted file mode 100644 index d25eb79884..0000000000 --- a/test/data/manifest-checksums/fedora_44-s390x-cloud_qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -fc86168ba161e8f325362a74c2c16ea2ba7bf18e diff --git a/test/data/manifest-checksums/fedora_44-s390x-generic_qcow2-all_customizations b/test/data/manifest-checksums/fedora_44-s390x-generic_qcow2-all_customizations index 699fa3bf55..b6f101f9b0 100644 --- a/test/data/manifest-checksums/fedora_44-s390x-generic_qcow2-all_customizations +++ b/test/data/manifest-checksums/fedora_44-s390x-generic_qcow2-all_customizations @@ -1 +1 @@ -1b576a991671816a6b7ff40def009b2901360781 +2223cac7f18826f86742aba699cdbbd5b1517be5 diff --git a/test/data/manifest-checksums/fedora_44-s390x-server_qcow2-all_customizations b/test/data/manifest-checksums/fedora_44-s390x-server_qcow2-all_customizations index 09533a90aa..6f8df2998d 100644 --- a/test/data/manifest-checksums/fedora_44-s390x-server_qcow2-all_customizations +++ b/test/data/manifest-checksums/fedora_44-s390x-server_qcow2-all_customizations @@ -1 +1 @@ -141da83e5f90fca5dc79709861facbc484260a0f +a64c1d456ff05777052ff0ab87aeae923ea8b401 diff --git a/test/data/manifest-checksums/fedora_44-x86_64-cloud_azure-empty b/test/data/manifest-checksums/fedora_44-x86_64-cloud_azure-empty new file mode 100644 index 0000000000..c03541bc3a --- /dev/null +++ b/test/data/manifest-checksums/fedora_44-x86_64-cloud_azure-empty @@ -0,0 +1 @@ +2487f714e534d8f5c6cc4f0b89a893489b4f4081 diff --git a/test/data/manifest-checksums/fedora_44-x86_64-cloud_azure-jq_only b/test/data/manifest-checksums/fedora_44-x86_64-cloud_azure-jq_only deleted file mode 100644 index 14a12d7553..0000000000 --- a/test/data/manifest-checksums/fedora_44-x86_64-cloud_azure-jq_only +++ /dev/null @@ -1 +0,0 @@ -8f43ecd46db9b8bcbf8a126176d006fcf40e40b7 diff --git a/test/data/manifest-checksums/fedora_44-x86_64-cloud_ec2-empty b/test/data/manifest-checksums/fedora_44-x86_64-cloud_ec2-empty new file mode 100644 index 0000000000..8cdca0877b --- /dev/null +++ b/test/data/manifest-checksums/fedora_44-x86_64-cloud_ec2-empty @@ -0,0 +1 @@ +71e3aecdcea28a0e0960944686a24bf90fea780c diff --git a/test/data/manifest-checksums/fedora_44-x86_64-cloud_ec2-jq_only b/test/data/manifest-checksums/fedora_44-x86_64-cloud_ec2-jq_only deleted file mode 100644 index b6d9fd17d2..0000000000 --- a/test/data/manifest-checksums/fedora_44-x86_64-cloud_ec2-jq_only +++ /dev/null @@ -1 +0,0 @@ -8346629c4992b0e58b40ac77a15c0ca438415d8a diff --git a/test/data/manifest-checksums/fedora_44-x86_64-cloud_gce-empty b/test/data/manifest-checksums/fedora_44-x86_64-cloud_gce-empty new file mode 100644 index 0000000000..42a5df1d79 --- /dev/null +++ b/test/data/manifest-checksums/fedora_44-x86_64-cloud_gce-empty @@ -0,0 +1 @@ +93c3c7b7a6a21c9d951b4a70758b17c88dbf861d diff --git a/test/data/manifest-checksums/fedora_44-x86_64-cloud_gce-jq_only b/test/data/manifest-checksums/fedora_44-x86_64-cloud_gce-jq_only deleted file mode 100644 index f76abc3e13..0000000000 --- a/test/data/manifest-checksums/fedora_44-x86_64-cloud_gce-jq_only +++ /dev/null @@ -1 +0,0 @@ -13261fab700b6c1066445c985fcb203f01ad817c diff --git a/test/data/manifest-checksums/fedora_44-x86_64-cloud_qcow2-empty b/test/data/manifest-checksums/fedora_44-x86_64-cloud_qcow2-empty new file mode 100644 index 0000000000..2cbc6e7429 --- /dev/null +++ b/test/data/manifest-checksums/fedora_44-x86_64-cloud_qcow2-empty @@ -0,0 +1 @@ +10de464d08c874c0da9e97972d0fbe8f52e16a4e diff --git a/test/data/manifest-checksums/fedora_44-x86_64-cloud_qcow2-jq_only b/test/data/manifest-checksums/fedora_44-x86_64-cloud_qcow2-jq_only deleted file mode 100644 index 2eaac12322..0000000000 --- a/test/data/manifest-checksums/fedora_44-x86_64-cloud_qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -d99c6f6e3b79ac0b49575842c7128d29912ef7aa diff --git a/test/data/manifest-checksums/fedora_44-x86_64-generic_ami-all_customizations b/test/data/manifest-checksums/fedora_44-x86_64-generic_ami-all_customizations index b6957b5af6..4ba8f76a9c 100644 --- a/test/data/manifest-checksums/fedora_44-x86_64-generic_ami-all_customizations +++ b/test/data/manifest-checksums/fedora_44-x86_64-generic_ami-all_customizations @@ -1 +1 @@ -f0d77b1bbfac6d44ca72e05a1fd5ee34dcc154f3 +a82c34854f24a00b99aabfc5ff94107c724e09f2 diff --git a/test/data/manifest-checksums/fedora_44-x86_64-generic_ami-file_customizations b/test/data/manifest-checksums/fedora_44-x86_64-generic_ami-file_customizations index da3b501c25..cb17bde8e8 100644 --- a/test/data/manifest-checksums/fedora_44-x86_64-generic_ami-file_customizations +++ b/test/data/manifest-checksums/fedora_44-x86_64-generic_ami-file_customizations @@ -1 +1 @@ -f4c800dbff604b581807dfb62ed9b6b1ce6d84a3 +5b8564312e40bf2c3e2d1e09da2acd1212f3ba66 diff --git a/test/data/manifest-checksums/fedora_44-x86_64-generic_ami-partitioning_lvm b/test/data/manifest-checksums/fedora_44-x86_64-generic_ami-partitioning_lvm index 02679ede5c..c75c6a6662 100644 --- a/test/data/manifest-checksums/fedora_44-x86_64-generic_ami-partitioning_lvm +++ b/test/data/manifest-checksums/fedora_44-x86_64-generic_ami-partitioning_lvm @@ -1 +1 @@ -764a298d03657ed946d07a73d38fb9b60464b780 +637f0d4f3f3f566fff8d1a7b113afebf4f572e77 diff --git a/test/data/manifest-checksums/fedora_44-x86_64-generic_ami-partitioning_plain b/test/data/manifest-checksums/fedora_44-x86_64-generic_ami-partitioning_plain index 09fcb5a24b..ec97da656a 100644 --- a/test/data/manifest-checksums/fedora_44-x86_64-generic_ami-partitioning_plain +++ b/test/data/manifest-checksums/fedora_44-x86_64-generic_ami-partitioning_plain @@ -1 +1 @@ -1a50176220956c44d88584a4a6a825a061a0a1fb +46fd3f976e4fb3fc9e571239c58a1e3529bf7ed4 diff --git a/test/data/manifest-checksums/fedora_44-x86_64-generic_qcow2-all_customizations b/test/data/manifest-checksums/fedora_44-x86_64-generic_qcow2-all_customizations index 5211b191c9..e6cd507b14 100644 --- a/test/data/manifest-checksums/fedora_44-x86_64-generic_qcow2-all_customizations +++ b/test/data/manifest-checksums/fedora_44-x86_64-generic_qcow2-all_customizations @@ -1 +1 @@ -44d8f97884ee3d5a4888108ec88b372919c5acc7 +33771d3d9d4d768d1228847fa235fa198511b3b8 diff --git a/test/data/manifest-checksums/fedora_44-x86_64-minimal_raw_zst-jq_only b/test/data/manifest-checksums/fedora_44-x86_64-minimal_raw_zst-jq_only deleted file mode 100644 index 412442312d..0000000000 --- a/test/data/manifest-checksums/fedora_44-x86_64-minimal_raw_zst-jq_only +++ /dev/null @@ -1 +0,0 @@ -6d08740ea413e6b98b21c107c77d0b309da36bf8 diff --git a/test/data/manifest-checksums/fedora_44-x86_64-pxe_tar_xz-jq_only b/test/data/manifest-checksums/fedora_44-x86_64-pxe_tar_xz-jq_only deleted file mode 100644 index 678d2d19db..0000000000 --- a/test/data/manifest-checksums/fedora_44-x86_64-pxe_tar_xz-jq_only +++ /dev/null @@ -1 +0,0 @@ -57fb1597f4b03a2c4e20eef92e9d7f16993cabb4 diff --git a/test/data/manifest-checksums/fedora_44-x86_64-server_qcow2-all_customizations b/test/data/manifest-checksums/fedora_44-x86_64-server_qcow2-all_customizations index 4bbf8dd0ed..a6f1ebfebb 100644 --- a/test/data/manifest-checksums/fedora_44-x86_64-server_qcow2-all_customizations +++ b/test/data/manifest-checksums/fedora_44-x86_64-server_qcow2-all_customizations @@ -1 +1 @@ -62eea6ad4ac32b365fd6f0757c9ee61332430d96 +9f8e95ec286241160a5642742a02f2ef5b98e8d9 diff --git a/test/data/manifest-checksums/rhel_10.0-aarch64-ami-all_customizations b/test/data/manifest-checksums/rhel_10.0-aarch64-ami-all_customizations index e3ff648845..2e452480c0 100644 --- a/test/data/manifest-checksums/rhel_10.0-aarch64-ami-all_customizations +++ b/test/data/manifest-checksums/rhel_10.0-aarch64-ami-all_customizations @@ -1 +1 @@ -e46a4849223ff684dab066f96a6f3961e9c3d4ea +923085bd66200ee3c37346e3b62a5554102adaa5 diff --git a/test/data/manifest-checksums/rhel_10.0-aarch64-ami-empty b/test/data/manifest-checksums/rhel_10.0-aarch64-ami-empty new file mode 100644 index 0000000000..c1abdd6f15 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.0-aarch64-ami-empty @@ -0,0 +1 @@ +d50e77225e1fad0b1b8c408797859ec24de4a966 diff --git a/test/data/manifest-checksums/rhel_10.0-aarch64-ami-file_customizations b/test/data/manifest-checksums/rhel_10.0-aarch64-ami-file_customizations index 60a3e79f0c..45aeaafc74 100644 --- a/test/data/manifest-checksums/rhel_10.0-aarch64-ami-file_customizations +++ b/test/data/manifest-checksums/rhel_10.0-aarch64-ami-file_customizations @@ -1 +1 @@ -668859bdd87c51016f2cf45a077ade917b46533d +1be79e21198374cb85a754acdbba798bac6f182b diff --git a/test/data/manifest-checksums/rhel_10.0-aarch64-ami-jq_only b/test/data/manifest-checksums/rhel_10.0-aarch64-ami-jq_only deleted file mode 100644 index 7dedbca80f..0000000000 --- a/test/data/manifest-checksums/rhel_10.0-aarch64-ami-jq_only +++ /dev/null @@ -1 +0,0 @@ -18ddc994fc5e824967119666a2c49154933c00cf diff --git a/test/data/manifest-checksums/rhel_10.0-aarch64-ami-oscap_rhel10 b/test/data/manifest-checksums/rhel_10.0-aarch64-ami-oscap_rhel10 index cd18a7c5c1..2585d3d2aa 100644 --- a/test/data/manifest-checksums/rhel_10.0-aarch64-ami-oscap_rhel10 +++ b/test/data/manifest-checksums/rhel_10.0-aarch64-ami-oscap_rhel10 @@ -1 +1 @@ -eaa8a04c2ae1be3f97a09b6433636673b8c4f988 +2a9b51bd1539cbaf580fbacfefb610767deb791c diff --git a/test/data/manifest-checksums/rhel_10.0-aarch64-ami-partitioning_lvm b/test/data/manifest-checksums/rhel_10.0-aarch64-ami-partitioning_lvm index 83f21abdae..0815d73a67 100644 --- a/test/data/manifest-checksums/rhel_10.0-aarch64-ami-partitioning_lvm +++ b/test/data/manifest-checksums/rhel_10.0-aarch64-ami-partitioning_lvm @@ -1 +1 @@ -dd9ace45163650175e38e38d9b73bbfc9bd85467 +47f084d83ff95372e036f441473e7bd97959032f diff --git a/test/data/manifest-checksums/rhel_10.0-aarch64-ami-partitioning_plain b/test/data/manifest-checksums/rhel_10.0-aarch64-ami-partitioning_plain index 57001763b4..c4193a4b1e 100644 --- a/test/data/manifest-checksums/rhel_10.0-aarch64-ami-partitioning_plain +++ b/test/data/manifest-checksums/rhel_10.0-aarch64-ami-partitioning_plain @@ -1 +1 @@ -5ae0aa7efb8a531cbfd04d98895617489152a48c +e820a1a57d693856980c4cc2db529966428833bd diff --git a/test/data/manifest-checksums/rhel_10.0-aarch64-azure_rhui-empty b/test/data/manifest-checksums/rhel_10.0-aarch64-azure_rhui-empty new file mode 100644 index 0000000000..d60104c581 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.0-aarch64-azure_rhui-empty @@ -0,0 +1 @@ +e0cfa6d0a66bf9a93597bb0edf08567fce7c8d21 diff --git a/test/data/manifest-checksums/rhel_10.0-aarch64-azure_rhui-jq_only b/test/data/manifest-checksums/rhel_10.0-aarch64-azure_rhui-jq_only deleted file mode 100644 index 165d361c7b..0000000000 --- a/test/data/manifest-checksums/rhel_10.0-aarch64-azure_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -07dc2cc2553b8d2e5d11068c489be4587ba0d4f1 diff --git a/test/data/manifest-checksums/rhel_10.0-aarch64-ec2-empty b/test/data/manifest-checksums/rhel_10.0-aarch64-ec2-empty new file mode 100644 index 0000000000..1e849fecda --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.0-aarch64-ec2-empty @@ -0,0 +1 @@ +cb967ff9016e39ad35fbef371f78750b826f897f diff --git a/test/data/manifest-checksums/rhel_10.0-aarch64-ec2-jq_only b/test/data/manifest-checksums/rhel_10.0-aarch64-ec2-jq_only deleted file mode 100644 index 24d3c4e9fd..0000000000 --- a/test/data/manifest-checksums/rhel_10.0-aarch64-ec2-jq_only +++ /dev/null @@ -1 +0,0 @@ -72313821b7828db3bd9d06fb1f5dd07e7f72049d diff --git a/test/data/manifest-checksums/rhel_10.0-aarch64-image_installer-empty b/test/data/manifest-checksums/rhel_10.0-aarch64-image_installer-empty new file mode 100644 index 0000000000..07ad0133af --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.0-aarch64-image_installer-empty @@ -0,0 +1 @@ +14a1b78328613cbe6afd2aefc603b74000656965 diff --git a/test/data/manifest-checksums/rhel_10.0-aarch64-image_installer-jq_only b/test/data/manifest-checksums/rhel_10.0-aarch64-image_installer-jq_only deleted file mode 100644 index 0503f1e35b..0000000000 --- a/test/data/manifest-checksums/rhel_10.0-aarch64-image_installer-jq_only +++ /dev/null @@ -1 +0,0 @@ -3d970f69b084b6d672a54485837d4c7473da010c diff --git a/test/data/manifest-checksums/rhel_10.0-aarch64-pxe_tar_xz-empty b/test/data/manifest-checksums/rhel_10.0-aarch64-pxe_tar_xz-empty new file mode 100644 index 0000000000..de06ee548c --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.0-aarch64-pxe_tar_xz-empty @@ -0,0 +1 @@ +56a9fee201ae3cf858c355f86ec568f8654d4ba1 diff --git a/test/data/manifest-checksums/rhel_10.0-aarch64-pxe_tar_xz-jq_only b/test/data/manifest-checksums/rhel_10.0-aarch64-pxe_tar_xz-jq_only deleted file mode 100644 index c5b2f178be..0000000000 --- a/test/data/manifest-checksums/rhel_10.0-aarch64-pxe_tar_xz-jq_only +++ /dev/null @@ -1 +0,0 @@ -c3429945e0b7ec7065fb52a0a97732492d3be60f diff --git a/test/data/manifest-checksums/rhel_10.0-aarch64-qcow2-empty b/test/data/manifest-checksums/rhel_10.0-aarch64-qcow2-empty new file mode 100644 index 0000000000..f2682d1026 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.0-aarch64-qcow2-empty @@ -0,0 +1 @@ +e1416d47178ae7fa73cd3ba0640b0e751de5fc1a diff --git a/test/data/manifest-checksums/rhel_10.0-aarch64-qcow2-jq_only b/test/data/manifest-checksums/rhel_10.0-aarch64-qcow2-jq_only deleted file mode 100644 index 881b2157ad..0000000000 --- a/test/data/manifest-checksums/rhel_10.0-aarch64-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -d65769c92929a13b66aa87be5c372f43b98592a3 diff --git a/test/data/manifest-checksums/rhel_10.0-aarch64-tar-empty b/test/data/manifest-checksums/rhel_10.0-aarch64-tar-empty new file mode 100644 index 0000000000..a699408e86 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.0-aarch64-tar-empty @@ -0,0 +1 @@ +bec6bab42a915d124fa9e16c922a552007ad2ca5 diff --git a/test/data/manifest-checksums/rhel_10.0-aarch64-tar-jq_only b/test/data/manifest-checksums/rhel_10.0-aarch64-tar-jq_only deleted file mode 100644 index d249011b38..0000000000 --- a/test/data/manifest-checksums/rhel_10.0-aarch64-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -53c16567e509db40567846ec10c062765af5ba01 diff --git a/test/data/manifest-checksums/rhel_10.0-aarch64-vagrant_libvirt-empty b/test/data/manifest-checksums/rhel_10.0-aarch64-vagrant_libvirt-empty new file mode 100644 index 0000000000..0188944137 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.0-aarch64-vagrant_libvirt-empty @@ -0,0 +1 @@ +ecd043f4b4d7aa94f344e1ec321dd5526bcb3353 diff --git a/test/data/manifest-checksums/rhel_10.0-aarch64-vagrant_libvirt-jq_only b/test/data/manifest-checksums/rhel_10.0-aarch64-vagrant_libvirt-jq_only deleted file mode 100644 index 45cca21ec8..0000000000 --- a/test/data/manifest-checksums/rhel_10.0-aarch64-vagrant_libvirt-jq_only +++ /dev/null @@ -1 +0,0 @@ -b9280a195cc93b411b15cf6a7ce5a9348ac97f09 diff --git a/test/data/manifest-checksums/rhel_10.0-aarch64-vhd-empty b/test/data/manifest-checksums/rhel_10.0-aarch64-vhd-empty new file mode 100644 index 0000000000..fc671f1bf4 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.0-aarch64-vhd-empty @@ -0,0 +1 @@ +4378556b4aa58313cd42212d660f6a12cacbd2b3 diff --git a/test/data/manifest-checksums/rhel_10.0-aarch64-vhd-jq_only b/test/data/manifest-checksums/rhel_10.0-aarch64-vhd-jq_only deleted file mode 100644 index 12e283004f..0000000000 --- a/test/data/manifest-checksums/rhel_10.0-aarch64-vhd-jq_only +++ /dev/null @@ -1 +0,0 @@ -ab473164f311f3af4de1636728c91a7879c60022 diff --git a/test/data/manifest-checksums/rhel_10.0-aarch64-wsl-empty b/test/data/manifest-checksums/rhel_10.0-aarch64-wsl-empty new file mode 100644 index 0000000000..71e1c7b0a2 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.0-aarch64-wsl-empty @@ -0,0 +1 @@ +89f071f7b44d33fef3f08df56da59087c7d9983e diff --git a/test/data/manifest-checksums/rhel_10.0-aarch64-wsl-jq_only b/test/data/manifest-checksums/rhel_10.0-aarch64-wsl-jq_only deleted file mode 100644 index f48c3b432b..0000000000 --- a/test/data/manifest-checksums/rhel_10.0-aarch64-wsl-jq_only +++ /dev/null @@ -1 +0,0 @@ -6de543314460461ea5dada93ee803551d6df64e2 diff --git a/test/data/manifest-checksums/rhel_10.0-ppc64le-qcow2-empty b/test/data/manifest-checksums/rhel_10.0-ppc64le-qcow2-empty new file mode 100644 index 0000000000..eb4a7c3bf2 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.0-ppc64le-qcow2-empty @@ -0,0 +1 @@ +b1d9a71f633d30c45c84163546151ae3efe91d09 diff --git a/test/data/manifest-checksums/rhel_10.0-ppc64le-qcow2-jq_only b/test/data/manifest-checksums/rhel_10.0-ppc64le-qcow2-jq_only deleted file mode 100644 index 219a6c8c14..0000000000 --- a/test/data/manifest-checksums/rhel_10.0-ppc64le-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -67d8931091655e8c752019b5a37b18fd8dcceb96 diff --git a/test/data/manifest-checksums/rhel_10.0-ppc64le-tar-empty b/test/data/manifest-checksums/rhel_10.0-ppc64le-tar-empty new file mode 100644 index 0000000000..7773c4f786 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.0-ppc64le-tar-empty @@ -0,0 +1 @@ +f0ad9d65c1255e51ef41ee360948a731fdec70a2 diff --git a/test/data/manifest-checksums/rhel_10.0-ppc64le-tar-jq_only b/test/data/manifest-checksums/rhel_10.0-ppc64le-tar-jq_only deleted file mode 100644 index d5e47cc3fa..0000000000 --- a/test/data/manifest-checksums/rhel_10.0-ppc64le-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -40c9e6708447ffdb5962dea192f915c1b4892912 diff --git a/test/data/manifest-checksums/rhel_10.0-s390x-qcow2-empty b/test/data/manifest-checksums/rhel_10.0-s390x-qcow2-empty new file mode 100644 index 0000000000..6c2b7d6b5e --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.0-s390x-qcow2-empty @@ -0,0 +1 @@ +5661c8fb4bd947e56f35bd1e5177e86ff9e0a873 diff --git a/test/data/manifest-checksums/rhel_10.0-s390x-qcow2-jq_only b/test/data/manifest-checksums/rhel_10.0-s390x-qcow2-jq_only deleted file mode 100644 index 2162a7bf6e..0000000000 --- a/test/data/manifest-checksums/rhel_10.0-s390x-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -3e11e814ecc3e604244efd7e0c62b2a9db0d2159 diff --git a/test/data/manifest-checksums/rhel_10.0-s390x-tar-empty b/test/data/manifest-checksums/rhel_10.0-s390x-tar-empty new file mode 100644 index 0000000000..d38825b565 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.0-s390x-tar-empty @@ -0,0 +1 @@ +688e8f411c492a11d3021dea41905f09fb14251e diff --git a/test/data/manifest-checksums/rhel_10.0-s390x-tar-jq_only b/test/data/manifest-checksums/rhel_10.0-s390x-tar-jq_only deleted file mode 100644 index bf7e00f984..0000000000 --- a/test/data/manifest-checksums/rhel_10.0-s390x-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -b6f35f0fb0b78eda3008d63d922629c0dcd21465 diff --git a/test/data/manifest-checksums/rhel_10.0-x86_64-ami-all_customizations b/test/data/manifest-checksums/rhel_10.0-x86_64-ami-all_customizations index 8f0a725fb8..4d23fda7ef 100644 --- a/test/data/manifest-checksums/rhel_10.0-x86_64-ami-all_customizations +++ b/test/data/manifest-checksums/rhel_10.0-x86_64-ami-all_customizations @@ -1 +1 @@ -01202dcb1a52025e313157f3580ad967bb0aaf62 +c707c704d4c3859df8689ef50d1ae5f444f465d1 diff --git a/test/data/manifest-checksums/rhel_10.0-x86_64-ami-empty b/test/data/manifest-checksums/rhel_10.0-x86_64-ami-empty new file mode 100644 index 0000000000..578d155d9a --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.0-x86_64-ami-empty @@ -0,0 +1 @@ +cefffa130181e04188366a38262d86ca71a67192 diff --git a/test/data/manifest-checksums/rhel_10.0-x86_64-ami-file_customizations b/test/data/manifest-checksums/rhel_10.0-x86_64-ami-file_customizations index b513fb9093..88776eae73 100644 --- a/test/data/manifest-checksums/rhel_10.0-x86_64-ami-file_customizations +++ b/test/data/manifest-checksums/rhel_10.0-x86_64-ami-file_customizations @@ -1 +1 @@ -156afde7899fc4f582071118bb89c392cb2a32dd +37d9730b984f4a1211d7137765fe05f90ee85c9f diff --git a/test/data/manifest-checksums/rhel_10.0-x86_64-ami-jq_only b/test/data/manifest-checksums/rhel_10.0-x86_64-ami-jq_only deleted file mode 100644 index e417d0d5d6..0000000000 --- a/test/data/manifest-checksums/rhel_10.0-x86_64-ami-jq_only +++ /dev/null @@ -1 +0,0 @@ -2eed4550e98af3f17c33108582e56dabea2a2f4e diff --git a/test/data/manifest-checksums/rhel_10.0-x86_64-ami-oscap_rhel10 b/test/data/manifest-checksums/rhel_10.0-x86_64-ami-oscap_rhel10 index 94e2ee7442..8cb08ebfc7 100644 --- a/test/data/manifest-checksums/rhel_10.0-x86_64-ami-oscap_rhel10 +++ b/test/data/manifest-checksums/rhel_10.0-x86_64-ami-oscap_rhel10 @@ -1 +1 @@ -4f74ae35fc8b5b1e69efc0a24f7c8c99c0cb8099 +c51fd3c9ab262627757d31cfc4884c40321c4cc7 diff --git a/test/data/manifest-checksums/rhel_10.0-x86_64-ami-partitioning_lvm b/test/data/manifest-checksums/rhel_10.0-x86_64-ami-partitioning_lvm index 26e6b00752..c6456f28a3 100644 --- a/test/data/manifest-checksums/rhel_10.0-x86_64-ami-partitioning_lvm +++ b/test/data/manifest-checksums/rhel_10.0-x86_64-ami-partitioning_lvm @@ -1 +1 @@ -5f3cdbfe228c24fd46eb2e86383bb09cc91ce9da +1640a7bf08752b2f2526cb293cc30b7a982f2736 diff --git a/test/data/manifest-checksums/rhel_10.0-x86_64-ami-partitioning_plain b/test/data/manifest-checksums/rhel_10.0-x86_64-ami-partitioning_plain index 53d46acf94..f50f20d00c 100644 --- a/test/data/manifest-checksums/rhel_10.0-x86_64-ami-partitioning_plain +++ b/test/data/manifest-checksums/rhel_10.0-x86_64-ami-partitioning_plain @@ -1 +1 @@ -71bf1ef82f982a9c36af86bc33ce4f95020e37ba +cd2d6935622ab0333aa05a4c89d8d0ca78c5a09c diff --git a/test/data/manifest-checksums/rhel_10.0-x86_64-azure_cvm-empty b/test/data/manifest-checksums/rhel_10.0-x86_64-azure_cvm-empty new file mode 100644 index 0000000000..93b9154ffd --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.0-x86_64-azure_cvm-empty @@ -0,0 +1 @@ +fea7c47fc1d197dbd7c78955160df1d334375369 diff --git a/test/data/manifest-checksums/rhel_10.0-x86_64-azure_cvm-jq_only b/test/data/manifest-checksums/rhel_10.0-x86_64-azure_cvm-jq_only deleted file mode 100644 index 6d7fa29402..0000000000 --- a/test/data/manifest-checksums/rhel_10.0-x86_64-azure_cvm-jq_only +++ /dev/null @@ -1 +0,0 @@ -0a686c88860b98477c1c2f548c2aad81cf6da420 diff --git a/test/data/manifest-checksums/rhel_10.0-x86_64-azure_rhui-empty b/test/data/manifest-checksums/rhel_10.0-x86_64-azure_rhui-empty new file mode 100644 index 0000000000..456805a621 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.0-x86_64-azure_rhui-empty @@ -0,0 +1 @@ +f63848eeac3ebb04bb4b2dcf129e978f3b3fd4d2 diff --git a/test/data/manifest-checksums/rhel_10.0-x86_64-azure_rhui-jq_only b/test/data/manifest-checksums/rhel_10.0-x86_64-azure_rhui-jq_only deleted file mode 100644 index e604c9418e..0000000000 --- a/test/data/manifest-checksums/rhel_10.0-x86_64-azure_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -3ca3e447fed3af99986892e93a68587d0c138a07 diff --git a/test/data/manifest-checksums/rhel_10.0-x86_64-azure_sap_rhui-empty b/test/data/manifest-checksums/rhel_10.0-x86_64-azure_sap_rhui-empty new file mode 100644 index 0000000000..8706645ad7 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.0-x86_64-azure_sap_rhui-empty @@ -0,0 +1 @@ +f9bd3409f53ec73058f6c55773c23db44b0da9c7 diff --git a/test/data/manifest-checksums/rhel_10.0-x86_64-azure_sap_rhui-jq_only b/test/data/manifest-checksums/rhel_10.0-x86_64-azure_sap_rhui-jq_only deleted file mode 100644 index 52760e5f81..0000000000 --- a/test/data/manifest-checksums/rhel_10.0-x86_64-azure_sap_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -073f4edee53bc6eb6bc54c1e3ebf523483a4a338 diff --git a/test/data/manifest-checksums/rhel_10.0-x86_64-azure_sapapps_rhui-empty b/test/data/manifest-checksums/rhel_10.0-x86_64-azure_sapapps_rhui-empty new file mode 100644 index 0000000000..443409095f --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.0-x86_64-azure_sapapps_rhui-empty @@ -0,0 +1 @@ +d5f91cbcb580902faf87a39e20401784997d45a0 diff --git a/test/data/manifest-checksums/rhel_10.0-x86_64-azure_sapapps_rhui-jq_only b/test/data/manifest-checksums/rhel_10.0-x86_64-azure_sapapps_rhui-jq_only deleted file mode 100644 index 2bf8072f23..0000000000 --- a/test/data/manifest-checksums/rhel_10.0-x86_64-azure_sapapps_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -0c716dd06cdf6da6c14f0e6139fd67fe51dbb164 diff --git a/test/data/manifest-checksums/rhel_10.0-x86_64-ec2-empty b/test/data/manifest-checksums/rhel_10.0-x86_64-ec2-empty new file mode 100644 index 0000000000..a7123dd360 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.0-x86_64-ec2-empty @@ -0,0 +1 @@ +d0c6d9d961ec9c6112441a9efa537590dca2c126 diff --git a/test/data/manifest-checksums/rhel_10.0-x86_64-ec2-jq_only b/test/data/manifest-checksums/rhel_10.0-x86_64-ec2-jq_only deleted file mode 100644 index 7de4147323..0000000000 --- a/test/data/manifest-checksums/rhel_10.0-x86_64-ec2-jq_only +++ /dev/null @@ -1 +0,0 @@ -2796e6f1decbeac5d8e88f7d0e41b256e83e16f1 diff --git a/test/data/manifest-checksums/rhel_10.0-x86_64-ec2_ha-empty b/test/data/manifest-checksums/rhel_10.0-x86_64-ec2_ha-empty new file mode 100644 index 0000000000..efdca62cd2 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.0-x86_64-ec2_ha-empty @@ -0,0 +1 @@ +8a2fc5647cdd92d38adaffcce08f0a4142c9b7a4 diff --git a/test/data/manifest-checksums/rhel_10.0-x86_64-ec2_ha-jq_only b/test/data/manifest-checksums/rhel_10.0-x86_64-ec2_ha-jq_only deleted file mode 100644 index 558b173b93..0000000000 --- a/test/data/manifest-checksums/rhel_10.0-x86_64-ec2_ha-jq_only +++ /dev/null @@ -1 +0,0 @@ -c4a2bdb096ff803415b83da2e2564c565cd839b2 diff --git a/test/data/manifest-checksums/rhel_10.0-x86_64-gce-empty b/test/data/manifest-checksums/rhel_10.0-x86_64-gce-empty new file mode 100644 index 0000000000..f975f4088e --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.0-x86_64-gce-empty @@ -0,0 +1 @@ +c1b922a9f8280c91bce19dbeb4b2fbdf7d9f12fc diff --git a/test/data/manifest-checksums/rhel_10.0-x86_64-gce-jq_only b/test/data/manifest-checksums/rhel_10.0-x86_64-gce-jq_only deleted file mode 100644 index 76af6422ec..0000000000 --- a/test/data/manifest-checksums/rhel_10.0-x86_64-gce-jq_only +++ /dev/null @@ -1 +0,0 @@ -7b54c9e1dd7f4de2fe048005196b32b8629ac3dc diff --git a/test/data/manifest-checksums/rhel_10.0-x86_64-image_installer-empty b/test/data/manifest-checksums/rhel_10.0-x86_64-image_installer-empty new file mode 100644 index 0000000000..f7e04d37c0 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.0-x86_64-image_installer-empty @@ -0,0 +1 @@ +e45bfab63258c6818b77f49b4a1aa4fffae18b95 diff --git a/test/data/manifest-checksums/rhel_10.0-x86_64-image_installer-jq_only b/test/data/manifest-checksums/rhel_10.0-x86_64-image_installer-jq_only deleted file mode 100644 index 310a863556..0000000000 --- a/test/data/manifest-checksums/rhel_10.0-x86_64-image_installer-jq_only +++ /dev/null @@ -1 +0,0 @@ -87fc5ce80f81cb77b2c85ecfd411cb3f563f142a diff --git a/test/data/manifest-checksums/rhel_10.0-x86_64-oci-empty b/test/data/manifest-checksums/rhel_10.0-x86_64-oci-empty new file mode 100644 index 0000000000..9bf0f9ede6 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.0-x86_64-oci-empty @@ -0,0 +1 @@ +d0e9eb524ee464ecf30fbaf50fa9d8be90a3df1a diff --git a/test/data/manifest-checksums/rhel_10.0-x86_64-oci-jq_only b/test/data/manifest-checksums/rhel_10.0-x86_64-oci-jq_only deleted file mode 100644 index ce9fb055fd..0000000000 --- a/test/data/manifest-checksums/rhel_10.0-x86_64-oci-jq_only +++ /dev/null @@ -1 +0,0 @@ -82bca8a0694271a171a1dd712afd6acc775fe2a0 diff --git a/test/data/manifest-checksums/rhel_10.0-x86_64-ova-empty b/test/data/manifest-checksums/rhel_10.0-x86_64-ova-empty new file mode 100644 index 0000000000..1086d1a03f --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.0-x86_64-ova-empty @@ -0,0 +1 @@ +7d65b54068c91f63a5ad777407d0104e4d2c8eec diff --git a/test/data/manifest-checksums/rhel_10.0-x86_64-ova-jq_only b/test/data/manifest-checksums/rhel_10.0-x86_64-ova-jq_only deleted file mode 100644 index 428f99e5a6..0000000000 --- a/test/data/manifest-checksums/rhel_10.0-x86_64-ova-jq_only +++ /dev/null @@ -1 +0,0 @@ -1212644818006d0d18f53e8924f0aea2d973e83b diff --git a/test/data/manifest-checksums/rhel_10.0-x86_64-pxe_tar_xz-empty b/test/data/manifest-checksums/rhel_10.0-x86_64-pxe_tar_xz-empty new file mode 100644 index 0000000000..09205898ae --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.0-x86_64-pxe_tar_xz-empty @@ -0,0 +1 @@ +11750fe00ebf7a0ae840730a8acfb3a68d354c33 diff --git a/test/data/manifest-checksums/rhel_10.0-x86_64-pxe_tar_xz-jq_only b/test/data/manifest-checksums/rhel_10.0-x86_64-pxe_tar_xz-jq_only deleted file mode 100644 index 72f79924bd..0000000000 --- a/test/data/manifest-checksums/rhel_10.0-x86_64-pxe_tar_xz-jq_only +++ /dev/null @@ -1 +0,0 @@ -b97457e02b90c0c86f7d4e43fb15ca47fbaa6806 diff --git a/test/data/manifest-checksums/rhel_10.0-x86_64-qcow2-empty b/test/data/manifest-checksums/rhel_10.0-x86_64-qcow2-empty new file mode 100644 index 0000000000..9bf0f9ede6 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.0-x86_64-qcow2-empty @@ -0,0 +1 @@ +d0e9eb524ee464ecf30fbaf50fa9d8be90a3df1a diff --git a/test/data/manifest-checksums/rhel_10.0-x86_64-qcow2-jq_only b/test/data/manifest-checksums/rhel_10.0-x86_64-qcow2-jq_only deleted file mode 100644 index ce9fb055fd..0000000000 --- a/test/data/manifest-checksums/rhel_10.0-x86_64-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -82bca8a0694271a171a1dd712afd6acc775fe2a0 diff --git a/test/data/manifest-checksums/rhel_10.0-x86_64-tar-empty b/test/data/manifest-checksums/rhel_10.0-x86_64-tar-empty new file mode 100644 index 0000000000..acf6c87012 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.0-x86_64-tar-empty @@ -0,0 +1 @@ +83d8b5de8e1e1bfe07ed81cb4291ce37980b00e6 diff --git a/test/data/manifest-checksums/rhel_10.0-x86_64-tar-jq_only b/test/data/manifest-checksums/rhel_10.0-x86_64-tar-jq_only deleted file mode 100644 index 0a66f6207e..0000000000 --- a/test/data/manifest-checksums/rhel_10.0-x86_64-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -db70d7973fcb7a369465baf22b260fca69e63d75 diff --git a/test/data/manifest-checksums/rhel_10.0-x86_64-vagrant_libvirt-empty b/test/data/manifest-checksums/rhel_10.0-x86_64-vagrant_libvirt-empty new file mode 100644 index 0000000000..4dcb08c6f4 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.0-x86_64-vagrant_libvirt-empty @@ -0,0 +1 @@ +dca4b151b830af2159b504351a247d330bbb9adb diff --git a/test/data/manifest-checksums/rhel_10.0-x86_64-vagrant_libvirt-jq_only b/test/data/manifest-checksums/rhel_10.0-x86_64-vagrant_libvirt-jq_only deleted file mode 100644 index 88d31230bc..0000000000 --- a/test/data/manifest-checksums/rhel_10.0-x86_64-vagrant_libvirt-jq_only +++ /dev/null @@ -1 +0,0 @@ -ef4081eb72be36a5e69a962649d5c553b821bc21 diff --git a/test/data/manifest-checksums/rhel_10.0-x86_64-vagrant_virtualbox-empty b/test/data/manifest-checksums/rhel_10.0-x86_64-vagrant_virtualbox-empty new file mode 100644 index 0000000000..c7132016e4 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.0-x86_64-vagrant_virtualbox-empty @@ -0,0 +1 @@ +fee303b7ba7c633cbc6f300a4676537626ad269e diff --git a/test/data/manifest-checksums/rhel_10.0-x86_64-vagrant_virtualbox-jq_only b/test/data/manifest-checksums/rhel_10.0-x86_64-vagrant_virtualbox-jq_only deleted file mode 100644 index 937fea3d78..0000000000 --- a/test/data/manifest-checksums/rhel_10.0-x86_64-vagrant_virtualbox-jq_only +++ /dev/null @@ -1 +0,0 @@ -0544fc84a7e8feade85a4a7d335d57464bbd9762 diff --git a/test/data/manifest-checksums/rhel_10.0-x86_64-vhd-empty b/test/data/manifest-checksums/rhel_10.0-x86_64-vhd-empty new file mode 100644 index 0000000000..ee62c321d2 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.0-x86_64-vhd-empty @@ -0,0 +1 @@ +e4e4b189c7645be17f9665e5914bfe7ecfd94262 diff --git a/test/data/manifest-checksums/rhel_10.0-x86_64-vhd-jq_only b/test/data/manifest-checksums/rhel_10.0-x86_64-vhd-jq_only deleted file mode 100644 index ac41c1ac11..0000000000 --- a/test/data/manifest-checksums/rhel_10.0-x86_64-vhd-jq_only +++ /dev/null @@ -1 +0,0 @@ -8d1f5907bea06fffdeab5d92afda01384cf520c0 diff --git a/test/data/manifest-checksums/rhel_10.0-x86_64-vmdk-empty b/test/data/manifest-checksums/rhel_10.0-x86_64-vmdk-empty new file mode 100644 index 0000000000..349ff0a0f1 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.0-x86_64-vmdk-empty @@ -0,0 +1 @@ +c78ca500910b36f702ab18aab10e39985e13be2f diff --git a/test/data/manifest-checksums/rhel_10.0-x86_64-vmdk-jq_only b/test/data/manifest-checksums/rhel_10.0-x86_64-vmdk-jq_only deleted file mode 100644 index c92bf3e39b..0000000000 --- a/test/data/manifest-checksums/rhel_10.0-x86_64-vmdk-jq_only +++ /dev/null @@ -1 +0,0 @@ -052aa6d18468ce50abe5600331cb898523942288 diff --git a/test/data/manifest-checksums/rhel_10.0-x86_64-wsl-empty b/test/data/manifest-checksums/rhel_10.0-x86_64-wsl-empty new file mode 100644 index 0000000000..a8549be5d6 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.0-x86_64-wsl-empty @@ -0,0 +1 @@ +51d3c998a5dfd6b7223fb1b4219de2b052466424 diff --git a/test/data/manifest-checksums/rhel_10.0-x86_64-wsl-jq_only b/test/data/manifest-checksums/rhel_10.0-x86_64-wsl-jq_only deleted file mode 100644 index afc22e20cf..0000000000 --- a/test/data/manifest-checksums/rhel_10.0-x86_64-wsl-jq_only +++ /dev/null @@ -1 +0,0 @@ -806f2ed7a1644ad197244a68d1b764633f292717 diff --git a/test/data/manifest-checksums/rhel_10.1-aarch64-ami-all_customizations b/test/data/manifest-checksums/rhel_10.1-aarch64-ami-all_customizations index d531b1afea..401e4131a3 100644 --- a/test/data/manifest-checksums/rhel_10.1-aarch64-ami-all_customizations +++ b/test/data/manifest-checksums/rhel_10.1-aarch64-ami-all_customizations @@ -1 +1 @@ -58cb261ebedec97da911fbdd7780e625bc491db5 +e6b877df00c052a8a3e4c89b77b07f7494ba22a9 diff --git a/test/data/manifest-checksums/rhel_10.1-aarch64-ami-empty b/test/data/manifest-checksums/rhel_10.1-aarch64-ami-empty new file mode 100644 index 0000000000..4647c85b8d --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.1-aarch64-ami-empty @@ -0,0 +1 @@ +bb0773c7d9c7a641fb16e95c2392cf3453b73c17 diff --git a/test/data/manifest-checksums/rhel_10.1-aarch64-ami-jq_only b/test/data/manifest-checksums/rhel_10.1-aarch64-ami-jq_only deleted file mode 100644 index d5453f1e96..0000000000 --- a/test/data/manifest-checksums/rhel_10.1-aarch64-ami-jq_only +++ /dev/null @@ -1 +0,0 @@ -624c972bc3392a66d766bcf7877189b6c021d566 diff --git a/test/data/manifest-checksums/rhel_10.1-aarch64-ami-partitioning_lvm b/test/data/manifest-checksums/rhel_10.1-aarch64-ami-partitioning_lvm index 73d3b02c1e..a8c06ef4e2 100644 --- a/test/data/manifest-checksums/rhel_10.1-aarch64-ami-partitioning_lvm +++ b/test/data/manifest-checksums/rhel_10.1-aarch64-ami-partitioning_lvm @@ -1 +1 @@ -3d8f4b427f3634eb00e9da15ebaafc3ccd5c8f8b +b3dc163e54e714d4a197b532ae3c8d5bc754e7c9 diff --git a/test/data/manifest-checksums/rhel_10.1-aarch64-ami-partitioning_plain b/test/data/manifest-checksums/rhel_10.1-aarch64-ami-partitioning_plain index c133a2ddd8..685c3f51c1 100644 --- a/test/data/manifest-checksums/rhel_10.1-aarch64-ami-partitioning_plain +++ b/test/data/manifest-checksums/rhel_10.1-aarch64-ami-partitioning_plain @@ -1 +1 @@ -09266761603aa0f2a5bc1eaa56a6da62c91079e1 +c39940cc221d6b200db6e5bcad03347ff526b2d3 diff --git a/test/data/manifest-checksums/rhel_10.1-aarch64-azure_rhui-empty b/test/data/manifest-checksums/rhel_10.1-aarch64-azure_rhui-empty new file mode 100644 index 0000000000..529a955222 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.1-aarch64-azure_rhui-empty @@ -0,0 +1 @@ +b4b5f345cb2ecf9447fb781c2ecd239196f1d413 diff --git a/test/data/manifest-checksums/rhel_10.1-aarch64-azure_rhui-jq_only b/test/data/manifest-checksums/rhel_10.1-aarch64-azure_rhui-jq_only deleted file mode 100644 index 2cbbd44555..0000000000 --- a/test/data/manifest-checksums/rhel_10.1-aarch64-azure_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -4b5670ce20d89608e85050b5b59b973c6707d5cf diff --git a/test/data/manifest-checksums/rhel_10.1-aarch64-ec2-empty b/test/data/manifest-checksums/rhel_10.1-aarch64-ec2-empty new file mode 100644 index 0000000000..b3d9358aca --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.1-aarch64-ec2-empty @@ -0,0 +1 @@ +f98f1aec31b47a0c38a79dee9916d336eaa4ae49 diff --git a/test/data/manifest-checksums/rhel_10.1-aarch64-ec2-jq_only b/test/data/manifest-checksums/rhel_10.1-aarch64-ec2-jq_only deleted file mode 100644 index 27a1c9fad5..0000000000 --- a/test/data/manifest-checksums/rhel_10.1-aarch64-ec2-jq_only +++ /dev/null @@ -1 +0,0 @@ -30ab5dc9defc729f9020db27c29a9eaae751cfb0 diff --git a/test/data/manifest-checksums/rhel_10.1-aarch64-image_installer-empty b/test/data/manifest-checksums/rhel_10.1-aarch64-image_installer-empty new file mode 100644 index 0000000000..7b31bdb3bc --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.1-aarch64-image_installer-empty @@ -0,0 +1 @@ +f8d55f836cb3d51bf382316f059f57588bb3ae08 diff --git a/test/data/manifest-checksums/rhel_10.1-aarch64-image_installer-jq_only b/test/data/manifest-checksums/rhel_10.1-aarch64-image_installer-jq_only deleted file mode 100644 index 565e02a173..0000000000 --- a/test/data/manifest-checksums/rhel_10.1-aarch64-image_installer-jq_only +++ /dev/null @@ -1 +0,0 @@ -265473f22539f413762d4dfe596a9d57c5cb8815 diff --git a/test/data/manifest-checksums/rhel_10.1-aarch64-pxe_tar_xz-empty b/test/data/manifest-checksums/rhel_10.1-aarch64-pxe_tar_xz-empty new file mode 100644 index 0000000000..cb129189c1 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.1-aarch64-pxe_tar_xz-empty @@ -0,0 +1 @@ +3634095ecc0a06ac8ef8862c00cea637a3e2bd14 diff --git a/test/data/manifest-checksums/rhel_10.1-aarch64-pxe_tar_xz-jq_only b/test/data/manifest-checksums/rhel_10.1-aarch64-pxe_tar_xz-jq_only deleted file mode 100644 index 38a3378e53..0000000000 --- a/test/data/manifest-checksums/rhel_10.1-aarch64-pxe_tar_xz-jq_only +++ /dev/null @@ -1 +0,0 @@ -5380833057997faad028bb01de15e980d330e2a1 diff --git a/test/data/manifest-checksums/rhel_10.1-aarch64-qcow2-empty b/test/data/manifest-checksums/rhel_10.1-aarch64-qcow2-empty new file mode 100644 index 0000000000..590c491e50 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.1-aarch64-qcow2-empty @@ -0,0 +1 @@ +31269f90e14bc367646f82d6ccc61afa5f6899ae diff --git a/test/data/manifest-checksums/rhel_10.1-aarch64-qcow2-jq_only b/test/data/manifest-checksums/rhel_10.1-aarch64-qcow2-jq_only deleted file mode 100644 index 247114c0d9..0000000000 --- a/test/data/manifest-checksums/rhel_10.1-aarch64-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -371491b84e1627e51e45bf10382e0e706c7cf5fe diff --git a/test/data/manifest-checksums/rhel_10.1-aarch64-tar-empty b/test/data/manifest-checksums/rhel_10.1-aarch64-tar-empty new file mode 100644 index 0000000000..460fd17ebb --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.1-aarch64-tar-empty @@ -0,0 +1 @@ +e042dc8082df1b5039ef07f4a89e3657c2335027 diff --git a/test/data/manifest-checksums/rhel_10.1-aarch64-tar-jq_only b/test/data/manifest-checksums/rhel_10.1-aarch64-tar-jq_only deleted file mode 100644 index d6536f990b..0000000000 --- a/test/data/manifest-checksums/rhel_10.1-aarch64-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -406411d5839ab6b305961f4f985918ea97a1f6d5 diff --git a/test/data/manifest-checksums/rhel_10.1-aarch64-vagrant_libvirt-empty b/test/data/manifest-checksums/rhel_10.1-aarch64-vagrant_libvirt-empty new file mode 100644 index 0000000000..77850d04ca --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.1-aarch64-vagrant_libvirt-empty @@ -0,0 +1 @@ +186d6cae13a9356a98d99e901bd61fdf351a9e86 diff --git a/test/data/manifest-checksums/rhel_10.1-aarch64-vagrant_libvirt-jq_only b/test/data/manifest-checksums/rhel_10.1-aarch64-vagrant_libvirt-jq_only deleted file mode 100644 index f1dec2510e..0000000000 --- a/test/data/manifest-checksums/rhel_10.1-aarch64-vagrant_libvirt-jq_only +++ /dev/null @@ -1 +0,0 @@ -f0ea131b295a8cf1a018dcc22222d8fa0e8db8ec diff --git a/test/data/manifest-checksums/rhel_10.1-aarch64-vhd-empty b/test/data/manifest-checksums/rhel_10.1-aarch64-vhd-empty new file mode 100644 index 0000000000..039c1c82ca --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.1-aarch64-vhd-empty @@ -0,0 +1 @@ +ce5ef2b63588ab81ce5ab682eb58962337b8b744 diff --git a/test/data/manifest-checksums/rhel_10.1-aarch64-vhd-jq_only b/test/data/manifest-checksums/rhel_10.1-aarch64-vhd-jq_only deleted file mode 100644 index cb76cfe51a..0000000000 --- a/test/data/manifest-checksums/rhel_10.1-aarch64-vhd-jq_only +++ /dev/null @@ -1 +0,0 @@ -dea28b489d798499b4930bc360122e225a4f48e5 diff --git a/test/data/manifest-checksums/rhel_10.1-aarch64-wsl-empty b/test/data/manifest-checksums/rhel_10.1-aarch64-wsl-empty new file mode 100644 index 0000000000..2d91f66b88 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.1-aarch64-wsl-empty @@ -0,0 +1 @@ +4bc9a83d4ebb8a2b479126aa92eac5a5f8a2a121 diff --git a/test/data/manifest-checksums/rhel_10.1-aarch64-wsl-jq_only b/test/data/manifest-checksums/rhel_10.1-aarch64-wsl-jq_only deleted file mode 100644 index 85bb3f417b..0000000000 --- a/test/data/manifest-checksums/rhel_10.1-aarch64-wsl-jq_only +++ /dev/null @@ -1 +0,0 @@ -1f53b00f0f3e40ca8d08d3223d1f2c7ba7ef8640 diff --git a/test/data/manifest-checksums/rhel_10.1-ppc64le-qcow2-empty b/test/data/manifest-checksums/rhel_10.1-ppc64le-qcow2-empty new file mode 100644 index 0000000000..a667efca81 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.1-ppc64le-qcow2-empty @@ -0,0 +1 @@ +bc5413071a97da377b422dccb7a84eba490ba3d5 diff --git a/test/data/manifest-checksums/rhel_10.1-ppc64le-qcow2-jq_only b/test/data/manifest-checksums/rhel_10.1-ppc64le-qcow2-jq_only deleted file mode 100644 index ce4d26edd4..0000000000 --- a/test/data/manifest-checksums/rhel_10.1-ppc64le-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -5667270b6243d670706acb7485faef08de8a660a diff --git a/test/data/manifest-checksums/rhel_10.1-ppc64le-tar-empty b/test/data/manifest-checksums/rhel_10.1-ppc64le-tar-empty new file mode 100644 index 0000000000..4d6a0bed03 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.1-ppc64le-tar-empty @@ -0,0 +1 @@ +560d234af2ee54f3b1659a3dd2119a98d3e84c07 diff --git a/test/data/manifest-checksums/rhel_10.1-ppc64le-tar-jq_only b/test/data/manifest-checksums/rhel_10.1-ppc64le-tar-jq_only deleted file mode 100644 index 127fd86545..0000000000 --- a/test/data/manifest-checksums/rhel_10.1-ppc64le-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -9b09530983c5db87e96292abdc79ea551905347d diff --git a/test/data/manifest-checksums/rhel_10.1-s390x-qcow2-empty b/test/data/manifest-checksums/rhel_10.1-s390x-qcow2-empty new file mode 100644 index 0000000000..2d16716a43 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.1-s390x-qcow2-empty @@ -0,0 +1 @@ +1c234dd1a6119ad7c815a68befeafccb02436560 diff --git a/test/data/manifest-checksums/rhel_10.1-s390x-qcow2-jq_only b/test/data/manifest-checksums/rhel_10.1-s390x-qcow2-jq_only deleted file mode 100644 index 61b2c107f2..0000000000 --- a/test/data/manifest-checksums/rhel_10.1-s390x-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -f94317759b0cb65187d0fdcfda22c65358efcfe0 diff --git a/test/data/manifest-checksums/rhel_10.1-s390x-tar-empty b/test/data/manifest-checksums/rhel_10.1-s390x-tar-empty new file mode 100644 index 0000000000..bdcb0e2394 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.1-s390x-tar-empty @@ -0,0 +1 @@ +ff71608348e35873fd7afa2eadf7d89aadbe03bc diff --git a/test/data/manifest-checksums/rhel_10.1-s390x-tar-jq_only b/test/data/manifest-checksums/rhel_10.1-s390x-tar-jq_only deleted file mode 100644 index 4f6fb302fc..0000000000 --- a/test/data/manifest-checksums/rhel_10.1-s390x-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -d17e65be634606e27e34772df9c28011ff5e6b51 diff --git a/test/data/manifest-checksums/rhel_10.1-x86_64-ami-all_customizations b/test/data/manifest-checksums/rhel_10.1-x86_64-ami-all_customizations index 0035ccb7b5..829a92b919 100644 --- a/test/data/manifest-checksums/rhel_10.1-x86_64-ami-all_customizations +++ b/test/data/manifest-checksums/rhel_10.1-x86_64-ami-all_customizations @@ -1 +1 @@ -a9268a2301d1a8a60723f0e73e8a96ce802045cf +c51272f0f420b1a275fcea3df7270e4bfc7f4993 diff --git a/test/data/manifest-checksums/rhel_10.1-x86_64-ami-empty b/test/data/manifest-checksums/rhel_10.1-x86_64-ami-empty new file mode 100644 index 0000000000..f59b548b4f --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.1-x86_64-ami-empty @@ -0,0 +1 @@ +77b591975e2ea34754e98b03a3c2ff86d97e5cd6 diff --git a/test/data/manifest-checksums/rhel_10.1-x86_64-ami-jq_only b/test/data/manifest-checksums/rhel_10.1-x86_64-ami-jq_only deleted file mode 100644 index c3410fe6c4..0000000000 --- a/test/data/manifest-checksums/rhel_10.1-x86_64-ami-jq_only +++ /dev/null @@ -1 +0,0 @@ -4a15f4176fa4d4967c29c30a9797e044eb911a8e diff --git a/test/data/manifest-checksums/rhel_10.1-x86_64-ami-partitioning_lvm b/test/data/manifest-checksums/rhel_10.1-x86_64-ami-partitioning_lvm index c50b6197d2..ae404b9655 100644 --- a/test/data/manifest-checksums/rhel_10.1-x86_64-ami-partitioning_lvm +++ b/test/data/manifest-checksums/rhel_10.1-x86_64-ami-partitioning_lvm @@ -1 +1 @@ -4d7b94176bde64ce7f9855a27f510dfa9749bc1c +e7bcb503a96deaa93f2adfb322a0cd2301d1648e diff --git a/test/data/manifest-checksums/rhel_10.1-x86_64-ami-partitioning_plain b/test/data/manifest-checksums/rhel_10.1-x86_64-ami-partitioning_plain index 3f2af16439..a852888251 100644 --- a/test/data/manifest-checksums/rhel_10.1-x86_64-ami-partitioning_plain +++ b/test/data/manifest-checksums/rhel_10.1-x86_64-ami-partitioning_plain @@ -1 +1 @@ -846acc6151933671e8f1f0945c9b6bc54a4554ab +f15ec6758fea33d14ba29c02484f0f3dab13267f diff --git a/test/data/manifest-checksums/rhel_10.1-x86_64-azure_cvm-empty b/test/data/manifest-checksums/rhel_10.1-x86_64-azure_cvm-empty new file mode 100644 index 0000000000..6ab6c94606 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.1-x86_64-azure_cvm-empty @@ -0,0 +1 @@ +39e4aa17c3ee4866459c03854596722c4566d725 diff --git a/test/data/manifest-checksums/rhel_10.1-x86_64-azure_cvm-jq_only b/test/data/manifest-checksums/rhel_10.1-x86_64-azure_cvm-jq_only deleted file mode 100644 index 39ae430947..0000000000 --- a/test/data/manifest-checksums/rhel_10.1-x86_64-azure_cvm-jq_only +++ /dev/null @@ -1 +0,0 @@ -3c87ab94b34ee60b92f430b5e75d67bfa12b0564 diff --git a/test/data/manifest-checksums/rhel_10.1-x86_64-azure_rhui-empty b/test/data/manifest-checksums/rhel_10.1-x86_64-azure_rhui-empty new file mode 100644 index 0000000000..32af78f2bc --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.1-x86_64-azure_rhui-empty @@ -0,0 +1 @@ +bee2cd17aec1673eea61906071ed047f1028505f diff --git a/test/data/manifest-checksums/rhel_10.1-x86_64-azure_rhui-jq_only b/test/data/manifest-checksums/rhel_10.1-x86_64-azure_rhui-jq_only deleted file mode 100644 index 5804fdba9f..0000000000 --- a/test/data/manifest-checksums/rhel_10.1-x86_64-azure_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -57ee1604b4c9f49b6fed4c34aacb97da1bfcb463 diff --git a/test/data/manifest-checksums/rhel_10.1-x86_64-azure_sap_rhui-empty b/test/data/manifest-checksums/rhel_10.1-x86_64-azure_sap_rhui-empty new file mode 100644 index 0000000000..034b985be5 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.1-x86_64-azure_sap_rhui-empty @@ -0,0 +1 @@ +81dfa4a8a134597919e6807e1fd83467e6976de3 diff --git a/test/data/manifest-checksums/rhel_10.1-x86_64-azure_sap_rhui-jq_only b/test/data/manifest-checksums/rhel_10.1-x86_64-azure_sap_rhui-jq_only deleted file mode 100644 index fd6bb2a905..0000000000 --- a/test/data/manifest-checksums/rhel_10.1-x86_64-azure_sap_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -38c33e7ec61d04834bd8daba816d36393832fe81 diff --git a/test/data/manifest-checksums/rhel_10.1-x86_64-azure_sapapps_rhui-empty b/test/data/manifest-checksums/rhel_10.1-x86_64-azure_sapapps_rhui-empty new file mode 100644 index 0000000000..3d2adb6560 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.1-x86_64-azure_sapapps_rhui-empty @@ -0,0 +1 @@ +74a6260289ea6bb8c9e6e3085809bfa4e129442a diff --git a/test/data/manifest-checksums/rhel_10.1-x86_64-azure_sapapps_rhui-jq_only b/test/data/manifest-checksums/rhel_10.1-x86_64-azure_sapapps_rhui-jq_only deleted file mode 100644 index c87abe0d37..0000000000 --- a/test/data/manifest-checksums/rhel_10.1-x86_64-azure_sapapps_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -f5c9269d88963ab7002ceb20526ff04ea08864dd diff --git a/test/data/manifest-checksums/rhel_10.1-x86_64-ec2-empty b/test/data/manifest-checksums/rhel_10.1-x86_64-ec2-empty new file mode 100644 index 0000000000..7276f6c8b6 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.1-x86_64-ec2-empty @@ -0,0 +1 @@ +b5d43a9dea61bf9005f5b19587eb906dfa73e24e diff --git a/test/data/manifest-checksums/rhel_10.1-x86_64-ec2-jq_only b/test/data/manifest-checksums/rhel_10.1-x86_64-ec2-jq_only deleted file mode 100644 index 32d0914e5d..0000000000 --- a/test/data/manifest-checksums/rhel_10.1-x86_64-ec2-jq_only +++ /dev/null @@ -1 +0,0 @@ -7876c3e26cdd1ad103bea72ea142a687027f3e5a diff --git a/test/data/manifest-checksums/rhel_10.1-x86_64-ec2_ha-empty b/test/data/manifest-checksums/rhel_10.1-x86_64-ec2_ha-empty new file mode 100644 index 0000000000..1c09394e8b --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.1-x86_64-ec2_ha-empty @@ -0,0 +1 @@ +25644ef16e280d234b44ccb261567153f23ea22c diff --git a/test/data/manifest-checksums/rhel_10.1-x86_64-ec2_ha-jq_only b/test/data/manifest-checksums/rhel_10.1-x86_64-ec2_ha-jq_only deleted file mode 100644 index f8c5cfc37c..0000000000 --- a/test/data/manifest-checksums/rhel_10.1-x86_64-ec2_ha-jq_only +++ /dev/null @@ -1 +0,0 @@ -d377e1f9c4430cb0c4710a9c996f71650b17e064 diff --git a/test/data/manifest-checksums/rhel_10.1-x86_64-gce-empty b/test/data/manifest-checksums/rhel_10.1-x86_64-gce-empty new file mode 100644 index 0000000000..5ce733d321 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.1-x86_64-gce-empty @@ -0,0 +1 @@ +e3218cb234589f4b0bc7c3620782a9bd3081be89 diff --git a/test/data/manifest-checksums/rhel_10.1-x86_64-gce-jq_only b/test/data/manifest-checksums/rhel_10.1-x86_64-gce-jq_only deleted file mode 100644 index 4e55dae0c3..0000000000 --- a/test/data/manifest-checksums/rhel_10.1-x86_64-gce-jq_only +++ /dev/null @@ -1 +0,0 @@ -37b3856d44ab40da5273fec0a498b0e6562ad676 diff --git a/test/data/manifest-checksums/rhel_10.1-x86_64-image_installer-empty b/test/data/manifest-checksums/rhel_10.1-x86_64-image_installer-empty new file mode 100644 index 0000000000..d198d690a6 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.1-x86_64-image_installer-empty @@ -0,0 +1 @@ +78101677920e99eeb58bae9bd7765d080853268a diff --git a/test/data/manifest-checksums/rhel_10.1-x86_64-image_installer-jq_only b/test/data/manifest-checksums/rhel_10.1-x86_64-image_installer-jq_only deleted file mode 100644 index b0624c797c..0000000000 --- a/test/data/manifest-checksums/rhel_10.1-x86_64-image_installer-jq_only +++ /dev/null @@ -1 +0,0 @@ -8ab6e3a9f422042396098c9e24ed535adb119ad9 diff --git a/test/data/manifest-checksums/rhel_10.1-x86_64-oci-empty b/test/data/manifest-checksums/rhel_10.1-x86_64-oci-empty new file mode 100644 index 0000000000..0eb7222175 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.1-x86_64-oci-empty @@ -0,0 +1 @@ +9f0d7b3c5e0b8138dd1732f4109be52b9cc8e6e1 diff --git a/test/data/manifest-checksums/rhel_10.1-x86_64-oci-jq_only b/test/data/manifest-checksums/rhel_10.1-x86_64-oci-jq_only deleted file mode 100644 index 95a07d89e6..0000000000 --- a/test/data/manifest-checksums/rhel_10.1-x86_64-oci-jq_only +++ /dev/null @@ -1 +0,0 @@ -eda579dd7722fe75ce18e60adc660c1718a8629d diff --git a/test/data/manifest-checksums/rhel_10.1-x86_64-ova-empty b/test/data/manifest-checksums/rhel_10.1-x86_64-ova-empty new file mode 100644 index 0000000000..26c87991ac --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.1-x86_64-ova-empty @@ -0,0 +1 @@ +1acb5c4141651a22a59e814dbc9b7160eec440f5 diff --git a/test/data/manifest-checksums/rhel_10.1-x86_64-ova-jq_only b/test/data/manifest-checksums/rhel_10.1-x86_64-ova-jq_only deleted file mode 100644 index 83d004efd6..0000000000 --- a/test/data/manifest-checksums/rhel_10.1-x86_64-ova-jq_only +++ /dev/null @@ -1 +0,0 @@ -9d5bf5e95cb7689b9d03dbd73ca54b89b00e8aca diff --git a/test/data/manifest-checksums/rhel_10.1-x86_64-pxe_tar_xz-empty b/test/data/manifest-checksums/rhel_10.1-x86_64-pxe_tar_xz-empty new file mode 100644 index 0000000000..a3e9f0a1d6 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.1-x86_64-pxe_tar_xz-empty @@ -0,0 +1 @@ +1329aec993211428d1dc6eddb7780bfc506c5ca8 diff --git a/test/data/manifest-checksums/rhel_10.1-x86_64-pxe_tar_xz-jq_only b/test/data/manifest-checksums/rhel_10.1-x86_64-pxe_tar_xz-jq_only deleted file mode 100644 index 5a230cb593..0000000000 --- a/test/data/manifest-checksums/rhel_10.1-x86_64-pxe_tar_xz-jq_only +++ /dev/null @@ -1 +0,0 @@ -01b34bc0b08d280ee2c94da8dcbce2d806ff43bd diff --git a/test/data/manifest-checksums/rhel_10.1-x86_64-qcow2-empty b/test/data/manifest-checksums/rhel_10.1-x86_64-qcow2-empty new file mode 100644 index 0000000000..0eb7222175 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.1-x86_64-qcow2-empty @@ -0,0 +1 @@ +9f0d7b3c5e0b8138dd1732f4109be52b9cc8e6e1 diff --git a/test/data/manifest-checksums/rhel_10.1-x86_64-qcow2-jq_only b/test/data/manifest-checksums/rhel_10.1-x86_64-qcow2-jq_only deleted file mode 100644 index 95a07d89e6..0000000000 --- a/test/data/manifest-checksums/rhel_10.1-x86_64-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -eda579dd7722fe75ce18e60adc660c1718a8629d diff --git a/test/data/manifest-checksums/rhel_10.1-x86_64-tar-empty b/test/data/manifest-checksums/rhel_10.1-x86_64-tar-empty new file mode 100644 index 0000000000..5112918202 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.1-x86_64-tar-empty @@ -0,0 +1 @@ +0709684bd77d905f008c97e5bf10130d8fe7a090 diff --git a/test/data/manifest-checksums/rhel_10.1-x86_64-tar-jq_only b/test/data/manifest-checksums/rhel_10.1-x86_64-tar-jq_only deleted file mode 100644 index d7c973518d..0000000000 --- a/test/data/manifest-checksums/rhel_10.1-x86_64-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -5ba0efa4d87a9d93a87a481d109357d7287bd4f0 diff --git a/test/data/manifest-checksums/rhel_10.1-x86_64-vagrant_libvirt-empty b/test/data/manifest-checksums/rhel_10.1-x86_64-vagrant_libvirt-empty new file mode 100644 index 0000000000..efa55679de --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.1-x86_64-vagrant_libvirt-empty @@ -0,0 +1 @@ +8aae3707f106304ba83fdb996e249cc4f8184318 diff --git a/test/data/manifest-checksums/rhel_10.1-x86_64-vagrant_libvirt-jq_only b/test/data/manifest-checksums/rhel_10.1-x86_64-vagrant_libvirt-jq_only deleted file mode 100644 index 6649090e5e..0000000000 --- a/test/data/manifest-checksums/rhel_10.1-x86_64-vagrant_libvirt-jq_only +++ /dev/null @@ -1 +0,0 @@ -e0d04cc1bac2b1c4c1ee6dd756ea5fbce103ba71 diff --git a/test/data/manifest-checksums/rhel_10.1-x86_64-vagrant_virtualbox-empty b/test/data/manifest-checksums/rhel_10.1-x86_64-vagrant_virtualbox-empty new file mode 100644 index 0000000000..219b1c181a --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.1-x86_64-vagrant_virtualbox-empty @@ -0,0 +1 @@ +95e6ccafe098d9239282a9a189629d2db2412583 diff --git a/test/data/manifest-checksums/rhel_10.1-x86_64-vagrant_virtualbox-jq_only b/test/data/manifest-checksums/rhel_10.1-x86_64-vagrant_virtualbox-jq_only deleted file mode 100644 index b3e8277aaa..0000000000 --- a/test/data/manifest-checksums/rhel_10.1-x86_64-vagrant_virtualbox-jq_only +++ /dev/null @@ -1 +0,0 @@ -1f5d8993297519c935168a6a0d2aeaa18d8cd933 diff --git a/test/data/manifest-checksums/rhel_10.1-x86_64-vhd-empty b/test/data/manifest-checksums/rhel_10.1-x86_64-vhd-empty new file mode 100644 index 0000000000..a58210f8e8 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.1-x86_64-vhd-empty @@ -0,0 +1 @@ +953811738ab53366ae52dd87eb4448717e7f0387 diff --git a/test/data/manifest-checksums/rhel_10.1-x86_64-vhd-jq_only b/test/data/manifest-checksums/rhel_10.1-x86_64-vhd-jq_only deleted file mode 100644 index 8903043c57..0000000000 --- a/test/data/manifest-checksums/rhel_10.1-x86_64-vhd-jq_only +++ /dev/null @@ -1 +0,0 @@ -76ad2b8817b5c2988b09d667c0b095a1ea8a29fd diff --git a/test/data/manifest-checksums/rhel_10.1-x86_64-vmdk-empty b/test/data/manifest-checksums/rhel_10.1-x86_64-vmdk-empty new file mode 100644 index 0000000000..5d3adf783a --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.1-x86_64-vmdk-empty @@ -0,0 +1 @@ +27a76c2b6cc3936b740a82f0ebb7c211ab30df57 diff --git a/test/data/manifest-checksums/rhel_10.1-x86_64-vmdk-jq_only b/test/data/manifest-checksums/rhel_10.1-x86_64-vmdk-jq_only deleted file mode 100644 index 3fa79e59dd..0000000000 --- a/test/data/manifest-checksums/rhel_10.1-x86_64-vmdk-jq_only +++ /dev/null @@ -1 +0,0 @@ -ab265a2928943f3fc3140893ce9e0fc94d0ec867 diff --git a/test/data/manifest-checksums/rhel_10.1-x86_64-wsl-empty b/test/data/manifest-checksums/rhel_10.1-x86_64-wsl-empty new file mode 100644 index 0000000000..09243a1fcf --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.1-x86_64-wsl-empty @@ -0,0 +1 @@ +2ce4c6f6c426c7755953084696c78a5e566eee28 diff --git a/test/data/manifest-checksums/rhel_10.1-x86_64-wsl-jq_only b/test/data/manifest-checksums/rhel_10.1-x86_64-wsl-jq_only deleted file mode 100644 index 50d6f68d83..0000000000 --- a/test/data/manifest-checksums/rhel_10.1-x86_64-wsl-jq_only +++ /dev/null @@ -1 +0,0 @@ -f94a161ab6d7f16f63c1c4f56aecef3dcb9df4e7 diff --git a/test/data/manifest-checksums/rhel_10.2-aarch64-ami-all_customizations b/test/data/manifest-checksums/rhel_10.2-aarch64-ami-all_customizations index 3d89fcf630..f3972ce779 100644 --- a/test/data/manifest-checksums/rhel_10.2-aarch64-ami-all_customizations +++ b/test/data/manifest-checksums/rhel_10.2-aarch64-ami-all_customizations @@ -1 +1 @@ -07a6bfa6a015ad962d5deaf43f86335ffa346571 +1e1da6fa2c0e757822cbcc717373a4157aeaef03 diff --git a/test/data/manifest-checksums/rhel_10.2-aarch64-ami-empty b/test/data/manifest-checksums/rhel_10.2-aarch64-ami-empty new file mode 100644 index 0000000000..308e0612e8 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.2-aarch64-ami-empty @@ -0,0 +1 @@ +2a5315d90afdb53b1ea8bf4d570cfba8195e0d1a diff --git a/test/data/manifest-checksums/rhel_10.2-aarch64-ami-jq_only b/test/data/manifest-checksums/rhel_10.2-aarch64-ami-jq_only deleted file mode 100644 index 0ac3a3f3ad..0000000000 --- a/test/data/manifest-checksums/rhel_10.2-aarch64-ami-jq_only +++ /dev/null @@ -1 +0,0 @@ -ba2c658788d50707618af4a73bb263f87d9a0660 diff --git a/test/data/manifest-checksums/rhel_10.2-aarch64-ami-partitioning_lvm b/test/data/manifest-checksums/rhel_10.2-aarch64-ami-partitioning_lvm index 2bff572509..017aea4134 100644 --- a/test/data/manifest-checksums/rhel_10.2-aarch64-ami-partitioning_lvm +++ b/test/data/manifest-checksums/rhel_10.2-aarch64-ami-partitioning_lvm @@ -1 +1 @@ -30535d0c0b598103da3b4340232827f5e6e9bcc9 +4649c234e736ee93183b2c1fa59c17d075c5eede diff --git a/test/data/manifest-checksums/rhel_10.2-aarch64-ami-partitioning_plain b/test/data/manifest-checksums/rhel_10.2-aarch64-ami-partitioning_plain index 6fbab539b2..1fcab837ae 100644 --- a/test/data/manifest-checksums/rhel_10.2-aarch64-ami-partitioning_plain +++ b/test/data/manifest-checksums/rhel_10.2-aarch64-ami-partitioning_plain @@ -1 +1 @@ -7b549ed87714fcddfbd288da61e03d7551a9958a +b8175670ac573083254c65c357f0c3c226055ac6 diff --git a/test/data/manifest-checksums/rhel_10.2-aarch64-azure_rhui-empty b/test/data/manifest-checksums/rhel_10.2-aarch64-azure_rhui-empty new file mode 100644 index 0000000000..02054c4ae0 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.2-aarch64-azure_rhui-empty @@ -0,0 +1 @@ +8d1c561cdff96260a044b7c5d71f78c699c71b0c diff --git a/test/data/manifest-checksums/rhel_10.2-aarch64-azure_rhui-jq_only b/test/data/manifest-checksums/rhel_10.2-aarch64-azure_rhui-jq_only deleted file mode 100644 index 94b2adcb54..0000000000 --- a/test/data/manifest-checksums/rhel_10.2-aarch64-azure_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -53a1761dca4105d9a7c66f303c40914623fa9a61 diff --git a/test/data/manifest-checksums/rhel_10.2-aarch64-ec2-empty b/test/data/manifest-checksums/rhel_10.2-aarch64-ec2-empty new file mode 100644 index 0000000000..25c202dcb6 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.2-aarch64-ec2-empty @@ -0,0 +1 @@ +e0f01ac4001077cfba100ad4973de43f2aecd5a7 diff --git a/test/data/manifest-checksums/rhel_10.2-aarch64-ec2-jq_only b/test/data/manifest-checksums/rhel_10.2-aarch64-ec2-jq_only deleted file mode 100644 index fcbabc6c28..0000000000 --- a/test/data/manifest-checksums/rhel_10.2-aarch64-ec2-jq_only +++ /dev/null @@ -1 +0,0 @@ -80a8a6688e04921ea7cf65b3cc0ab81b66238aa8 diff --git a/test/data/manifest-checksums/rhel_10.2-aarch64-image_installer-empty b/test/data/manifest-checksums/rhel_10.2-aarch64-image_installer-empty new file mode 100644 index 0000000000..f0604c1867 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.2-aarch64-image_installer-empty @@ -0,0 +1 @@ +4987e274e016060eb7688afcc5f86aad7e39bab8 diff --git a/test/data/manifest-checksums/rhel_10.2-aarch64-image_installer-jq_only b/test/data/manifest-checksums/rhel_10.2-aarch64-image_installer-jq_only deleted file mode 100644 index f92bcebaf2..0000000000 --- a/test/data/manifest-checksums/rhel_10.2-aarch64-image_installer-jq_only +++ /dev/null @@ -1 +0,0 @@ -d5ef2209b3667155b214794b04f4a808b1428ebc diff --git a/test/data/manifest-checksums/rhel_10.2-aarch64-pxe_tar_xz-empty b/test/data/manifest-checksums/rhel_10.2-aarch64-pxe_tar_xz-empty new file mode 100644 index 0000000000..201dc08315 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.2-aarch64-pxe_tar_xz-empty @@ -0,0 +1 @@ +856cd06bed8de7b7a6d681aaf0c645c34b183773 diff --git a/test/data/manifest-checksums/rhel_10.2-aarch64-pxe_tar_xz-jq_only b/test/data/manifest-checksums/rhel_10.2-aarch64-pxe_tar_xz-jq_only deleted file mode 100644 index 8a941000f4..0000000000 --- a/test/data/manifest-checksums/rhel_10.2-aarch64-pxe_tar_xz-jq_only +++ /dev/null @@ -1 +0,0 @@ -324fce75589c47ffb3d7cd23b353552082865c34 diff --git a/test/data/manifest-checksums/rhel_10.2-aarch64-qcow2-empty b/test/data/manifest-checksums/rhel_10.2-aarch64-qcow2-empty new file mode 100644 index 0000000000..24145281fa --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.2-aarch64-qcow2-empty @@ -0,0 +1 @@ +35971b7a89fa46960980b97f0baab4bed215486f diff --git a/test/data/manifest-checksums/rhel_10.2-aarch64-qcow2-jq_only b/test/data/manifest-checksums/rhel_10.2-aarch64-qcow2-jq_only deleted file mode 100644 index 8546e203dc..0000000000 --- a/test/data/manifest-checksums/rhel_10.2-aarch64-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -109404a7ea750d87033c4a94c09efe27a2579dee diff --git a/test/data/manifest-checksums/rhel_10.2-aarch64-tar-empty b/test/data/manifest-checksums/rhel_10.2-aarch64-tar-empty new file mode 100644 index 0000000000..1c7e592ddd --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.2-aarch64-tar-empty @@ -0,0 +1 @@ +30429ef44391c0ff8319a1e2b507d53ba8051fcb diff --git a/test/data/manifest-checksums/rhel_10.2-aarch64-tar-jq_only b/test/data/manifest-checksums/rhel_10.2-aarch64-tar-jq_only deleted file mode 100644 index a25caf3d62..0000000000 --- a/test/data/manifest-checksums/rhel_10.2-aarch64-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -48b1c331232016f5246e282a004c31b8ed1e31f3 diff --git a/test/data/manifest-checksums/rhel_10.2-aarch64-vagrant_libvirt-empty b/test/data/manifest-checksums/rhel_10.2-aarch64-vagrant_libvirt-empty new file mode 100644 index 0000000000..544f50975b --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.2-aarch64-vagrant_libvirt-empty @@ -0,0 +1 @@ +3586e0ca5736c1aa65ee7179ca26704624e30afc diff --git a/test/data/manifest-checksums/rhel_10.2-aarch64-vagrant_libvirt-jq_only b/test/data/manifest-checksums/rhel_10.2-aarch64-vagrant_libvirt-jq_only deleted file mode 100644 index 07fd4c93ad..0000000000 --- a/test/data/manifest-checksums/rhel_10.2-aarch64-vagrant_libvirt-jq_only +++ /dev/null @@ -1 +0,0 @@ -eef32d878ddce978536cd83547bd41ab7bf6eb0e diff --git a/test/data/manifest-checksums/rhel_10.2-aarch64-vhd-empty b/test/data/manifest-checksums/rhel_10.2-aarch64-vhd-empty new file mode 100644 index 0000000000..c399ac4212 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.2-aarch64-vhd-empty @@ -0,0 +1 @@ +deefe5a5c396b762a56a56fa7cc6a569ecf053df diff --git a/test/data/manifest-checksums/rhel_10.2-aarch64-vhd-jq_only b/test/data/manifest-checksums/rhel_10.2-aarch64-vhd-jq_only deleted file mode 100644 index a0948eec20..0000000000 --- a/test/data/manifest-checksums/rhel_10.2-aarch64-vhd-jq_only +++ /dev/null @@ -1 +0,0 @@ -14d74b1eb21568717f0dcf3409482e97ca1ce866 diff --git a/test/data/manifest-checksums/rhel_10.2-aarch64-wsl-empty b/test/data/manifest-checksums/rhel_10.2-aarch64-wsl-empty new file mode 100644 index 0000000000..7224701d88 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.2-aarch64-wsl-empty @@ -0,0 +1 @@ +893057a74698f726cd557a905d74e299037445a0 diff --git a/test/data/manifest-checksums/rhel_10.2-aarch64-wsl-jq_only b/test/data/manifest-checksums/rhel_10.2-aarch64-wsl-jq_only deleted file mode 100644 index b341759820..0000000000 --- a/test/data/manifest-checksums/rhel_10.2-aarch64-wsl-jq_only +++ /dev/null @@ -1 +0,0 @@ -92f23e58d94c6ebecf6a5203a555da6e0741e4a4 diff --git a/test/data/manifest-checksums/rhel_10.2-ppc64le-qcow2-empty b/test/data/manifest-checksums/rhel_10.2-ppc64le-qcow2-empty new file mode 100644 index 0000000000..7c86ef2ad8 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.2-ppc64le-qcow2-empty @@ -0,0 +1 @@ +70fe4c76959415858cb7ca740c19df95b1ee7c29 diff --git a/test/data/manifest-checksums/rhel_10.2-ppc64le-qcow2-jq_only b/test/data/manifest-checksums/rhel_10.2-ppc64le-qcow2-jq_only deleted file mode 100644 index 1c5fba44bb..0000000000 --- a/test/data/manifest-checksums/rhel_10.2-ppc64le-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -f288f7addae33bcf5998b22a4aa22929ad1c517e diff --git a/test/data/manifest-checksums/rhel_10.2-ppc64le-tar-empty b/test/data/manifest-checksums/rhel_10.2-ppc64le-tar-empty new file mode 100644 index 0000000000..3e7f64cba0 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.2-ppc64le-tar-empty @@ -0,0 +1 @@ +170b689514a9c114901255d3da3376e5bd13f9da diff --git a/test/data/manifest-checksums/rhel_10.2-ppc64le-tar-jq_only b/test/data/manifest-checksums/rhel_10.2-ppc64le-tar-jq_only deleted file mode 100644 index a07a0640cb..0000000000 --- a/test/data/manifest-checksums/rhel_10.2-ppc64le-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -82c006e504fd37abc80a42cc8bbe9513a821637f diff --git a/test/data/manifest-checksums/rhel_10.2-s390x-qcow2-empty b/test/data/manifest-checksums/rhel_10.2-s390x-qcow2-empty new file mode 100644 index 0000000000..5f26cdcc00 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.2-s390x-qcow2-empty @@ -0,0 +1 @@ +719631bac547aa86c695610dbdc695ce9b836405 diff --git a/test/data/manifest-checksums/rhel_10.2-s390x-qcow2-jq_only b/test/data/manifest-checksums/rhel_10.2-s390x-qcow2-jq_only deleted file mode 100644 index 84f743ccc1..0000000000 --- a/test/data/manifest-checksums/rhel_10.2-s390x-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -05f6a2bd9ec02431781e82d6c51ff5761250553a diff --git a/test/data/manifest-checksums/rhel_10.2-s390x-tar-empty b/test/data/manifest-checksums/rhel_10.2-s390x-tar-empty new file mode 100644 index 0000000000..a5002b90f9 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.2-s390x-tar-empty @@ -0,0 +1 @@ +e9cd6d71119c2982922d5bf5899ec36a54742394 diff --git a/test/data/manifest-checksums/rhel_10.2-s390x-tar-jq_only b/test/data/manifest-checksums/rhel_10.2-s390x-tar-jq_only deleted file mode 100644 index 2d4cd23393..0000000000 --- a/test/data/manifest-checksums/rhel_10.2-s390x-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -d6f6f1fc7e8605a95a4fb6e19190bcd22121cf77 diff --git a/test/data/manifest-checksums/rhel_10.2-x86_64-ami-all_customizations b/test/data/manifest-checksums/rhel_10.2-x86_64-ami-all_customizations index 99030926bc..0e19e4eeba 100644 --- a/test/data/manifest-checksums/rhel_10.2-x86_64-ami-all_customizations +++ b/test/data/manifest-checksums/rhel_10.2-x86_64-ami-all_customizations @@ -1 +1 @@ -1757f9783c1b106abab8c8ed682bb3827cb9598d +240ffa422ad3cbc95f8485b5bb5c223def0a3974 diff --git a/test/data/manifest-checksums/rhel_10.2-x86_64-ami-empty b/test/data/manifest-checksums/rhel_10.2-x86_64-ami-empty new file mode 100644 index 0000000000..d02dcfe2fc --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.2-x86_64-ami-empty @@ -0,0 +1 @@ +19f72cb453eab9c47283d30e43f44d4c5c54fbbf diff --git a/test/data/manifest-checksums/rhel_10.2-x86_64-ami-jq_only b/test/data/manifest-checksums/rhel_10.2-x86_64-ami-jq_only deleted file mode 100644 index 9e4d196974..0000000000 --- a/test/data/manifest-checksums/rhel_10.2-x86_64-ami-jq_only +++ /dev/null @@ -1 +0,0 @@ -1bfbd1594834b0ef3340879859dc91280afa387a diff --git a/test/data/manifest-checksums/rhel_10.2-x86_64-ami-partitioning_lvm b/test/data/manifest-checksums/rhel_10.2-x86_64-ami-partitioning_lvm index daad2be3b4..b07dc32f28 100644 --- a/test/data/manifest-checksums/rhel_10.2-x86_64-ami-partitioning_lvm +++ b/test/data/manifest-checksums/rhel_10.2-x86_64-ami-partitioning_lvm @@ -1 +1 @@ -563df1d1b6ea5e0c757781313c125df525ad4609 +46fdb10468cd43de1a959d5aceaf739e705d5541 diff --git a/test/data/manifest-checksums/rhel_10.2-x86_64-ami-partitioning_plain b/test/data/manifest-checksums/rhel_10.2-x86_64-ami-partitioning_plain index 4c663335ce..d354d6deaf 100644 --- a/test/data/manifest-checksums/rhel_10.2-x86_64-ami-partitioning_plain +++ b/test/data/manifest-checksums/rhel_10.2-x86_64-ami-partitioning_plain @@ -1 +1 @@ -f7274bc4b914c14b9dfe9d275d6320efdd319c6d +db958026e87ac0bf2cec710dd1ac6f106b4de9e3 diff --git a/test/data/manifest-checksums/rhel_10.2-x86_64-azure_cvm-empty b/test/data/manifest-checksums/rhel_10.2-x86_64-azure_cvm-empty new file mode 100644 index 0000000000..5853454478 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.2-x86_64-azure_cvm-empty @@ -0,0 +1 @@ +0e235cc3d3fc1b3dec940bcfec4a43f6a24c6c38 diff --git a/test/data/manifest-checksums/rhel_10.2-x86_64-azure_cvm-jq_only b/test/data/manifest-checksums/rhel_10.2-x86_64-azure_cvm-jq_only deleted file mode 100644 index 6756340add..0000000000 --- a/test/data/manifest-checksums/rhel_10.2-x86_64-azure_cvm-jq_only +++ /dev/null @@ -1 +0,0 @@ -6b9c23fbc82bafc43c63884cd0d0b6728874b665 diff --git a/test/data/manifest-checksums/rhel_10.2-x86_64-azure_rhui-empty b/test/data/manifest-checksums/rhel_10.2-x86_64-azure_rhui-empty new file mode 100644 index 0000000000..7bbba007cc --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.2-x86_64-azure_rhui-empty @@ -0,0 +1 @@ +e62e76a65b5f1305f79237017b7653422da69fd6 diff --git a/test/data/manifest-checksums/rhel_10.2-x86_64-azure_rhui-jq_only b/test/data/manifest-checksums/rhel_10.2-x86_64-azure_rhui-jq_only deleted file mode 100644 index 815ec62f81..0000000000 --- a/test/data/manifest-checksums/rhel_10.2-x86_64-azure_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -466eb3c68978f0f030e22e93ed7d664118514996 diff --git a/test/data/manifest-checksums/rhel_10.2-x86_64-azure_sap_rhui-empty b/test/data/manifest-checksums/rhel_10.2-x86_64-azure_sap_rhui-empty new file mode 100644 index 0000000000..5569259551 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.2-x86_64-azure_sap_rhui-empty @@ -0,0 +1 @@ +c378e6a78af4ab26863bf7de9a98db354c4208b0 diff --git a/test/data/manifest-checksums/rhel_10.2-x86_64-azure_sap_rhui-jq_only b/test/data/manifest-checksums/rhel_10.2-x86_64-azure_sap_rhui-jq_only deleted file mode 100644 index 1dfc8cb6af..0000000000 --- a/test/data/manifest-checksums/rhel_10.2-x86_64-azure_sap_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -6058263ddb43521a1beb76cbf72216db69715ee3 diff --git a/test/data/manifest-checksums/rhel_10.2-x86_64-azure_sapapps_rhui-empty b/test/data/manifest-checksums/rhel_10.2-x86_64-azure_sapapps_rhui-empty new file mode 100644 index 0000000000..841fb47b4c --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.2-x86_64-azure_sapapps_rhui-empty @@ -0,0 +1 @@ +59e8ffc3441d99f752cb54e2a41fbc235c58d27d diff --git a/test/data/manifest-checksums/rhel_10.2-x86_64-azure_sapapps_rhui-jq_only b/test/data/manifest-checksums/rhel_10.2-x86_64-azure_sapapps_rhui-jq_only deleted file mode 100644 index f5f9dff649..0000000000 --- a/test/data/manifest-checksums/rhel_10.2-x86_64-azure_sapapps_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -b2636b5938200e142fd83dda288d96dd0c9c1ca3 diff --git a/test/data/manifest-checksums/rhel_10.2-x86_64-ec2-empty b/test/data/manifest-checksums/rhel_10.2-x86_64-ec2-empty new file mode 100644 index 0000000000..16da866316 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.2-x86_64-ec2-empty @@ -0,0 +1 @@ +44c4d7d46b51262c1d216b31561aaee381b8e249 diff --git a/test/data/manifest-checksums/rhel_10.2-x86_64-ec2-jq_only b/test/data/manifest-checksums/rhel_10.2-x86_64-ec2-jq_only deleted file mode 100644 index 2c2425006f..0000000000 --- a/test/data/manifest-checksums/rhel_10.2-x86_64-ec2-jq_only +++ /dev/null @@ -1 +0,0 @@ -5ffc59be8b9a8e4127f33dc51091b8443b59543d diff --git a/test/data/manifest-checksums/rhel_10.2-x86_64-ec2_ha-empty b/test/data/manifest-checksums/rhel_10.2-x86_64-ec2_ha-empty new file mode 100644 index 0000000000..00f135653f --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.2-x86_64-ec2_ha-empty @@ -0,0 +1 @@ +f32408f734af370db5b346f86a008ec8eb33d158 diff --git a/test/data/manifest-checksums/rhel_10.2-x86_64-ec2_ha-jq_only b/test/data/manifest-checksums/rhel_10.2-x86_64-ec2_ha-jq_only deleted file mode 100644 index 69b63414f5..0000000000 --- a/test/data/manifest-checksums/rhel_10.2-x86_64-ec2_ha-jq_only +++ /dev/null @@ -1 +0,0 @@ -50859cd788843043a68ffb55d1ca539962d071f2 diff --git a/test/data/manifest-checksums/rhel_10.2-x86_64-gce-empty b/test/data/manifest-checksums/rhel_10.2-x86_64-gce-empty new file mode 100644 index 0000000000..3b52f84c43 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.2-x86_64-gce-empty @@ -0,0 +1 @@ +121099c9a3602276e8803da883b0091421428f3b diff --git a/test/data/manifest-checksums/rhel_10.2-x86_64-gce-jq_only b/test/data/manifest-checksums/rhel_10.2-x86_64-gce-jq_only deleted file mode 100644 index a63827ed04..0000000000 --- a/test/data/manifest-checksums/rhel_10.2-x86_64-gce-jq_only +++ /dev/null @@ -1 +0,0 @@ -a97b387e5c05b5102f65d40ad6759fee4e413758 diff --git a/test/data/manifest-checksums/rhel_10.2-x86_64-image_installer-empty b/test/data/manifest-checksums/rhel_10.2-x86_64-image_installer-empty new file mode 100644 index 0000000000..c77b5a0bd0 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.2-x86_64-image_installer-empty @@ -0,0 +1 @@ +126dadd18d6eaa9ee858578e90da24ece7bdb7e4 diff --git a/test/data/manifest-checksums/rhel_10.2-x86_64-image_installer-jq_only b/test/data/manifest-checksums/rhel_10.2-x86_64-image_installer-jq_only deleted file mode 100644 index aa92a2b621..0000000000 --- a/test/data/manifest-checksums/rhel_10.2-x86_64-image_installer-jq_only +++ /dev/null @@ -1 +0,0 @@ -ffb78d9a38735c65609d0495b4955aa71d37a930 diff --git a/test/data/manifest-checksums/rhel_10.2-x86_64-oci-empty b/test/data/manifest-checksums/rhel_10.2-x86_64-oci-empty new file mode 100644 index 0000000000..4b8445251f --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.2-x86_64-oci-empty @@ -0,0 +1 @@ +4112d71abdfd0c210b907c415615270dc03766cf diff --git a/test/data/manifest-checksums/rhel_10.2-x86_64-oci-jq_only b/test/data/manifest-checksums/rhel_10.2-x86_64-oci-jq_only deleted file mode 100644 index 7b8dcda447..0000000000 --- a/test/data/manifest-checksums/rhel_10.2-x86_64-oci-jq_only +++ /dev/null @@ -1 +0,0 @@ -d5e6101e92a7ca75be22c8b6e29a6be80d263c07 diff --git a/test/data/manifest-checksums/rhel_10.2-x86_64-ova-empty b/test/data/manifest-checksums/rhel_10.2-x86_64-ova-empty new file mode 100644 index 0000000000..f603fc25c5 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.2-x86_64-ova-empty @@ -0,0 +1 @@ +82712ed724f0bf9100871bda4000f5e7ca99e5eb diff --git a/test/data/manifest-checksums/rhel_10.2-x86_64-ova-jq_only b/test/data/manifest-checksums/rhel_10.2-x86_64-ova-jq_only deleted file mode 100644 index 33cb1377f5..0000000000 --- a/test/data/manifest-checksums/rhel_10.2-x86_64-ova-jq_only +++ /dev/null @@ -1 +0,0 @@ -da1d1c28e8c56da573c4be5689de3f21255a8012 diff --git a/test/data/manifest-checksums/rhel_10.2-x86_64-pxe_tar_xz-empty b/test/data/manifest-checksums/rhel_10.2-x86_64-pxe_tar_xz-empty new file mode 100644 index 0000000000..660e29fade --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.2-x86_64-pxe_tar_xz-empty @@ -0,0 +1 @@ +32281021fbc470e1b28480415e6801c4070080eb diff --git a/test/data/manifest-checksums/rhel_10.2-x86_64-pxe_tar_xz-jq_only b/test/data/manifest-checksums/rhel_10.2-x86_64-pxe_tar_xz-jq_only deleted file mode 100644 index c3ef08ac5a..0000000000 --- a/test/data/manifest-checksums/rhel_10.2-x86_64-pxe_tar_xz-jq_only +++ /dev/null @@ -1 +0,0 @@ -6d07d9a5fae27e321d4d1a8ae4215a39a5d4e5be diff --git a/test/data/manifest-checksums/rhel_10.2-x86_64-qcow2-empty b/test/data/manifest-checksums/rhel_10.2-x86_64-qcow2-empty new file mode 100644 index 0000000000..4b8445251f --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.2-x86_64-qcow2-empty @@ -0,0 +1 @@ +4112d71abdfd0c210b907c415615270dc03766cf diff --git a/test/data/manifest-checksums/rhel_10.2-x86_64-qcow2-jq_only b/test/data/manifest-checksums/rhel_10.2-x86_64-qcow2-jq_only deleted file mode 100644 index 7b8dcda447..0000000000 --- a/test/data/manifest-checksums/rhel_10.2-x86_64-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -d5e6101e92a7ca75be22c8b6e29a6be80d263c07 diff --git a/test/data/manifest-checksums/rhel_10.2-x86_64-tar-empty b/test/data/manifest-checksums/rhel_10.2-x86_64-tar-empty new file mode 100644 index 0000000000..b5ddc9c21c --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.2-x86_64-tar-empty @@ -0,0 +1 @@ +289553f4efd07f0c3112d81d2698ad92f7e543d8 diff --git a/test/data/manifest-checksums/rhel_10.2-x86_64-tar-jq_only b/test/data/manifest-checksums/rhel_10.2-x86_64-tar-jq_only deleted file mode 100644 index b6a693a99a..0000000000 --- a/test/data/manifest-checksums/rhel_10.2-x86_64-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -8b981894adf98d63677f516639969f43f7afcf66 diff --git a/test/data/manifest-checksums/rhel_10.2-x86_64-vagrant_libvirt-empty b/test/data/manifest-checksums/rhel_10.2-x86_64-vagrant_libvirt-empty new file mode 100644 index 0000000000..9bb3fafb37 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.2-x86_64-vagrant_libvirt-empty @@ -0,0 +1 @@ +28d7b42eecfcb2e476ca8fb60714a14521a8685c diff --git a/test/data/manifest-checksums/rhel_10.2-x86_64-vagrant_libvirt-jq_only b/test/data/manifest-checksums/rhel_10.2-x86_64-vagrant_libvirt-jq_only deleted file mode 100644 index 1937a9057c..0000000000 --- a/test/data/manifest-checksums/rhel_10.2-x86_64-vagrant_libvirt-jq_only +++ /dev/null @@ -1 +0,0 @@ -85041e56e397fc7c4fd18eef0f302a2b306b1649 diff --git a/test/data/manifest-checksums/rhel_10.2-x86_64-vagrant_virtualbox-empty b/test/data/manifest-checksums/rhel_10.2-x86_64-vagrant_virtualbox-empty new file mode 100644 index 0000000000..34d091e14a --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.2-x86_64-vagrant_virtualbox-empty @@ -0,0 +1 @@ +a474fc28eb41376a0d5fec98b0ddfa2d105e7afd diff --git a/test/data/manifest-checksums/rhel_10.2-x86_64-vagrant_virtualbox-jq_only b/test/data/manifest-checksums/rhel_10.2-x86_64-vagrant_virtualbox-jq_only deleted file mode 100644 index 398a4e29dc..0000000000 --- a/test/data/manifest-checksums/rhel_10.2-x86_64-vagrant_virtualbox-jq_only +++ /dev/null @@ -1 +0,0 @@ -f59f469d7f1be28bd354c10b8d19332bbd4a3e12 diff --git a/test/data/manifest-checksums/rhel_10.2-x86_64-vhd-empty b/test/data/manifest-checksums/rhel_10.2-x86_64-vhd-empty new file mode 100644 index 0000000000..1d548b5ed1 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.2-x86_64-vhd-empty @@ -0,0 +1 @@ +3cd51fcb44dc0b638ca857a8bff06a7fa5eac4a0 diff --git a/test/data/manifest-checksums/rhel_10.2-x86_64-vhd-jq_only b/test/data/manifest-checksums/rhel_10.2-x86_64-vhd-jq_only deleted file mode 100644 index 154466f598..0000000000 --- a/test/data/manifest-checksums/rhel_10.2-x86_64-vhd-jq_only +++ /dev/null @@ -1 +0,0 @@ -c6923ccdb45fda96b02bf014512f3978bce5d555 diff --git a/test/data/manifest-checksums/rhel_10.2-x86_64-vmdk-empty b/test/data/manifest-checksums/rhel_10.2-x86_64-vmdk-empty new file mode 100644 index 0000000000..47abed2e6c --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.2-x86_64-vmdk-empty @@ -0,0 +1 @@ +aa2fb9a18d427a6f7bf7456b7b604a6a820ec668 diff --git a/test/data/manifest-checksums/rhel_10.2-x86_64-vmdk-jq_only b/test/data/manifest-checksums/rhel_10.2-x86_64-vmdk-jq_only deleted file mode 100644 index c8de85114b..0000000000 --- a/test/data/manifest-checksums/rhel_10.2-x86_64-vmdk-jq_only +++ /dev/null @@ -1 +0,0 @@ -0d0b6d3cf5905ecd16521ac20526d9159e527696 diff --git a/test/data/manifest-checksums/rhel_10.2-x86_64-wsl-empty b/test/data/manifest-checksums/rhel_10.2-x86_64-wsl-empty new file mode 100644 index 0000000000..e2e3389591 --- /dev/null +++ b/test/data/manifest-checksums/rhel_10.2-x86_64-wsl-empty @@ -0,0 +1 @@ +5f8a1db06bf07b91508de17a5daa687aac4d4852 diff --git a/test/data/manifest-checksums/rhel_10.2-x86_64-wsl-jq_only b/test/data/manifest-checksums/rhel_10.2-x86_64-wsl-jq_only deleted file mode 100644 index a00ab1db50..0000000000 --- a/test/data/manifest-checksums/rhel_10.2-x86_64-wsl-jq_only +++ /dev/null @@ -1 +0,0 @@ -3165b5e47469381a72b3c9cc70b3c128db629847 diff --git a/test/data/manifest-checksums/rhel_8.10-aarch64-ami-all_customizations b/test/data/manifest-checksums/rhel_8.10-aarch64-ami-all_customizations index 7fb92800f7..6ee73503ba 100644 --- a/test/data/manifest-checksums/rhel_8.10-aarch64-ami-all_customizations +++ b/test/data/manifest-checksums/rhel_8.10-aarch64-ami-all_customizations @@ -1 +1 @@ -04e4e1bac3fbbfde9672b85ea038538de6677c38 +85548b4dda90d0c565552c10287e7e6abe66afae diff --git a/test/data/manifest-checksums/rhel_8.10-aarch64-ami-empty b/test/data/manifest-checksums/rhel_8.10-aarch64-ami-empty new file mode 100644 index 0000000000..7bf75ffba2 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.10-aarch64-ami-empty @@ -0,0 +1 @@ +da03998fbe2b591832d9a192dcad0f13622bd01b diff --git a/test/data/manifest-checksums/rhel_8.10-aarch64-ami-file_customizations b/test/data/manifest-checksums/rhel_8.10-aarch64-ami-file_customizations index e67b02d62b..ef5a7e3ded 100644 --- a/test/data/manifest-checksums/rhel_8.10-aarch64-ami-file_customizations +++ b/test/data/manifest-checksums/rhel_8.10-aarch64-ami-file_customizations @@ -1 +1 @@ -89a0cfea51e1142eef7bfbeddaf4fc0481367dca +56661d468d0eb374c58040a033baef27abd201c2 diff --git a/test/data/manifest-checksums/rhel_8.10-aarch64-ami-jq_only b/test/data/manifest-checksums/rhel_8.10-aarch64-ami-jq_only deleted file mode 100644 index 37bfe5c983..0000000000 --- a/test/data/manifest-checksums/rhel_8.10-aarch64-ami-jq_only +++ /dev/null @@ -1 +0,0 @@ -6cdc8e4a9972c621d406eaebb58c5f7038938712 diff --git a/test/data/manifest-checksums/rhel_8.10-aarch64-ami-oscap_rhel8 b/test/data/manifest-checksums/rhel_8.10-aarch64-ami-oscap_rhel8 index 0009fdfa90..f6c1897f15 100644 --- a/test/data/manifest-checksums/rhel_8.10-aarch64-ami-oscap_rhel8 +++ b/test/data/manifest-checksums/rhel_8.10-aarch64-ami-oscap_rhel8 @@ -1 +1 @@ -8e57580d1eef6f4acf26576c5ae54124a67a86ca +d766c1bf9ab0c163ce4aee9f442070ece12d96d2 diff --git a/test/data/manifest-checksums/rhel_8.10-aarch64-ami-partitioning_lvm_noswap b/test/data/manifest-checksums/rhel_8.10-aarch64-ami-partitioning_lvm_noswap index d404b7bc59..93780b2fc2 100644 --- a/test/data/manifest-checksums/rhel_8.10-aarch64-ami-partitioning_lvm_noswap +++ b/test/data/manifest-checksums/rhel_8.10-aarch64-ami-partitioning_lvm_noswap @@ -1 +1 @@ -bafb41b24b9e0b551a88d80de6b216e9b1e21954 +0f44033765580c8c7d5ca8d87345ab98fba87724 diff --git a/test/data/manifest-checksums/rhel_8.10-aarch64-azure_rhui-empty b/test/data/manifest-checksums/rhel_8.10-aarch64-azure_rhui-empty new file mode 100644 index 0000000000..58c421b82d --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.10-aarch64-azure_rhui-empty @@ -0,0 +1 @@ +9310237a6538ddf7a0bfc9bd3adedb3d05c4c642 diff --git a/test/data/manifest-checksums/rhel_8.10-aarch64-azure_rhui-jq_only b/test/data/manifest-checksums/rhel_8.10-aarch64-azure_rhui-jq_only deleted file mode 100644 index 847aef791b..0000000000 --- a/test/data/manifest-checksums/rhel_8.10-aarch64-azure_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -fc4bf83127da05d8c0de4c97caafef46e49c7114 diff --git a/test/data/manifest-checksums/rhel_8.10-aarch64-ec2-empty b/test/data/manifest-checksums/rhel_8.10-aarch64-ec2-empty new file mode 100644 index 0000000000..1d7c48a618 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.10-aarch64-ec2-empty @@ -0,0 +1 @@ +4db20128dde3ca4a3130bbc920570a84aba3465b diff --git a/test/data/manifest-checksums/rhel_8.10-aarch64-ec2-jq_only b/test/data/manifest-checksums/rhel_8.10-aarch64-ec2-jq_only deleted file mode 100644 index 3f384c0ed6..0000000000 --- a/test/data/manifest-checksums/rhel_8.10-aarch64-ec2-jq_only +++ /dev/null @@ -1 +0,0 @@ -1e8c3f090ae797dc3f54ed2b508777fabbbdef5b diff --git a/test/data/manifest-checksums/rhel_8.10-aarch64-edge_container-empty b/test/data/manifest-checksums/rhel_8.10-aarch64-edge_container-empty new file mode 100644 index 0000000000..54809072de --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.10-aarch64-edge_container-empty @@ -0,0 +1 @@ +c95e189dcd947cf11bde53b7b155e735f049149e diff --git a/test/data/manifest-checksums/rhel_8.10-aarch64-edge_container-jq_only b/test/data/manifest-checksums/rhel_8.10-aarch64-edge_container-jq_only deleted file mode 100644 index afeb961e0b..0000000000 --- a/test/data/manifest-checksums/rhel_8.10-aarch64-edge_container-jq_only +++ /dev/null @@ -1 +0,0 @@ -669eb0f8013cd9668a92ffc2137beb06ff8e190a diff --git a/test/data/manifest-checksums/rhel_8.10-aarch64-image_installer-empty b/test/data/manifest-checksums/rhel_8.10-aarch64-image_installer-empty new file mode 100644 index 0000000000..03323eb8b3 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.10-aarch64-image_installer-empty @@ -0,0 +1 @@ +8b727cce04c174ded6917b77af10a9670e760367 diff --git a/test/data/manifest-checksums/rhel_8.10-aarch64-image_installer-jq_only b/test/data/manifest-checksums/rhel_8.10-aarch64-image_installer-jq_only deleted file mode 100644 index 06b37e80e4..0000000000 --- a/test/data/manifest-checksums/rhel_8.10-aarch64-image_installer-jq_only +++ /dev/null @@ -1 +0,0 @@ -c56d4151d0deafd24cdd0ceb6da95112571e243b diff --git a/test/data/manifest-checksums/rhel_8.10-aarch64-minimal_raw-empty b/test/data/manifest-checksums/rhel_8.10-aarch64-minimal_raw-empty new file mode 100644 index 0000000000..c631fdc4b5 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.10-aarch64-minimal_raw-empty @@ -0,0 +1 @@ +e79f802ee0ad85b7a0d57523dae687e35912a414 diff --git a/test/data/manifest-checksums/rhel_8.10-aarch64-minimal_raw-jq_only b/test/data/manifest-checksums/rhel_8.10-aarch64-minimal_raw-jq_only deleted file mode 100644 index f709dce03a..0000000000 --- a/test/data/manifest-checksums/rhel_8.10-aarch64-minimal_raw-jq_only +++ /dev/null @@ -1 +0,0 @@ -7e6adc318ed0b4b3fe00f7fa3b274720820340ea diff --git a/test/data/manifest-checksums/rhel_8.10-aarch64-openstack-empty b/test/data/manifest-checksums/rhel_8.10-aarch64-openstack-empty new file mode 100644 index 0000000000..c911a8fbbc --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.10-aarch64-openstack-empty @@ -0,0 +1 @@ +6bf301aa80d31fe62a190008932c51f24e5b9c8d diff --git a/test/data/manifest-checksums/rhel_8.10-aarch64-openstack-jq_only b/test/data/manifest-checksums/rhel_8.10-aarch64-openstack-jq_only deleted file mode 100644 index d8eb607888..0000000000 --- a/test/data/manifest-checksums/rhel_8.10-aarch64-openstack-jq_only +++ /dev/null @@ -1 +0,0 @@ -b7292fe92582855ff28e48d1e09a928376650380 diff --git a/test/data/manifest-checksums/rhel_8.10-aarch64-qcow2-empty b/test/data/manifest-checksums/rhel_8.10-aarch64-qcow2-empty new file mode 100644 index 0000000000..994bcf6186 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.10-aarch64-qcow2-empty @@ -0,0 +1 @@ +26c14bc2726cab47a583a91f7630c045455d3f9d diff --git a/test/data/manifest-checksums/rhel_8.10-aarch64-qcow2-jq_only b/test/data/manifest-checksums/rhel_8.10-aarch64-qcow2-jq_only deleted file mode 100644 index 5011e05b07..0000000000 --- a/test/data/manifest-checksums/rhel_8.10-aarch64-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -9f570a14cfb5bfac2220e82f9d33aaffd85e6887 diff --git a/test/data/manifest-checksums/rhel_8.10-aarch64-qcow2-oscap_generic b/test/data/manifest-checksums/rhel_8.10-aarch64-qcow2-oscap_generic index 30fa021bae..1850b00bfa 100644 --- a/test/data/manifest-checksums/rhel_8.10-aarch64-qcow2-oscap_generic +++ b/test/data/manifest-checksums/rhel_8.10-aarch64-qcow2-oscap_generic @@ -1 +1 @@ -08ca67c289013897ca8b135b03ce6be282a4475c +4778588f42c2668084a896e147977412197ef2c0 diff --git a/test/data/manifest-checksums/rhel_8.10-aarch64-tar-empty b/test/data/manifest-checksums/rhel_8.10-aarch64-tar-empty new file mode 100644 index 0000000000..e0cac817af --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.10-aarch64-tar-empty @@ -0,0 +1 @@ +43889ae9b39dbbb1dda070c50a18af7ec9dc108b diff --git a/test/data/manifest-checksums/rhel_8.10-aarch64-tar-jq_only b/test/data/manifest-checksums/rhel_8.10-aarch64-tar-jq_only deleted file mode 100644 index b46288584b..0000000000 --- a/test/data/manifest-checksums/rhel_8.10-aarch64-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -fd291955cf9f33313f9ab5cb7e74340d7801bc9c diff --git a/test/data/manifest-checksums/rhel_8.10-aarch64-vhd-empty b/test/data/manifest-checksums/rhel_8.10-aarch64-vhd-empty new file mode 100644 index 0000000000..212d7b0ff2 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.10-aarch64-vhd-empty @@ -0,0 +1 @@ +746c1a58ea23941c7183ae7502e56a25ffded53e diff --git a/test/data/manifest-checksums/rhel_8.10-aarch64-vhd-jq_only b/test/data/manifest-checksums/rhel_8.10-aarch64-vhd-jq_only deleted file mode 100644 index 0034539133..0000000000 --- a/test/data/manifest-checksums/rhel_8.10-aarch64-vhd-jq_only +++ /dev/null @@ -1 +0,0 @@ -888a1cbc4a551ed2cf1e6f42602e572258b62605 diff --git a/test/data/manifest-checksums/rhel_8.10-aarch64-wsl-empty b/test/data/manifest-checksums/rhel_8.10-aarch64-wsl-empty new file mode 100644 index 0000000000..7e663dcf02 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.10-aarch64-wsl-empty @@ -0,0 +1 @@ +b5d31b2c1234176085fd895d227debec06a1eae0 diff --git a/test/data/manifest-checksums/rhel_8.10-aarch64-wsl-jq_only b/test/data/manifest-checksums/rhel_8.10-aarch64-wsl-jq_only deleted file mode 100644 index 5c22768fca..0000000000 --- a/test/data/manifest-checksums/rhel_8.10-aarch64-wsl-jq_only +++ /dev/null @@ -1 +0,0 @@ -a5b80dba816fcd732cd1675d047871a3355698eb diff --git a/test/data/manifest-checksums/rhel_8.10-ppc64le-qcow2-empty b/test/data/manifest-checksums/rhel_8.10-ppc64le-qcow2-empty new file mode 100644 index 0000000000..d8a9a87326 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.10-ppc64le-qcow2-empty @@ -0,0 +1 @@ +e606f15aa7a63439ccec8e29bdffbd7ee155946a diff --git a/test/data/manifest-checksums/rhel_8.10-ppc64le-qcow2-jq_only b/test/data/manifest-checksums/rhel_8.10-ppc64le-qcow2-jq_only deleted file mode 100644 index 8fc07051e1..0000000000 --- a/test/data/manifest-checksums/rhel_8.10-ppc64le-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -881a3fd52b79f0cf82a4b857cfe4c0d75778de66 diff --git a/test/data/manifest-checksums/rhel_8.10-ppc64le-qcow2-oscap_generic b/test/data/manifest-checksums/rhel_8.10-ppc64le-qcow2-oscap_generic index f1c0de2f85..71f19acf76 100644 --- a/test/data/manifest-checksums/rhel_8.10-ppc64le-qcow2-oscap_generic +++ b/test/data/manifest-checksums/rhel_8.10-ppc64le-qcow2-oscap_generic @@ -1 +1 @@ -8f5a7587bc359ce251819177cff78f783bf4fc63 +f65629f471d7ffcc539153f9ad3a79500cd4e499 diff --git a/test/data/manifest-checksums/rhel_8.10-ppc64le-tar-empty b/test/data/manifest-checksums/rhel_8.10-ppc64le-tar-empty new file mode 100644 index 0000000000..7b5d9c97ff --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.10-ppc64le-tar-empty @@ -0,0 +1 @@ +d18948ca07111045c80959c4313b431745a0e567 diff --git a/test/data/manifest-checksums/rhel_8.10-ppc64le-tar-jq_only b/test/data/manifest-checksums/rhel_8.10-ppc64le-tar-jq_only deleted file mode 100644 index 6dfe9d7f94..0000000000 --- a/test/data/manifest-checksums/rhel_8.10-ppc64le-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -ed424d2c4a29c6570df7bb5e93365fdafaa09e54 diff --git a/test/data/manifest-checksums/rhel_8.10-s390x-qcow2-empty b/test/data/manifest-checksums/rhel_8.10-s390x-qcow2-empty new file mode 100644 index 0000000000..09fea06f43 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.10-s390x-qcow2-empty @@ -0,0 +1 @@ +42c3212b0785862d09ca2b7cb1421990dbf2bd54 diff --git a/test/data/manifest-checksums/rhel_8.10-s390x-qcow2-jq_only b/test/data/manifest-checksums/rhel_8.10-s390x-qcow2-jq_only deleted file mode 100644 index e520fb1405..0000000000 --- a/test/data/manifest-checksums/rhel_8.10-s390x-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -b01f94ff340bf0c053a575b74a4741fde2fce6d7 diff --git a/test/data/manifest-checksums/rhel_8.10-s390x-qcow2-oscap_generic b/test/data/manifest-checksums/rhel_8.10-s390x-qcow2-oscap_generic index f62c696f68..df4fffae48 100644 --- a/test/data/manifest-checksums/rhel_8.10-s390x-qcow2-oscap_generic +++ b/test/data/manifest-checksums/rhel_8.10-s390x-qcow2-oscap_generic @@ -1 +1 @@ -e3811c0da9e9075daf978813a20bb25d2a0f5071 +c243f0eaabbdd261638c4c5c35ee2080124d9482 diff --git a/test/data/manifest-checksums/rhel_8.10-s390x-tar-empty b/test/data/manifest-checksums/rhel_8.10-s390x-tar-empty new file mode 100644 index 0000000000..ab88cf85bf --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.10-s390x-tar-empty @@ -0,0 +1 @@ +eee055fc1ba4b5ff239742dc17c4c456a74ecd4e diff --git a/test/data/manifest-checksums/rhel_8.10-s390x-tar-jq_only b/test/data/manifest-checksums/rhel_8.10-s390x-tar-jq_only deleted file mode 100644 index 3eb00622ea..0000000000 --- a/test/data/manifest-checksums/rhel_8.10-s390x-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -4b2ef8b3329f19a9fc4ee271cf239f34ab6a3e36 diff --git a/test/data/manifest-checksums/rhel_8.10-x86_64-ami-all_customizations b/test/data/manifest-checksums/rhel_8.10-x86_64-ami-all_customizations index dfe9e0aae8..79b6526336 100644 --- a/test/data/manifest-checksums/rhel_8.10-x86_64-ami-all_customizations +++ b/test/data/manifest-checksums/rhel_8.10-x86_64-ami-all_customizations @@ -1 +1 @@ -7177e6a6b0a7864d4d917bfd0f10076fe8a92bfe +b3563afa5e3ccb855906677a1d81affbd37750b4 diff --git a/test/data/manifest-checksums/rhel_8.10-x86_64-ami-empty b/test/data/manifest-checksums/rhel_8.10-x86_64-ami-empty new file mode 100644 index 0000000000..a53e4bcd3a --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.10-x86_64-ami-empty @@ -0,0 +1 @@ +29a05b1e5052ac4f5503dfecac67361666d773fb diff --git a/test/data/manifest-checksums/rhel_8.10-x86_64-ami-file_customizations b/test/data/manifest-checksums/rhel_8.10-x86_64-ami-file_customizations index 8f0c9b1ed9..26ed58756a 100644 --- a/test/data/manifest-checksums/rhel_8.10-x86_64-ami-file_customizations +++ b/test/data/manifest-checksums/rhel_8.10-x86_64-ami-file_customizations @@ -1 +1 @@ -92e1effa11da22af1df32a53e80c965ff49c746b +824eb1a2dbb35250fe470acb92b26b606afb54de diff --git a/test/data/manifest-checksums/rhel_8.10-x86_64-ami-jq_only b/test/data/manifest-checksums/rhel_8.10-x86_64-ami-jq_only deleted file mode 100644 index 561057e433..0000000000 --- a/test/data/manifest-checksums/rhel_8.10-x86_64-ami-jq_only +++ /dev/null @@ -1 +0,0 @@ -2977fec9acb674c7d302cf4346201be94b47ee65 diff --git a/test/data/manifest-checksums/rhel_8.10-x86_64-ami-oscap_rhel8 b/test/data/manifest-checksums/rhel_8.10-x86_64-ami-oscap_rhel8 index 585d526595..b0cd3d75d5 100644 --- a/test/data/manifest-checksums/rhel_8.10-x86_64-ami-oscap_rhel8 +++ b/test/data/manifest-checksums/rhel_8.10-x86_64-ami-oscap_rhel8 @@ -1 +1 @@ -c4ed9d21f32420278bc683b4e32f05adb4ac5454 +76e533a5d89ce62e2844f0c5f22bae89914e4384 diff --git a/test/data/manifest-checksums/rhel_8.10-x86_64-ami-partitioning_lvm b/test/data/manifest-checksums/rhel_8.10-x86_64-ami-partitioning_lvm index b7060d2dba..7ccf80fe75 100644 --- a/test/data/manifest-checksums/rhel_8.10-x86_64-ami-partitioning_lvm +++ b/test/data/manifest-checksums/rhel_8.10-x86_64-ami-partitioning_lvm @@ -1 +1 @@ -20642de47d0da8334d2ca839ad9df2a5c5707d9f +f29e7b9a122c20a70ce1616b81d4a2c5da7e5290 diff --git a/test/data/manifest-checksums/rhel_8.10-x86_64-ami-partitioning_lvm_noswap b/test/data/manifest-checksums/rhel_8.10-x86_64-ami-partitioning_lvm_noswap index 0fc7d441d1..03b990251c 100644 --- a/test/data/manifest-checksums/rhel_8.10-x86_64-ami-partitioning_lvm_noswap +++ b/test/data/manifest-checksums/rhel_8.10-x86_64-ami-partitioning_lvm_noswap @@ -1 +1 @@ -1ab0d73fbe777b1722940e013da3f9273af8a813 +9211b935fb3ead0b7e8b3ba1fa63b5a2c415ff03 diff --git a/test/data/manifest-checksums/rhel_8.10-x86_64-ami-partitioning_plain b/test/data/manifest-checksums/rhel_8.10-x86_64-ami-partitioning_plain index 3d3c43ac97..cf853a15e6 100644 --- a/test/data/manifest-checksums/rhel_8.10-x86_64-ami-partitioning_plain +++ b/test/data/manifest-checksums/rhel_8.10-x86_64-ami-partitioning_plain @@ -1 +1 @@ -639e327e590422ea1eeb2153cc08d1e378da048d +3afb597d86e842d6c74e44d6b97bcd2ce948d7ef diff --git a/test/data/manifest-checksums/rhel_8.10-x86_64-azure_eap7_rhui-empty b/test/data/manifest-checksums/rhel_8.10-x86_64-azure_eap7_rhui-empty new file mode 100644 index 0000000000..585f39321f --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.10-x86_64-azure_eap7_rhui-empty @@ -0,0 +1 @@ +c46b02c27b2da54b1c38582cba17c58b454dc51b diff --git a/test/data/manifest-checksums/rhel_8.10-x86_64-azure_eap7_rhui-jq_only b/test/data/manifest-checksums/rhel_8.10-x86_64-azure_eap7_rhui-jq_only deleted file mode 100644 index 57f4c29ec8..0000000000 --- a/test/data/manifest-checksums/rhel_8.10-x86_64-azure_eap7_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -99b233d546f0b97169fee7251354c8ebcb1f495f diff --git a/test/data/manifest-checksums/rhel_8.10-x86_64-azure_rhui-empty b/test/data/manifest-checksums/rhel_8.10-x86_64-azure_rhui-empty new file mode 100644 index 0000000000..13a8ce376c --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.10-x86_64-azure_rhui-empty @@ -0,0 +1 @@ +7a3f46aac4f55513708488715e05cb5ba4ea92ef diff --git a/test/data/manifest-checksums/rhel_8.10-x86_64-azure_rhui-jq_only b/test/data/manifest-checksums/rhel_8.10-x86_64-azure_rhui-jq_only deleted file mode 100644 index ecb2b4e9cc..0000000000 --- a/test/data/manifest-checksums/rhel_8.10-x86_64-azure_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -d43cb9be7e315b589c50b74abbb1dd35835e5515 diff --git a/test/data/manifest-checksums/rhel_8.10-x86_64-azure_sap_rhui-empty b/test/data/manifest-checksums/rhel_8.10-x86_64-azure_sap_rhui-empty new file mode 100644 index 0000000000..e002fcd152 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.10-x86_64-azure_sap_rhui-empty @@ -0,0 +1 @@ +eb555cd95b78273d8d2212dbc9ccbb441cfc8e8d diff --git a/test/data/manifest-checksums/rhel_8.10-x86_64-azure_sap_rhui-jq_only b/test/data/manifest-checksums/rhel_8.10-x86_64-azure_sap_rhui-jq_only deleted file mode 100644 index eaac589c6a..0000000000 --- a/test/data/manifest-checksums/rhel_8.10-x86_64-azure_sap_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -e817411e474eb51e84ba381d2069de706d7c6be2 diff --git a/test/data/manifest-checksums/rhel_8.10-x86_64-ec2-empty b/test/data/manifest-checksums/rhel_8.10-x86_64-ec2-empty new file mode 100644 index 0000000000..a99baed520 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.10-x86_64-ec2-empty @@ -0,0 +1 @@ +0a25b89ce31191da1de6ca649053eaedc9187edf diff --git a/test/data/manifest-checksums/rhel_8.10-x86_64-ec2-jq_only b/test/data/manifest-checksums/rhel_8.10-x86_64-ec2-jq_only deleted file mode 100644 index be27739c80..0000000000 --- a/test/data/manifest-checksums/rhel_8.10-x86_64-ec2-jq_only +++ /dev/null @@ -1 +0,0 @@ -febaa22f6257b4023e365610eabd57f9b9d64232 diff --git a/test/data/manifest-checksums/rhel_8.10-x86_64-ec2_ha-empty b/test/data/manifest-checksums/rhel_8.10-x86_64-ec2_ha-empty new file mode 100644 index 0000000000..712a6e3095 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.10-x86_64-ec2_ha-empty @@ -0,0 +1 @@ +0bff0bf7741f98dd154c78fbc4272e42ad82dc17 diff --git a/test/data/manifest-checksums/rhel_8.10-x86_64-ec2_ha-jq_only b/test/data/manifest-checksums/rhel_8.10-x86_64-ec2_ha-jq_only deleted file mode 100644 index e32a2de978..0000000000 --- a/test/data/manifest-checksums/rhel_8.10-x86_64-ec2_ha-jq_only +++ /dev/null @@ -1 +0,0 @@ -5340d98b705f18415f42ae273521679845ed610a diff --git a/test/data/manifest-checksums/rhel_8.10-x86_64-edge_container-empty b/test/data/manifest-checksums/rhel_8.10-x86_64-edge_container-empty new file mode 100644 index 0000000000..9a91af9e20 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.10-x86_64-edge_container-empty @@ -0,0 +1 @@ +5d9e293fe3b033ab54f383d85dcc0f0e1df5cac4 diff --git a/test/data/manifest-checksums/rhel_8.10-x86_64-edge_container-jq_only b/test/data/manifest-checksums/rhel_8.10-x86_64-edge_container-jq_only deleted file mode 100644 index 63b3cb8ac4..0000000000 --- a/test/data/manifest-checksums/rhel_8.10-x86_64-edge_container-jq_only +++ /dev/null @@ -1 +0,0 @@ -4e7c69bf45c7cb173a6410d12fc5fe345b6fab80 diff --git a/test/data/manifest-checksums/rhel_8.10-x86_64-gce-empty b/test/data/manifest-checksums/rhel_8.10-x86_64-gce-empty new file mode 100644 index 0000000000..43e7527bdf --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.10-x86_64-gce-empty @@ -0,0 +1 @@ +d66a196e3fe8fbf1e4a87c9ccab59d380df915d1 diff --git a/test/data/manifest-checksums/rhel_8.10-x86_64-gce-jq_only b/test/data/manifest-checksums/rhel_8.10-x86_64-gce-jq_only deleted file mode 100644 index 689829c6aa..0000000000 --- a/test/data/manifest-checksums/rhel_8.10-x86_64-gce-jq_only +++ /dev/null @@ -1 +0,0 @@ -5ad38d50ff6087020a45f0641a6a49204213e65d diff --git a/test/data/manifest-checksums/rhel_8.10-x86_64-gce_rhui-empty b/test/data/manifest-checksums/rhel_8.10-x86_64-gce_rhui-empty new file mode 100644 index 0000000000..852370ea43 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.10-x86_64-gce_rhui-empty @@ -0,0 +1 @@ +3ad491d4365134683c6aad48b24eefd151fbec4d diff --git a/test/data/manifest-checksums/rhel_8.10-x86_64-gce_rhui-jq_only b/test/data/manifest-checksums/rhel_8.10-x86_64-gce_rhui-jq_only deleted file mode 100644 index 58704b66fa..0000000000 --- a/test/data/manifest-checksums/rhel_8.10-x86_64-gce_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -a7cdfa58a98e526eaae0561ffe06602c96ac31f5 diff --git a/test/data/manifest-checksums/rhel_8.10-x86_64-image_installer-empty b/test/data/manifest-checksums/rhel_8.10-x86_64-image_installer-empty new file mode 100644 index 0000000000..b231c0025a --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.10-x86_64-image_installer-empty @@ -0,0 +1 @@ +73242cce8c154e3d28564dd200c0bf15f62b8267 diff --git a/test/data/manifest-checksums/rhel_8.10-x86_64-image_installer-jq_only b/test/data/manifest-checksums/rhel_8.10-x86_64-image_installer-jq_only deleted file mode 100644 index 802373735c..0000000000 --- a/test/data/manifest-checksums/rhel_8.10-x86_64-image_installer-jq_only +++ /dev/null @@ -1 +0,0 @@ -db977a71818d7789bd37862aff3ee49baa479c4c diff --git a/test/data/manifest-checksums/rhel_8.10-x86_64-minimal_raw-empty b/test/data/manifest-checksums/rhel_8.10-x86_64-minimal_raw-empty new file mode 100644 index 0000000000..20005e86c3 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.10-x86_64-minimal_raw-empty @@ -0,0 +1 @@ +24c20fd738fc43834e6752c86e27ef4efd38dfe6 diff --git a/test/data/manifest-checksums/rhel_8.10-x86_64-minimal_raw-jq_only b/test/data/manifest-checksums/rhel_8.10-x86_64-minimal_raw-jq_only deleted file mode 100644 index a3d234dcfd..0000000000 --- a/test/data/manifest-checksums/rhel_8.10-x86_64-minimal_raw-jq_only +++ /dev/null @@ -1 +0,0 @@ -fd01d8d4c9183c0a74432d3e27892865236c8cbb diff --git a/test/data/manifest-checksums/rhel_8.10-x86_64-oci-empty b/test/data/manifest-checksums/rhel_8.10-x86_64-oci-empty new file mode 100644 index 0000000000..eda877bfc8 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.10-x86_64-oci-empty @@ -0,0 +1 @@ +bf9f06eb7535f8443664e20c2e19c21390c71fba diff --git a/test/data/manifest-checksums/rhel_8.10-x86_64-oci-jq_only b/test/data/manifest-checksums/rhel_8.10-x86_64-oci-jq_only deleted file mode 100644 index 1bf1f0ff2f..0000000000 --- a/test/data/manifest-checksums/rhel_8.10-x86_64-oci-jq_only +++ /dev/null @@ -1 +0,0 @@ -6c9caca6277df00c6a047a22b7114e594c183c95 diff --git a/test/data/manifest-checksums/rhel_8.10-x86_64-openstack-empty b/test/data/manifest-checksums/rhel_8.10-x86_64-openstack-empty new file mode 100644 index 0000000000..a2d95e8eb5 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.10-x86_64-openstack-empty @@ -0,0 +1 @@ +4cb77c0eccacfa531af71431b4004802dfad17c3 diff --git a/test/data/manifest-checksums/rhel_8.10-x86_64-openstack-jq_only b/test/data/manifest-checksums/rhel_8.10-x86_64-openstack-jq_only deleted file mode 100644 index 8131a9d77c..0000000000 --- a/test/data/manifest-checksums/rhel_8.10-x86_64-openstack-jq_only +++ /dev/null @@ -1 +0,0 @@ -354f3aeabdc93f649fea0b97fbfb03b0e6186ac4 diff --git a/test/data/manifest-checksums/rhel_8.10-x86_64-ova-empty b/test/data/manifest-checksums/rhel_8.10-x86_64-ova-empty new file mode 100644 index 0000000000..61a31d921b --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.10-x86_64-ova-empty @@ -0,0 +1 @@ +ec307209136c218255bf91a9288edfc92347a816 diff --git a/test/data/manifest-checksums/rhel_8.10-x86_64-ova-jq_only b/test/data/manifest-checksums/rhel_8.10-x86_64-ova-jq_only deleted file mode 100644 index 84ed53afbd..0000000000 --- a/test/data/manifest-checksums/rhel_8.10-x86_64-ova-jq_only +++ /dev/null @@ -1 +0,0 @@ -d01d1aaeb367480dac1ce5a35a4bac550290cdeb diff --git a/test/data/manifest-checksums/rhel_8.10-x86_64-qcow2-empty b/test/data/manifest-checksums/rhel_8.10-x86_64-qcow2-empty new file mode 100644 index 0000000000..eda877bfc8 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.10-x86_64-qcow2-empty @@ -0,0 +1 @@ +bf9f06eb7535f8443664e20c2e19c21390c71fba diff --git a/test/data/manifest-checksums/rhel_8.10-x86_64-qcow2-jq_only b/test/data/manifest-checksums/rhel_8.10-x86_64-qcow2-jq_only deleted file mode 100644 index 1bf1f0ff2f..0000000000 --- a/test/data/manifest-checksums/rhel_8.10-x86_64-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -6c9caca6277df00c6a047a22b7114e594c183c95 diff --git a/test/data/manifest-checksums/rhel_8.10-x86_64-qcow2-oscap_generic b/test/data/manifest-checksums/rhel_8.10-x86_64-qcow2-oscap_generic index 3dd5fd5abc..0d978e54e0 100644 --- a/test/data/manifest-checksums/rhel_8.10-x86_64-qcow2-oscap_generic +++ b/test/data/manifest-checksums/rhel_8.10-x86_64-qcow2-oscap_generic @@ -1 +1 @@ -8d4d05b0a152a7d43dbc704e5ff359cef4035414 +5946268aa295b512edeafeda1c2e4455fdc9bb11 diff --git a/test/data/manifest-checksums/rhel_8.10-x86_64-tar-empty b/test/data/manifest-checksums/rhel_8.10-x86_64-tar-empty new file mode 100644 index 0000000000..d4f98f6351 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.10-x86_64-tar-empty @@ -0,0 +1 @@ +10b043badb887d91468175052c6f79c8ac81a19d diff --git a/test/data/manifest-checksums/rhel_8.10-x86_64-tar-jq_only b/test/data/manifest-checksums/rhel_8.10-x86_64-tar-jq_only deleted file mode 100644 index e6a034d25b..0000000000 --- a/test/data/manifest-checksums/rhel_8.10-x86_64-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -1fec07e3c3db8d44cefc3b0d226acbf30c4382b4 diff --git a/test/data/manifest-checksums/rhel_8.10-x86_64-vhd-empty b/test/data/manifest-checksums/rhel_8.10-x86_64-vhd-empty new file mode 100644 index 0000000000..736a506880 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.10-x86_64-vhd-empty @@ -0,0 +1 @@ +76bffb76ae7ff052286db0eecddae721535b2688 diff --git a/test/data/manifest-checksums/rhel_8.10-x86_64-vhd-jq_only b/test/data/manifest-checksums/rhel_8.10-x86_64-vhd-jq_only deleted file mode 100644 index 74a83ec3db..0000000000 --- a/test/data/manifest-checksums/rhel_8.10-x86_64-vhd-jq_only +++ /dev/null @@ -1 +0,0 @@ -ef03f079e08e97fcd2fd9c671d8de0a66169c4d3 diff --git a/test/data/manifest-checksums/rhel_8.10-x86_64-vmdk-empty b/test/data/manifest-checksums/rhel_8.10-x86_64-vmdk-empty new file mode 100644 index 0000000000..315c97cc58 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.10-x86_64-vmdk-empty @@ -0,0 +1 @@ +7f689ed195d52810371c006666315c4b525afe91 diff --git a/test/data/manifest-checksums/rhel_8.10-x86_64-vmdk-jq_only b/test/data/manifest-checksums/rhel_8.10-x86_64-vmdk-jq_only deleted file mode 100644 index 6ffb331163..0000000000 --- a/test/data/manifest-checksums/rhel_8.10-x86_64-vmdk-jq_only +++ /dev/null @@ -1 +0,0 @@ -19e6edc80f18ed1dcbb19345d638cc46fcf82459 diff --git a/test/data/manifest-checksums/rhel_8.10-x86_64-wsl-empty b/test/data/manifest-checksums/rhel_8.10-x86_64-wsl-empty new file mode 100644 index 0000000000..75668861ba --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.10-x86_64-wsl-empty @@ -0,0 +1 @@ +f0132d21b3f497338a278cbc6df30f1abfc19ed8 diff --git a/test/data/manifest-checksums/rhel_8.10-x86_64-wsl-jq_only b/test/data/manifest-checksums/rhel_8.10-x86_64-wsl-jq_only deleted file mode 100644 index fbc436d20c..0000000000 --- a/test/data/manifest-checksums/rhel_8.10-x86_64-wsl-jq_only +++ /dev/null @@ -1 +0,0 @@ -fae8e4a0e847f96528af28a81a7d6fd82e133be4 diff --git a/test/data/manifest-checksums/rhel_8.4-aarch64-ami-all_customizations b/test/data/manifest-checksums/rhel_8.4-aarch64-ami-all_customizations index d7330bd6dd..fccccadc8e 100644 --- a/test/data/manifest-checksums/rhel_8.4-aarch64-ami-all_customizations +++ b/test/data/manifest-checksums/rhel_8.4-aarch64-ami-all_customizations @@ -1 +1 @@ -6bdd06d516f8b3707c7b473405070f84eca6f17f +10bd75d366bc6a28dfdf71b2ce1c41c65bbb54f8 diff --git a/test/data/manifest-checksums/rhel_8.4-aarch64-ami-empty b/test/data/manifest-checksums/rhel_8.4-aarch64-ami-empty new file mode 100644 index 0000000000..8cfc635e98 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.4-aarch64-ami-empty @@ -0,0 +1 @@ +6ceec34a8009abf4d8acbcb2c33561b28be7314a diff --git a/test/data/manifest-checksums/rhel_8.4-aarch64-ami-jq_only b/test/data/manifest-checksums/rhel_8.4-aarch64-ami-jq_only deleted file mode 100644 index e83068c4c1..0000000000 --- a/test/data/manifest-checksums/rhel_8.4-aarch64-ami-jq_only +++ /dev/null @@ -1 +0,0 @@ -d55f16e4539e0d0bc2fe6feb14705ae863c687d8 diff --git a/test/data/manifest-checksums/rhel_8.4-aarch64-ami-partitioning_lvm_noswap b/test/data/manifest-checksums/rhel_8.4-aarch64-ami-partitioning_lvm_noswap index f3e05365e9..9ac5606061 100644 --- a/test/data/manifest-checksums/rhel_8.4-aarch64-ami-partitioning_lvm_noswap +++ b/test/data/manifest-checksums/rhel_8.4-aarch64-ami-partitioning_lvm_noswap @@ -1 +1 @@ -f77d78bcad0dd4f2e874105efa20387bbb20f88d +d82c724a799df971e4359fd65b7d811ad41073ef diff --git a/test/data/manifest-checksums/rhel_8.4-aarch64-ec2-empty b/test/data/manifest-checksums/rhel_8.4-aarch64-ec2-empty new file mode 100644 index 0000000000..b3c9ad53fa --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.4-aarch64-ec2-empty @@ -0,0 +1 @@ +7f057592041f554c5af4c80bb9ce521a40e606ec diff --git a/test/data/manifest-checksums/rhel_8.4-aarch64-ec2-jq_only b/test/data/manifest-checksums/rhel_8.4-aarch64-ec2-jq_only deleted file mode 100644 index a8e19fc392..0000000000 --- a/test/data/manifest-checksums/rhel_8.4-aarch64-ec2-jq_only +++ /dev/null @@ -1 +0,0 @@ -80b70613d9583989d39e2b83e5b907157088f86c diff --git a/test/data/manifest-checksums/rhel_8.4-aarch64-edge_container-empty b/test/data/manifest-checksums/rhel_8.4-aarch64-edge_container-empty new file mode 100644 index 0000000000..4cb617f5c8 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.4-aarch64-edge_container-empty @@ -0,0 +1 @@ +6c9db1801d759252e9b6f34fe7108ebb33d05cf8 diff --git a/test/data/manifest-checksums/rhel_8.4-aarch64-edge_container-jq_only b/test/data/manifest-checksums/rhel_8.4-aarch64-edge_container-jq_only deleted file mode 100644 index 102286f393..0000000000 --- a/test/data/manifest-checksums/rhel_8.4-aarch64-edge_container-jq_only +++ /dev/null @@ -1 +0,0 @@ -25a3e930e49579efdbda7e9ec84e452079d4f3c4 diff --git a/test/data/manifest-checksums/rhel_8.4-aarch64-image_installer-empty b/test/data/manifest-checksums/rhel_8.4-aarch64-image_installer-empty new file mode 100644 index 0000000000..567bddf29e --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.4-aarch64-image_installer-empty @@ -0,0 +1 @@ +f93f34c80ad15fc4ae858c8bc629fa06f0932a6d diff --git a/test/data/manifest-checksums/rhel_8.4-aarch64-image_installer-jq_only b/test/data/manifest-checksums/rhel_8.4-aarch64-image_installer-jq_only deleted file mode 100644 index de86460703..0000000000 --- a/test/data/manifest-checksums/rhel_8.4-aarch64-image_installer-jq_only +++ /dev/null @@ -1 +0,0 @@ -66ef2949b345b2446cf1ed75cb6845f1a010dfe0 diff --git a/test/data/manifest-checksums/rhel_8.4-aarch64-minimal_raw-empty b/test/data/manifest-checksums/rhel_8.4-aarch64-minimal_raw-empty new file mode 100644 index 0000000000..7b919b5d43 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.4-aarch64-minimal_raw-empty @@ -0,0 +1 @@ +dddafa833237d22f5c813d3761a2d029ce23f7cb diff --git a/test/data/manifest-checksums/rhel_8.4-aarch64-minimal_raw-jq_only b/test/data/manifest-checksums/rhel_8.4-aarch64-minimal_raw-jq_only deleted file mode 100644 index 1c9f108973..0000000000 --- a/test/data/manifest-checksums/rhel_8.4-aarch64-minimal_raw-jq_only +++ /dev/null @@ -1 +0,0 @@ -23c68b82845cf978a3dcb93a667b7733a22a8c0e diff --git a/test/data/manifest-checksums/rhel_8.4-aarch64-openstack-empty b/test/data/manifest-checksums/rhel_8.4-aarch64-openstack-empty new file mode 100644 index 0000000000..807c33da1b --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.4-aarch64-openstack-empty @@ -0,0 +1 @@ +ba1538a0745b6be90b88c05a965b9dea21c131fc diff --git a/test/data/manifest-checksums/rhel_8.4-aarch64-openstack-jq_only b/test/data/manifest-checksums/rhel_8.4-aarch64-openstack-jq_only deleted file mode 100644 index 6c261291f6..0000000000 --- a/test/data/manifest-checksums/rhel_8.4-aarch64-openstack-jq_only +++ /dev/null @@ -1 +0,0 @@ -2a20e680dd64882bb898b348efe946975959a48b diff --git a/test/data/manifest-checksums/rhel_8.4-aarch64-qcow2-empty b/test/data/manifest-checksums/rhel_8.4-aarch64-qcow2-empty new file mode 100644 index 0000000000..ff0b3f7dc2 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.4-aarch64-qcow2-empty @@ -0,0 +1 @@ +ebd2adabe2031e37f60697ebd8f34d0fccaa0736 diff --git a/test/data/manifest-checksums/rhel_8.4-aarch64-qcow2-jq_only b/test/data/manifest-checksums/rhel_8.4-aarch64-qcow2-jq_only deleted file mode 100644 index 80ddeb7946..0000000000 --- a/test/data/manifest-checksums/rhel_8.4-aarch64-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -49dc7a846f78300fa7c474337942940ecdda902f diff --git a/test/data/manifest-checksums/rhel_8.4-aarch64-tar-empty b/test/data/manifest-checksums/rhel_8.4-aarch64-tar-empty new file mode 100644 index 0000000000..8c89a06174 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.4-aarch64-tar-empty @@ -0,0 +1 @@ +09a8585c86aca0ac933b6d7092424e48b262ed28 diff --git a/test/data/manifest-checksums/rhel_8.4-aarch64-tar-jq_only b/test/data/manifest-checksums/rhel_8.4-aarch64-tar-jq_only deleted file mode 100644 index 2315538716..0000000000 --- a/test/data/manifest-checksums/rhel_8.4-aarch64-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -34416edc76b6ec7aa4fbb85089cdd75b38e4149b diff --git a/test/data/manifest-checksums/rhel_8.4-aarch64-wsl-empty b/test/data/manifest-checksums/rhel_8.4-aarch64-wsl-empty new file mode 100644 index 0000000000..52cd4188f0 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.4-aarch64-wsl-empty @@ -0,0 +1 @@ +dab1b3c10eff412f60338a52f95992db67f6fdde diff --git a/test/data/manifest-checksums/rhel_8.4-aarch64-wsl-jq_only b/test/data/manifest-checksums/rhel_8.4-aarch64-wsl-jq_only deleted file mode 100644 index 08f5b01052..0000000000 --- a/test/data/manifest-checksums/rhel_8.4-aarch64-wsl-jq_only +++ /dev/null @@ -1 +0,0 @@ -56a1198e6631c5358e388cf425546c2b0b471db1 diff --git a/test/data/manifest-checksums/rhel_8.4-ppc64le-qcow2-empty b/test/data/manifest-checksums/rhel_8.4-ppc64le-qcow2-empty new file mode 100644 index 0000000000..55bcbfa25c --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.4-ppc64le-qcow2-empty @@ -0,0 +1 @@ +6c94f977ad08b70f58614f903630a5cf48175aa0 diff --git a/test/data/manifest-checksums/rhel_8.4-ppc64le-qcow2-jq_only b/test/data/manifest-checksums/rhel_8.4-ppc64le-qcow2-jq_only deleted file mode 100644 index c915b9f29a..0000000000 --- a/test/data/manifest-checksums/rhel_8.4-ppc64le-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -b9a7dbc8390002a3e549a01b814138c35a1fb27b diff --git a/test/data/manifest-checksums/rhel_8.4-ppc64le-tar-empty b/test/data/manifest-checksums/rhel_8.4-ppc64le-tar-empty new file mode 100644 index 0000000000..57bed9dfcc --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.4-ppc64le-tar-empty @@ -0,0 +1 @@ +627ccaeb8c99c81dc1564323ed59658c75e0e232 diff --git a/test/data/manifest-checksums/rhel_8.4-ppc64le-tar-jq_only b/test/data/manifest-checksums/rhel_8.4-ppc64le-tar-jq_only deleted file mode 100644 index e04132b412..0000000000 --- a/test/data/manifest-checksums/rhel_8.4-ppc64le-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -6a960ca02be0094c3ec7ed665e5434e2dc2e08cc diff --git a/test/data/manifest-checksums/rhel_8.4-s390x-qcow2-empty b/test/data/manifest-checksums/rhel_8.4-s390x-qcow2-empty new file mode 100644 index 0000000000..b604cb3b83 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.4-s390x-qcow2-empty @@ -0,0 +1 @@ +c30403d894fe9f666669014df42ef13c10951b44 diff --git a/test/data/manifest-checksums/rhel_8.4-s390x-qcow2-jq_only b/test/data/manifest-checksums/rhel_8.4-s390x-qcow2-jq_only deleted file mode 100644 index 113a2eeceb..0000000000 --- a/test/data/manifest-checksums/rhel_8.4-s390x-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -ccc6071909eb802caec5a27a19581729f1ccae52 diff --git a/test/data/manifest-checksums/rhel_8.4-s390x-tar-empty b/test/data/manifest-checksums/rhel_8.4-s390x-tar-empty new file mode 100644 index 0000000000..cc80af9ce5 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.4-s390x-tar-empty @@ -0,0 +1 @@ +5307d3c35a5101a7e78d4201aea15470d567812b diff --git a/test/data/manifest-checksums/rhel_8.4-s390x-tar-jq_only b/test/data/manifest-checksums/rhel_8.4-s390x-tar-jq_only deleted file mode 100644 index e3119baa29..0000000000 --- a/test/data/manifest-checksums/rhel_8.4-s390x-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -981e3a019e96fe74d959974fea791fd1afc078b4 diff --git a/test/data/manifest-checksums/rhel_8.4-x86_64-ami-all_customizations b/test/data/manifest-checksums/rhel_8.4-x86_64-ami-all_customizations index 06bab9317a..8d1d5a4f39 100644 --- a/test/data/manifest-checksums/rhel_8.4-x86_64-ami-all_customizations +++ b/test/data/manifest-checksums/rhel_8.4-x86_64-ami-all_customizations @@ -1 +1 @@ -905f3ff70587e784d4c0c0a1a4759543f2983f21 +e4c7fb3a99ab4688e3091f5606e1b62a68577a4e diff --git a/test/data/manifest-checksums/rhel_8.4-x86_64-ami-empty b/test/data/manifest-checksums/rhel_8.4-x86_64-ami-empty new file mode 100644 index 0000000000..4003b20b1e --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.4-x86_64-ami-empty @@ -0,0 +1 @@ +d4827ac7ef51946f38a3f10c4d70b730cf82aca3 diff --git a/test/data/manifest-checksums/rhel_8.4-x86_64-ami-jq_only b/test/data/manifest-checksums/rhel_8.4-x86_64-ami-jq_only deleted file mode 100644 index 45d162c20e..0000000000 --- a/test/data/manifest-checksums/rhel_8.4-x86_64-ami-jq_only +++ /dev/null @@ -1 +0,0 @@ -714d1365548393736a0c0305dbc857e9b97a6519 diff --git a/test/data/manifest-checksums/rhel_8.4-x86_64-ami-partitioning_lvm b/test/data/manifest-checksums/rhel_8.4-x86_64-ami-partitioning_lvm index 9ce9782944..d347f36ab3 100644 --- a/test/data/manifest-checksums/rhel_8.4-x86_64-ami-partitioning_lvm +++ b/test/data/manifest-checksums/rhel_8.4-x86_64-ami-partitioning_lvm @@ -1 +1 @@ -667c2832f9ec5c3336cea30a4430b38b14c986d4 +0da51ad89871f4fc0cb92ed63d126224ddda2b9a diff --git a/test/data/manifest-checksums/rhel_8.4-x86_64-ami-partitioning_lvm_noswap b/test/data/manifest-checksums/rhel_8.4-x86_64-ami-partitioning_lvm_noswap index 7901316afa..38b7f6231c 100644 --- a/test/data/manifest-checksums/rhel_8.4-x86_64-ami-partitioning_lvm_noswap +++ b/test/data/manifest-checksums/rhel_8.4-x86_64-ami-partitioning_lvm_noswap @@ -1 +1 @@ -dbef39ede1515163a347a820b79f3ecef5ef5857 +a9689c9d6fd5eed6ecff22984878008af7f3aec6 diff --git a/test/data/manifest-checksums/rhel_8.4-x86_64-ami-partitioning_plain b/test/data/manifest-checksums/rhel_8.4-x86_64-ami-partitioning_plain index 50821c0690..11f2807e96 100644 --- a/test/data/manifest-checksums/rhel_8.4-x86_64-ami-partitioning_plain +++ b/test/data/manifest-checksums/rhel_8.4-x86_64-ami-partitioning_plain @@ -1 +1 @@ -94133660b95010bfe9168b7a33c9e647b2767733 +c9450d85bf10165589913d90f77abf6b7fb27600 diff --git a/test/data/manifest-checksums/rhel_8.4-x86_64-azure_rhui-empty b/test/data/manifest-checksums/rhel_8.4-x86_64-azure_rhui-empty new file mode 100644 index 0000000000..bfdbbc6d58 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.4-x86_64-azure_rhui-empty @@ -0,0 +1 @@ +32e67f09552a60da66a072158b1f840c1477f75c diff --git a/test/data/manifest-checksums/rhel_8.4-x86_64-azure_rhui-jq_only b/test/data/manifest-checksums/rhel_8.4-x86_64-azure_rhui-jq_only deleted file mode 100644 index 23e0c1b8a7..0000000000 --- a/test/data/manifest-checksums/rhel_8.4-x86_64-azure_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -d08afd40b7d501a4c763488e4d6ca5c3fb2adec3 diff --git a/test/data/manifest-checksums/rhel_8.4-x86_64-azure_sap_rhui-empty b/test/data/manifest-checksums/rhel_8.4-x86_64-azure_sap_rhui-empty new file mode 100644 index 0000000000..e5cc4002fd --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.4-x86_64-azure_sap_rhui-empty @@ -0,0 +1 @@ +ea8935c21b728b743566764a535df2e759560e7e diff --git a/test/data/manifest-checksums/rhel_8.4-x86_64-azure_sap_rhui-jq_only b/test/data/manifest-checksums/rhel_8.4-x86_64-azure_sap_rhui-jq_only deleted file mode 100644 index 40b0fa6bb4..0000000000 --- a/test/data/manifest-checksums/rhel_8.4-x86_64-azure_sap_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -ba5e6ad8515483a7c098ce70ddab009e94d45a04 diff --git a/test/data/manifest-checksums/rhel_8.4-x86_64-ec2-empty b/test/data/manifest-checksums/rhel_8.4-x86_64-ec2-empty new file mode 100644 index 0000000000..5010c2dc8a --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.4-x86_64-ec2-empty @@ -0,0 +1 @@ +25d440919c726b0fb78dacc9b08ab65f7ed55258 diff --git a/test/data/manifest-checksums/rhel_8.4-x86_64-ec2-jq_only b/test/data/manifest-checksums/rhel_8.4-x86_64-ec2-jq_only deleted file mode 100644 index 733b387629..0000000000 --- a/test/data/manifest-checksums/rhel_8.4-x86_64-ec2-jq_only +++ /dev/null @@ -1 +0,0 @@ -b9817e5e0748304f286ee199b9494c67783344fe diff --git a/test/data/manifest-checksums/rhel_8.4-x86_64-ec2_ha-empty b/test/data/manifest-checksums/rhel_8.4-x86_64-ec2_ha-empty new file mode 100644 index 0000000000..5e4494ea40 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.4-x86_64-ec2_ha-empty @@ -0,0 +1 @@ +761d91cb543b259da7662aa81d6ecf159abad207 diff --git a/test/data/manifest-checksums/rhel_8.4-x86_64-ec2_ha-jq_only b/test/data/manifest-checksums/rhel_8.4-x86_64-ec2_ha-jq_only deleted file mode 100644 index 97b80a8cd9..0000000000 --- a/test/data/manifest-checksums/rhel_8.4-x86_64-ec2_ha-jq_only +++ /dev/null @@ -1 +0,0 @@ -24b3930a04813b44a4548c0010b16651e1078e8e diff --git a/test/data/manifest-checksums/rhel_8.4-x86_64-edge_container-empty b/test/data/manifest-checksums/rhel_8.4-x86_64-edge_container-empty new file mode 100644 index 0000000000..c15db21f3b --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.4-x86_64-edge_container-empty @@ -0,0 +1 @@ +4384113104fdc847f4b492bad58278b16c30038e diff --git a/test/data/manifest-checksums/rhel_8.4-x86_64-edge_container-jq_only b/test/data/manifest-checksums/rhel_8.4-x86_64-edge_container-jq_only deleted file mode 100644 index d21efc0336..0000000000 --- a/test/data/manifest-checksums/rhel_8.4-x86_64-edge_container-jq_only +++ /dev/null @@ -1 +0,0 @@ -82f605c651dcebfb1d9133a7411988fd7f0bd64e diff --git a/test/data/manifest-checksums/rhel_8.4-x86_64-gce-empty b/test/data/manifest-checksums/rhel_8.4-x86_64-gce-empty new file mode 100644 index 0000000000..9bf31f108e --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.4-x86_64-gce-empty @@ -0,0 +1 @@ +9f8a4c7eebb86f20027d7a22a0f24f1da811aa45 diff --git a/test/data/manifest-checksums/rhel_8.4-x86_64-gce-jq_only b/test/data/manifest-checksums/rhel_8.4-x86_64-gce-jq_only deleted file mode 100644 index 111fa4bb00..0000000000 --- a/test/data/manifest-checksums/rhel_8.4-x86_64-gce-jq_only +++ /dev/null @@ -1 +0,0 @@ -4ccb9e4ba7d36703f8677c3040b853d666055e4a diff --git a/test/data/manifest-checksums/rhel_8.4-x86_64-gce_rhui-empty b/test/data/manifest-checksums/rhel_8.4-x86_64-gce_rhui-empty new file mode 100644 index 0000000000..7b047a7e6e --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.4-x86_64-gce_rhui-empty @@ -0,0 +1 @@ +7ff8c050a61ca043312f73db34d6c06d044558f3 diff --git a/test/data/manifest-checksums/rhel_8.4-x86_64-gce_rhui-jq_only b/test/data/manifest-checksums/rhel_8.4-x86_64-gce_rhui-jq_only deleted file mode 100644 index fc74e96da1..0000000000 --- a/test/data/manifest-checksums/rhel_8.4-x86_64-gce_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -722f16fd685b5d709e0e3246ed26fbd5567e40c5 diff --git a/test/data/manifest-checksums/rhel_8.4-x86_64-image_installer-empty b/test/data/manifest-checksums/rhel_8.4-x86_64-image_installer-empty new file mode 100644 index 0000000000..78b2733949 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.4-x86_64-image_installer-empty @@ -0,0 +1 @@ +09f5ef4923eac72923fc5f7ae1d6b276822ced13 diff --git a/test/data/manifest-checksums/rhel_8.4-x86_64-image_installer-jq_only b/test/data/manifest-checksums/rhel_8.4-x86_64-image_installer-jq_only deleted file mode 100644 index 209a82a522..0000000000 --- a/test/data/manifest-checksums/rhel_8.4-x86_64-image_installer-jq_only +++ /dev/null @@ -1 +0,0 @@ -befdb2de05bcae7c9780e11020be329b19c29631 diff --git a/test/data/manifest-checksums/rhel_8.4-x86_64-minimal_raw-empty b/test/data/manifest-checksums/rhel_8.4-x86_64-minimal_raw-empty new file mode 100644 index 0000000000..bb0ebfb06f --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.4-x86_64-minimal_raw-empty @@ -0,0 +1 @@ +316c0fb7c1075e35b3675d4bd16ee7597b6d6a5e diff --git a/test/data/manifest-checksums/rhel_8.4-x86_64-minimal_raw-jq_only b/test/data/manifest-checksums/rhel_8.4-x86_64-minimal_raw-jq_only deleted file mode 100644 index 258354bceb..0000000000 --- a/test/data/manifest-checksums/rhel_8.4-x86_64-minimal_raw-jq_only +++ /dev/null @@ -1 +0,0 @@ -6124f191214810031098e3873fdbcb25cd1c121f diff --git a/test/data/manifest-checksums/rhel_8.4-x86_64-oci-empty b/test/data/manifest-checksums/rhel_8.4-x86_64-oci-empty new file mode 100644 index 0000000000..8ed7bd7f75 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.4-x86_64-oci-empty @@ -0,0 +1 @@ +ec1c6a8633677d5ca43c3586d0b02b83c131921c diff --git a/test/data/manifest-checksums/rhel_8.4-x86_64-oci-jq_only b/test/data/manifest-checksums/rhel_8.4-x86_64-oci-jq_only deleted file mode 100644 index 6fc284c62b..0000000000 --- a/test/data/manifest-checksums/rhel_8.4-x86_64-oci-jq_only +++ /dev/null @@ -1 +0,0 @@ -347f12fe1d098c01345b6c52c499ac78c6ae4f13 diff --git a/test/data/manifest-checksums/rhel_8.4-x86_64-openstack-empty b/test/data/manifest-checksums/rhel_8.4-x86_64-openstack-empty new file mode 100644 index 0000000000..784807d893 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.4-x86_64-openstack-empty @@ -0,0 +1 @@ +d4b9f31335ddac1b617f3601a7bbadedf7de5c92 diff --git a/test/data/manifest-checksums/rhel_8.4-x86_64-openstack-jq_only b/test/data/manifest-checksums/rhel_8.4-x86_64-openstack-jq_only deleted file mode 100644 index 6bee29905e..0000000000 --- a/test/data/manifest-checksums/rhel_8.4-x86_64-openstack-jq_only +++ /dev/null @@ -1 +0,0 @@ -e6eb66bfb9b8894497f79d2c6b23a464f2ed4640 diff --git a/test/data/manifest-checksums/rhel_8.4-x86_64-ova-empty b/test/data/manifest-checksums/rhel_8.4-x86_64-ova-empty new file mode 100644 index 0000000000..476c4efb5d --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.4-x86_64-ova-empty @@ -0,0 +1 @@ +1087e776ba47fbf9b9fcc8764fab6ce92293caf0 diff --git a/test/data/manifest-checksums/rhel_8.4-x86_64-ova-jq_only b/test/data/manifest-checksums/rhel_8.4-x86_64-ova-jq_only deleted file mode 100644 index 8607bbea6d..0000000000 --- a/test/data/manifest-checksums/rhel_8.4-x86_64-ova-jq_only +++ /dev/null @@ -1 +0,0 @@ -3b2afc6917c51a0e57cd59024a90cd28e34e8dcc diff --git a/test/data/manifest-checksums/rhel_8.4-x86_64-qcow2-empty b/test/data/manifest-checksums/rhel_8.4-x86_64-qcow2-empty new file mode 100644 index 0000000000..8ed7bd7f75 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.4-x86_64-qcow2-empty @@ -0,0 +1 @@ +ec1c6a8633677d5ca43c3586d0b02b83c131921c diff --git a/test/data/manifest-checksums/rhel_8.4-x86_64-qcow2-jq_only b/test/data/manifest-checksums/rhel_8.4-x86_64-qcow2-jq_only deleted file mode 100644 index 6fc284c62b..0000000000 --- a/test/data/manifest-checksums/rhel_8.4-x86_64-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -347f12fe1d098c01345b6c52c499ac78c6ae4f13 diff --git a/test/data/manifest-checksums/rhel_8.4-x86_64-tar-empty b/test/data/manifest-checksums/rhel_8.4-x86_64-tar-empty new file mode 100644 index 0000000000..4abe0807cf --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.4-x86_64-tar-empty @@ -0,0 +1 @@ +0ee54974a5e8e62f14b573ee64c009a0e52d4d5e diff --git a/test/data/manifest-checksums/rhel_8.4-x86_64-tar-jq_only b/test/data/manifest-checksums/rhel_8.4-x86_64-tar-jq_only deleted file mode 100644 index c81eb96fa2..0000000000 --- a/test/data/manifest-checksums/rhel_8.4-x86_64-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -3ed642bc60e190a8d7ef31f8cc72469353e3ac1f diff --git a/test/data/manifest-checksums/rhel_8.4-x86_64-vhd-empty b/test/data/manifest-checksums/rhel_8.4-x86_64-vhd-empty new file mode 100644 index 0000000000..70e62f1ae3 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.4-x86_64-vhd-empty @@ -0,0 +1 @@ +9b7ab998341e812115530703f625d3a9539c8e09 diff --git a/test/data/manifest-checksums/rhel_8.4-x86_64-vhd-jq_only b/test/data/manifest-checksums/rhel_8.4-x86_64-vhd-jq_only deleted file mode 100644 index 0b17ed0468..0000000000 --- a/test/data/manifest-checksums/rhel_8.4-x86_64-vhd-jq_only +++ /dev/null @@ -1 +0,0 @@ -7af6d17c5f9db3911067db3b46cd0b75208d90c4 diff --git a/test/data/manifest-checksums/rhel_8.4-x86_64-vmdk-empty b/test/data/manifest-checksums/rhel_8.4-x86_64-vmdk-empty new file mode 100644 index 0000000000..1d03713013 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.4-x86_64-vmdk-empty @@ -0,0 +1 @@ +ca584d829458271fe9ea1c3b717e9aee7c4d676a diff --git a/test/data/manifest-checksums/rhel_8.4-x86_64-vmdk-jq_only b/test/data/manifest-checksums/rhel_8.4-x86_64-vmdk-jq_only deleted file mode 100644 index 89b878b56f..0000000000 --- a/test/data/manifest-checksums/rhel_8.4-x86_64-vmdk-jq_only +++ /dev/null @@ -1 +0,0 @@ -f2d6f010184de0656025516fdf9921682c11d587 diff --git a/test/data/manifest-checksums/rhel_8.4-x86_64-wsl-empty b/test/data/manifest-checksums/rhel_8.4-x86_64-wsl-empty new file mode 100644 index 0000000000..bb8f84a8b8 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.4-x86_64-wsl-empty @@ -0,0 +1 @@ +e8c2c927c81c75b96e1e88cddefb0e62b68e056a diff --git a/test/data/manifest-checksums/rhel_8.4-x86_64-wsl-jq_only b/test/data/manifest-checksums/rhel_8.4-x86_64-wsl-jq_only deleted file mode 100644 index 8b9f2c04d6..0000000000 --- a/test/data/manifest-checksums/rhel_8.4-x86_64-wsl-jq_only +++ /dev/null @@ -1 +0,0 @@ -5cbb08f0181b211a62dc1ebdefd24f4165758044 diff --git a/test/data/manifest-checksums/rhel_8.6-aarch64-ami-all_customizations b/test/data/manifest-checksums/rhel_8.6-aarch64-ami-all_customizations index 960883619e..508d6175bc 100644 --- a/test/data/manifest-checksums/rhel_8.6-aarch64-ami-all_customizations +++ b/test/data/manifest-checksums/rhel_8.6-aarch64-ami-all_customizations @@ -1 +1 @@ -d1de929ff2ce0de497e2ac1011ba0e9cf38aeae0 +f8a24f41dcd2d3e640807a38b7218b60290cdfa7 diff --git a/test/data/manifest-checksums/rhel_8.6-aarch64-ami-empty b/test/data/manifest-checksums/rhel_8.6-aarch64-ami-empty new file mode 100644 index 0000000000..164c125f00 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.6-aarch64-ami-empty @@ -0,0 +1 @@ +185215d9a7fb77d086ec7c18a9bbf8df8facc454 diff --git a/test/data/manifest-checksums/rhel_8.6-aarch64-ami-jq_only b/test/data/manifest-checksums/rhel_8.6-aarch64-ami-jq_only deleted file mode 100644 index e1b6858baf..0000000000 --- a/test/data/manifest-checksums/rhel_8.6-aarch64-ami-jq_only +++ /dev/null @@ -1 +0,0 @@ -b0649434ef4110e937bc917cce5edfd271a20026 diff --git a/test/data/manifest-checksums/rhel_8.6-aarch64-ami-partitioning_lvm_noswap b/test/data/manifest-checksums/rhel_8.6-aarch64-ami-partitioning_lvm_noswap index 4db250dfa0..ad5438a8c9 100644 --- a/test/data/manifest-checksums/rhel_8.6-aarch64-ami-partitioning_lvm_noswap +++ b/test/data/manifest-checksums/rhel_8.6-aarch64-ami-partitioning_lvm_noswap @@ -1 +1 @@ -f76a2f5919affeb00b6e99e22233c48cf4ab91fd +dd6273144d5027fdac22769d4f432665d381ba87 diff --git a/test/data/manifest-checksums/rhel_8.6-aarch64-azure_rhui-empty b/test/data/manifest-checksums/rhel_8.6-aarch64-azure_rhui-empty new file mode 100644 index 0000000000..cb7b0f120f --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.6-aarch64-azure_rhui-empty @@ -0,0 +1 @@ +da638c72dc54dd28b16011379b9b6bbc6cf0bd12 diff --git a/test/data/manifest-checksums/rhel_8.6-aarch64-azure_rhui-jq_only b/test/data/manifest-checksums/rhel_8.6-aarch64-azure_rhui-jq_only deleted file mode 100644 index adccf7ae10..0000000000 --- a/test/data/manifest-checksums/rhel_8.6-aarch64-azure_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -30f1413723a60d11cc8c2796c18d7efcfc3e4f78 diff --git a/test/data/manifest-checksums/rhel_8.6-aarch64-ec2-empty b/test/data/manifest-checksums/rhel_8.6-aarch64-ec2-empty new file mode 100644 index 0000000000..8c9a76b473 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.6-aarch64-ec2-empty @@ -0,0 +1 @@ +bd2b1fae133447a5ffd35a7112d8220f14b8c272 diff --git a/test/data/manifest-checksums/rhel_8.6-aarch64-ec2-jq_only b/test/data/manifest-checksums/rhel_8.6-aarch64-ec2-jq_only deleted file mode 100644 index 47d7bbe19e..0000000000 --- a/test/data/manifest-checksums/rhel_8.6-aarch64-ec2-jq_only +++ /dev/null @@ -1 +0,0 @@ -5b2139f3f93833f0d54969d4fc85bb1fb1c4394d diff --git a/test/data/manifest-checksums/rhel_8.6-aarch64-edge_container-empty b/test/data/manifest-checksums/rhel_8.6-aarch64-edge_container-empty new file mode 100644 index 0000000000..eff0f76fbe --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.6-aarch64-edge_container-empty @@ -0,0 +1 @@ +55624e94cb10098a94e409e3826c2f34d7dc8b96 diff --git a/test/data/manifest-checksums/rhel_8.6-aarch64-edge_container-jq_only b/test/data/manifest-checksums/rhel_8.6-aarch64-edge_container-jq_only deleted file mode 100644 index 8965ced770..0000000000 --- a/test/data/manifest-checksums/rhel_8.6-aarch64-edge_container-jq_only +++ /dev/null @@ -1 +0,0 @@ -d4b83fcc0ba27deec377b25cd962b11551d17ecd diff --git a/test/data/manifest-checksums/rhel_8.6-aarch64-image_installer-empty b/test/data/manifest-checksums/rhel_8.6-aarch64-image_installer-empty new file mode 100644 index 0000000000..a1c0a086b3 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.6-aarch64-image_installer-empty @@ -0,0 +1 @@ +64a1022bc562b91e5cfe175aa4d66626fb8b9bf1 diff --git a/test/data/manifest-checksums/rhel_8.6-aarch64-image_installer-jq_only b/test/data/manifest-checksums/rhel_8.6-aarch64-image_installer-jq_only deleted file mode 100644 index c63f9a51d7..0000000000 --- a/test/data/manifest-checksums/rhel_8.6-aarch64-image_installer-jq_only +++ /dev/null @@ -1 +0,0 @@ -cc8d7939a71dc433e40388198eb7aa0f42569c34 diff --git a/test/data/manifest-checksums/rhel_8.6-aarch64-minimal_raw-empty b/test/data/manifest-checksums/rhel_8.6-aarch64-minimal_raw-empty new file mode 100644 index 0000000000..7806f0382c --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.6-aarch64-minimal_raw-empty @@ -0,0 +1 @@ +055f1562b0f497dd2e1791a29b756261448895f5 diff --git a/test/data/manifest-checksums/rhel_8.6-aarch64-minimal_raw-jq_only b/test/data/manifest-checksums/rhel_8.6-aarch64-minimal_raw-jq_only deleted file mode 100644 index 86a7cd5970..0000000000 --- a/test/data/manifest-checksums/rhel_8.6-aarch64-minimal_raw-jq_only +++ /dev/null @@ -1 +0,0 @@ -69ea4380d4f318a1abb8e5f90211568bee081502 diff --git a/test/data/manifest-checksums/rhel_8.6-aarch64-openstack-empty b/test/data/manifest-checksums/rhel_8.6-aarch64-openstack-empty new file mode 100644 index 0000000000..d326933fdd --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.6-aarch64-openstack-empty @@ -0,0 +1 @@ +906377a22bb04437aae6e851f66775c90c05a808 diff --git a/test/data/manifest-checksums/rhel_8.6-aarch64-openstack-jq_only b/test/data/manifest-checksums/rhel_8.6-aarch64-openstack-jq_only deleted file mode 100644 index 362c9244bd..0000000000 --- a/test/data/manifest-checksums/rhel_8.6-aarch64-openstack-jq_only +++ /dev/null @@ -1 +0,0 @@ -6882c0d50b0fbc8f23299709e8556be529ece008 diff --git a/test/data/manifest-checksums/rhel_8.6-aarch64-qcow2-empty b/test/data/manifest-checksums/rhel_8.6-aarch64-qcow2-empty new file mode 100644 index 0000000000..fa30cd7719 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.6-aarch64-qcow2-empty @@ -0,0 +1 @@ +e6e9a68e205eba632c575f3ee95d9f1aa6b2ee03 diff --git a/test/data/manifest-checksums/rhel_8.6-aarch64-qcow2-jq_only b/test/data/manifest-checksums/rhel_8.6-aarch64-qcow2-jq_only deleted file mode 100644 index d19f8c3833..0000000000 --- a/test/data/manifest-checksums/rhel_8.6-aarch64-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -d395a5cc7c2e2ca5fd7429e99348575e040fb0d3 diff --git a/test/data/manifest-checksums/rhel_8.6-aarch64-tar-empty b/test/data/manifest-checksums/rhel_8.6-aarch64-tar-empty new file mode 100644 index 0000000000..e8bf7beaf4 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.6-aarch64-tar-empty @@ -0,0 +1 @@ +66f04b647b3611a1d2886b538930e50772c51344 diff --git a/test/data/manifest-checksums/rhel_8.6-aarch64-tar-jq_only b/test/data/manifest-checksums/rhel_8.6-aarch64-tar-jq_only deleted file mode 100644 index 162ccb6af3..0000000000 --- a/test/data/manifest-checksums/rhel_8.6-aarch64-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -b3d16183ab392fdfb04a380e8dc68926fe135ae7 diff --git a/test/data/manifest-checksums/rhel_8.6-aarch64-vhd-empty b/test/data/manifest-checksums/rhel_8.6-aarch64-vhd-empty new file mode 100644 index 0000000000..7845f24bfc --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.6-aarch64-vhd-empty @@ -0,0 +1 @@ +f622cce731298d2306dcabe2665de3888b89f0a9 diff --git a/test/data/manifest-checksums/rhel_8.6-aarch64-vhd-jq_only b/test/data/manifest-checksums/rhel_8.6-aarch64-vhd-jq_only deleted file mode 100644 index 55e1cc0ee0..0000000000 --- a/test/data/manifest-checksums/rhel_8.6-aarch64-vhd-jq_only +++ /dev/null @@ -1 +0,0 @@ -302b4b8363b4c4397aa25432adcb2549286a4103 diff --git a/test/data/manifest-checksums/rhel_8.6-aarch64-wsl-empty b/test/data/manifest-checksums/rhel_8.6-aarch64-wsl-empty new file mode 100644 index 0000000000..993a9d19f2 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.6-aarch64-wsl-empty @@ -0,0 +1 @@ +f973364d15bd7606dad6a034d7280b83a47bdcf0 diff --git a/test/data/manifest-checksums/rhel_8.6-aarch64-wsl-jq_only b/test/data/manifest-checksums/rhel_8.6-aarch64-wsl-jq_only deleted file mode 100644 index 249c199eab..0000000000 --- a/test/data/manifest-checksums/rhel_8.6-aarch64-wsl-jq_only +++ /dev/null @@ -1 +0,0 @@ -bafd65fb706bf739ed88bbbf3438355e0772ad9c diff --git a/test/data/manifest-checksums/rhel_8.6-ppc64le-qcow2-empty b/test/data/manifest-checksums/rhel_8.6-ppc64le-qcow2-empty new file mode 100644 index 0000000000..a52be4846c --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.6-ppc64le-qcow2-empty @@ -0,0 +1 @@ +8414768169ba3d6fe187fb9696d7810777271b72 diff --git a/test/data/manifest-checksums/rhel_8.6-ppc64le-qcow2-jq_only b/test/data/manifest-checksums/rhel_8.6-ppc64le-qcow2-jq_only deleted file mode 100644 index 559ea7de6f..0000000000 --- a/test/data/manifest-checksums/rhel_8.6-ppc64le-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -3966f93987b34a23eb5ec7ab9de838442065319b diff --git a/test/data/manifest-checksums/rhel_8.6-ppc64le-tar-empty b/test/data/manifest-checksums/rhel_8.6-ppc64le-tar-empty new file mode 100644 index 0000000000..9009d5dab6 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.6-ppc64le-tar-empty @@ -0,0 +1 @@ +3092b6bf153045d27f9f058fcab105fc2a9032b5 diff --git a/test/data/manifest-checksums/rhel_8.6-ppc64le-tar-jq_only b/test/data/manifest-checksums/rhel_8.6-ppc64le-tar-jq_only deleted file mode 100644 index 1031999437..0000000000 --- a/test/data/manifest-checksums/rhel_8.6-ppc64le-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -60232c4d40427cdc0ab5d8f67b2cf1d1794cfbe2 diff --git a/test/data/manifest-checksums/rhel_8.6-s390x-qcow2-empty b/test/data/manifest-checksums/rhel_8.6-s390x-qcow2-empty new file mode 100644 index 0000000000..7c4d912992 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.6-s390x-qcow2-empty @@ -0,0 +1 @@ +ff93f04d7c3e7822bc21483f4b704f0e7a06d71e diff --git a/test/data/manifest-checksums/rhel_8.6-s390x-qcow2-jq_only b/test/data/manifest-checksums/rhel_8.6-s390x-qcow2-jq_only deleted file mode 100644 index 85d491e188..0000000000 --- a/test/data/manifest-checksums/rhel_8.6-s390x-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -6fab6dcc167fabbacb29beac89eecc4c0e4f8bc1 diff --git a/test/data/manifest-checksums/rhel_8.6-s390x-tar-empty b/test/data/manifest-checksums/rhel_8.6-s390x-tar-empty new file mode 100644 index 0000000000..6873471f1b --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.6-s390x-tar-empty @@ -0,0 +1 @@ +ac362c029b8e9dee1f05267eb224c67b434b049a diff --git a/test/data/manifest-checksums/rhel_8.6-s390x-tar-jq_only b/test/data/manifest-checksums/rhel_8.6-s390x-tar-jq_only deleted file mode 100644 index 66eb3bf7dd..0000000000 --- a/test/data/manifest-checksums/rhel_8.6-s390x-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -55a80d51e27079283de8ce56805c3d188ed10727 diff --git a/test/data/manifest-checksums/rhel_8.6-x86_64-ami-all_customizations b/test/data/manifest-checksums/rhel_8.6-x86_64-ami-all_customizations index 205b136f2e..daac741edc 100644 --- a/test/data/manifest-checksums/rhel_8.6-x86_64-ami-all_customizations +++ b/test/data/manifest-checksums/rhel_8.6-x86_64-ami-all_customizations @@ -1 +1 @@ -56ddfb9117864d1bee5896524ed06abb84ddc1ce +665a50f9ddef4919231f3b3a2afcece2fc29b1a1 diff --git a/test/data/manifest-checksums/rhel_8.6-x86_64-ami-empty b/test/data/manifest-checksums/rhel_8.6-x86_64-ami-empty new file mode 100644 index 0000000000..da31b86794 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.6-x86_64-ami-empty @@ -0,0 +1 @@ +2d844c0deb0dcd9a626a4db1c7de364e7954c924 diff --git a/test/data/manifest-checksums/rhel_8.6-x86_64-ami-jq_only b/test/data/manifest-checksums/rhel_8.6-x86_64-ami-jq_only deleted file mode 100644 index 21e0c05845..0000000000 --- a/test/data/manifest-checksums/rhel_8.6-x86_64-ami-jq_only +++ /dev/null @@ -1 +0,0 @@ -02774d52c73270cc22da3373c60d79024257baa2 diff --git a/test/data/manifest-checksums/rhel_8.6-x86_64-ami-partitioning_lvm b/test/data/manifest-checksums/rhel_8.6-x86_64-ami-partitioning_lvm index b2438235aa..87228ffe9e 100644 --- a/test/data/manifest-checksums/rhel_8.6-x86_64-ami-partitioning_lvm +++ b/test/data/manifest-checksums/rhel_8.6-x86_64-ami-partitioning_lvm @@ -1 +1 @@ -fae7916ebe993069c33cdd35b24bed3edfa8b6b6 +e26732711df30ea2f9122018838fb30c67f14c12 diff --git a/test/data/manifest-checksums/rhel_8.6-x86_64-ami-partitioning_lvm_noswap b/test/data/manifest-checksums/rhel_8.6-x86_64-ami-partitioning_lvm_noswap index efea9f6b6a..bf7d398dc6 100644 --- a/test/data/manifest-checksums/rhel_8.6-x86_64-ami-partitioning_lvm_noswap +++ b/test/data/manifest-checksums/rhel_8.6-x86_64-ami-partitioning_lvm_noswap @@ -1 +1 @@ -da30e498e4ffb440734ec920defc71fbd9ad4328 +d73cfabf4bad83f55ca732bf28598a3ed3a71211 diff --git a/test/data/manifest-checksums/rhel_8.6-x86_64-ami-partitioning_plain b/test/data/manifest-checksums/rhel_8.6-x86_64-ami-partitioning_plain index 7996f6bc6d..66bbf61e56 100644 --- a/test/data/manifest-checksums/rhel_8.6-x86_64-ami-partitioning_plain +++ b/test/data/manifest-checksums/rhel_8.6-x86_64-ami-partitioning_plain @@ -1 +1 @@ -7c8f7287bab4cbc5fcacf35c6fbef531174b501a +3c034134633fb18a5e0f88aa34aa571d5b2207d7 diff --git a/test/data/manifest-checksums/rhel_8.6-x86_64-azure_eap7_rhui-empty b/test/data/manifest-checksums/rhel_8.6-x86_64-azure_eap7_rhui-empty new file mode 100644 index 0000000000..cee9fdfe4f --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.6-x86_64-azure_eap7_rhui-empty @@ -0,0 +1 @@ +1f0e85ec63cbcefaf9c39e08f3e894fce15e3e1c diff --git a/test/data/manifest-checksums/rhel_8.6-x86_64-azure_eap7_rhui-jq_only b/test/data/manifest-checksums/rhel_8.6-x86_64-azure_eap7_rhui-jq_only deleted file mode 100644 index d2a2a5e8d1..0000000000 --- a/test/data/manifest-checksums/rhel_8.6-x86_64-azure_eap7_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -6fe152a103083f3d6115a56099cce13cc29d2c85 diff --git a/test/data/manifest-checksums/rhel_8.6-x86_64-azure_rhui-empty b/test/data/manifest-checksums/rhel_8.6-x86_64-azure_rhui-empty new file mode 100644 index 0000000000..6485b73ffb --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.6-x86_64-azure_rhui-empty @@ -0,0 +1 @@ +e80ce7676f740f4515e6247acb65ffe69e4431b4 diff --git a/test/data/manifest-checksums/rhel_8.6-x86_64-azure_rhui-jq_only b/test/data/manifest-checksums/rhel_8.6-x86_64-azure_rhui-jq_only deleted file mode 100644 index cac3801df7..0000000000 --- a/test/data/manifest-checksums/rhel_8.6-x86_64-azure_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -14597e5cd41a56042f485d541829ee7da707e13f diff --git a/test/data/manifest-checksums/rhel_8.6-x86_64-azure_sap_rhui-empty b/test/data/manifest-checksums/rhel_8.6-x86_64-azure_sap_rhui-empty new file mode 100644 index 0000000000..0965caad4a --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.6-x86_64-azure_sap_rhui-empty @@ -0,0 +1 @@ +b5a2154226b11e51ad5a42f835c64b3c9ac04074 diff --git a/test/data/manifest-checksums/rhel_8.6-x86_64-azure_sap_rhui-jq_only b/test/data/manifest-checksums/rhel_8.6-x86_64-azure_sap_rhui-jq_only deleted file mode 100644 index 78df524cb4..0000000000 --- a/test/data/manifest-checksums/rhel_8.6-x86_64-azure_sap_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -cab625de5fefaf244002b4afabbdd8900db24f6d diff --git a/test/data/manifest-checksums/rhel_8.6-x86_64-ec2-empty b/test/data/manifest-checksums/rhel_8.6-x86_64-ec2-empty new file mode 100644 index 0000000000..caa9523507 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.6-x86_64-ec2-empty @@ -0,0 +1 @@ +bc55cd647a1ebecbb4a931d1407ae2af523037a6 diff --git a/test/data/manifest-checksums/rhel_8.6-x86_64-ec2-jq_only b/test/data/manifest-checksums/rhel_8.6-x86_64-ec2-jq_only deleted file mode 100644 index 51ee3c3b54..0000000000 --- a/test/data/manifest-checksums/rhel_8.6-x86_64-ec2-jq_only +++ /dev/null @@ -1 +0,0 @@ -cea6ee42199dd18345e996dcba839eb84ee0814c diff --git a/test/data/manifest-checksums/rhel_8.6-x86_64-ec2_ha-empty b/test/data/manifest-checksums/rhel_8.6-x86_64-ec2_ha-empty new file mode 100644 index 0000000000..6fa7f0968d --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.6-x86_64-ec2_ha-empty @@ -0,0 +1 @@ +7241ea06d613681e96f2ffa9b36998ee3a735f40 diff --git a/test/data/manifest-checksums/rhel_8.6-x86_64-ec2_ha-jq_only b/test/data/manifest-checksums/rhel_8.6-x86_64-ec2_ha-jq_only deleted file mode 100644 index abe951bdef..0000000000 --- a/test/data/manifest-checksums/rhel_8.6-x86_64-ec2_ha-jq_only +++ /dev/null @@ -1 +0,0 @@ -f9a06aef995814111b3f098cd37a99d9c2e44ec4 diff --git a/test/data/manifest-checksums/rhel_8.6-x86_64-edge_container-empty b/test/data/manifest-checksums/rhel_8.6-x86_64-edge_container-empty new file mode 100644 index 0000000000..abb6dae570 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.6-x86_64-edge_container-empty @@ -0,0 +1 @@ +1b2e0000515727cb8f5ead5a31da04b6930a7088 diff --git a/test/data/manifest-checksums/rhel_8.6-x86_64-edge_container-jq_only b/test/data/manifest-checksums/rhel_8.6-x86_64-edge_container-jq_only deleted file mode 100644 index 4f823b3932..0000000000 --- a/test/data/manifest-checksums/rhel_8.6-x86_64-edge_container-jq_only +++ /dev/null @@ -1 +0,0 @@ -e56256f2fde19332c9009a45789bc39ba1521ea6 diff --git a/test/data/manifest-checksums/rhel_8.6-x86_64-gce-empty b/test/data/manifest-checksums/rhel_8.6-x86_64-gce-empty new file mode 100644 index 0000000000..0c87a65732 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.6-x86_64-gce-empty @@ -0,0 +1 @@ +f6e9af7f2578eba427c9b1f50f373278880b75b8 diff --git a/test/data/manifest-checksums/rhel_8.6-x86_64-gce-jq_only b/test/data/manifest-checksums/rhel_8.6-x86_64-gce-jq_only deleted file mode 100644 index 9cf3cdf0e4..0000000000 --- a/test/data/manifest-checksums/rhel_8.6-x86_64-gce-jq_only +++ /dev/null @@ -1 +0,0 @@ -f3f4518d3850a3f3a1b44480132990a5d2d8b36c diff --git a/test/data/manifest-checksums/rhel_8.6-x86_64-gce_rhui-empty b/test/data/manifest-checksums/rhel_8.6-x86_64-gce_rhui-empty new file mode 100644 index 0000000000..819056fa07 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.6-x86_64-gce_rhui-empty @@ -0,0 +1 @@ +a8076a7585a4bcd3f10c4d07d5e78857dacf2ae1 diff --git a/test/data/manifest-checksums/rhel_8.6-x86_64-gce_rhui-jq_only b/test/data/manifest-checksums/rhel_8.6-x86_64-gce_rhui-jq_only deleted file mode 100644 index 4a76351f6a..0000000000 --- a/test/data/manifest-checksums/rhel_8.6-x86_64-gce_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -32af2d440bb7a5753a95c5ebcb3097dc381d2f55 diff --git a/test/data/manifest-checksums/rhel_8.6-x86_64-image_installer-empty b/test/data/manifest-checksums/rhel_8.6-x86_64-image_installer-empty new file mode 100644 index 0000000000..db498b87ce --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.6-x86_64-image_installer-empty @@ -0,0 +1 @@ +2e4041e848661a3d9c1c1b6c12b8dcc07eebe1f5 diff --git a/test/data/manifest-checksums/rhel_8.6-x86_64-image_installer-jq_only b/test/data/manifest-checksums/rhel_8.6-x86_64-image_installer-jq_only deleted file mode 100644 index 464d35458e..0000000000 --- a/test/data/manifest-checksums/rhel_8.6-x86_64-image_installer-jq_only +++ /dev/null @@ -1 +0,0 @@ -bcd6c7cc7fe5d7e8bc05775120c4d499a735b6cc diff --git a/test/data/manifest-checksums/rhel_8.6-x86_64-minimal_raw-empty b/test/data/manifest-checksums/rhel_8.6-x86_64-minimal_raw-empty new file mode 100644 index 0000000000..b62940f216 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.6-x86_64-minimal_raw-empty @@ -0,0 +1 @@ +390a30b0df3b052cab9f1ca25d4bff25abda8de9 diff --git a/test/data/manifest-checksums/rhel_8.6-x86_64-minimal_raw-jq_only b/test/data/manifest-checksums/rhel_8.6-x86_64-minimal_raw-jq_only deleted file mode 100644 index 450529296a..0000000000 --- a/test/data/manifest-checksums/rhel_8.6-x86_64-minimal_raw-jq_only +++ /dev/null @@ -1 +0,0 @@ -2bc8254eef16bb33b88c4468c4f7a65d2e2e7f9c diff --git a/test/data/manifest-checksums/rhel_8.6-x86_64-oci-empty b/test/data/manifest-checksums/rhel_8.6-x86_64-oci-empty new file mode 100644 index 0000000000..84c927ca78 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.6-x86_64-oci-empty @@ -0,0 +1 @@ +8ffdc95098cd2351bf754436ee2bde8768db5073 diff --git a/test/data/manifest-checksums/rhel_8.6-x86_64-oci-jq_only b/test/data/manifest-checksums/rhel_8.6-x86_64-oci-jq_only deleted file mode 100644 index bc72b9258f..0000000000 --- a/test/data/manifest-checksums/rhel_8.6-x86_64-oci-jq_only +++ /dev/null @@ -1 +0,0 @@ -8290de5e903f7f8468720897b7f1d5507fc6350a diff --git a/test/data/manifest-checksums/rhel_8.6-x86_64-openstack-empty b/test/data/manifest-checksums/rhel_8.6-x86_64-openstack-empty new file mode 100644 index 0000000000..132e346b56 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.6-x86_64-openstack-empty @@ -0,0 +1 @@ +46233247a8c879fd7476c84ec0840a5c34ae6358 diff --git a/test/data/manifest-checksums/rhel_8.6-x86_64-openstack-jq_only b/test/data/manifest-checksums/rhel_8.6-x86_64-openstack-jq_only deleted file mode 100644 index 1ca1844153..0000000000 --- a/test/data/manifest-checksums/rhel_8.6-x86_64-openstack-jq_only +++ /dev/null @@ -1 +0,0 @@ -cbe3b6d5be85844e8b21e6ad5136813d43b9f5ec diff --git a/test/data/manifest-checksums/rhel_8.6-x86_64-ova-empty b/test/data/manifest-checksums/rhel_8.6-x86_64-ova-empty new file mode 100644 index 0000000000..a4e19135fe --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.6-x86_64-ova-empty @@ -0,0 +1 @@ +1922892419048b11b483d43aeca0eb0a01bbb360 diff --git a/test/data/manifest-checksums/rhel_8.6-x86_64-ova-jq_only b/test/data/manifest-checksums/rhel_8.6-x86_64-ova-jq_only deleted file mode 100644 index 5d7ea6b730..0000000000 --- a/test/data/manifest-checksums/rhel_8.6-x86_64-ova-jq_only +++ /dev/null @@ -1 +0,0 @@ -62a9f6dd3056137db19f9114e7a7a58ebfc673e3 diff --git a/test/data/manifest-checksums/rhel_8.6-x86_64-qcow2-empty b/test/data/manifest-checksums/rhel_8.6-x86_64-qcow2-empty new file mode 100644 index 0000000000..84c927ca78 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.6-x86_64-qcow2-empty @@ -0,0 +1 @@ +8ffdc95098cd2351bf754436ee2bde8768db5073 diff --git a/test/data/manifest-checksums/rhel_8.6-x86_64-qcow2-jq_only b/test/data/manifest-checksums/rhel_8.6-x86_64-qcow2-jq_only deleted file mode 100644 index bc72b9258f..0000000000 --- a/test/data/manifest-checksums/rhel_8.6-x86_64-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -8290de5e903f7f8468720897b7f1d5507fc6350a diff --git a/test/data/manifest-checksums/rhel_8.6-x86_64-tar-empty b/test/data/manifest-checksums/rhel_8.6-x86_64-tar-empty new file mode 100644 index 0000000000..9c066fbc0b --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.6-x86_64-tar-empty @@ -0,0 +1 @@ +85a6c5bfff3205e6974ff93bbc4d37d689f986bc diff --git a/test/data/manifest-checksums/rhel_8.6-x86_64-tar-jq_only b/test/data/manifest-checksums/rhel_8.6-x86_64-tar-jq_only deleted file mode 100644 index 12ece04e84..0000000000 --- a/test/data/manifest-checksums/rhel_8.6-x86_64-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -6e9a3c798aafaa655f3d13dad038d412e158121f diff --git a/test/data/manifest-checksums/rhel_8.6-x86_64-vhd-empty b/test/data/manifest-checksums/rhel_8.6-x86_64-vhd-empty new file mode 100644 index 0000000000..07d948ecb2 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.6-x86_64-vhd-empty @@ -0,0 +1 @@ +71c5679d24ad8c4f771d33892ae57dc4eb6a7486 diff --git a/test/data/manifest-checksums/rhel_8.6-x86_64-vhd-jq_only b/test/data/manifest-checksums/rhel_8.6-x86_64-vhd-jq_only deleted file mode 100644 index d700c12fec..0000000000 --- a/test/data/manifest-checksums/rhel_8.6-x86_64-vhd-jq_only +++ /dev/null @@ -1 +0,0 @@ -97c8ba8c413c1cd2dc66e80bd04df0b3dcd135c9 diff --git a/test/data/manifest-checksums/rhel_8.6-x86_64-vmdk-empty b/test/data/manifest-checksums/rhel_8.6-x86_64-vmdk-empty new file mode 100644 index 0000000000..53055ea52b --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.6-x86_64-vmdk-empty @@ -0,0 +1 @@ +dea71d6632e210e7ff9e23d4fb3925b27c8985c6 diff --git a/test/data/manifest-checksums/rhel_8.6-x86_64-vmdk-jq_only b/test/data/manifest-checksums/rhel_8.6-x86_64-vmdk-jq_only deleted file mode 100644 index f46b91bc24..0000000000 --- a/test/data/manifest-checksums/rhel_8.6-x86_64-vmdk-jq_only +++ /dev/null @@ -1 +0,0 @@ -989f4cc276449143103f4a17acb6aca653d06cab diff --git a/test/data/manifest-checksums/rhel_8.6-x86_64-wsl-empty b/test/data/manifest-checksums/rhel_8.6-x86_64-wsl-empty new file mode 100644 index 0000000000..cb8b1e906c --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.6-x86_64-wsl-empty @@ -0,0 +1 @@ +c93bca812fd08e21b20ae9b79f47c31b0e26b782 diff --git a/test/data/manifest-checksums/rhel_8.6-x86_64-wsl-jq_only b/test/data/manifest-checksums/rhel_8.6-x86_64-wsl-jq_only deleted file mode 100644 index 0f55717b90..0000000000 --- a/test/data/manifest-checksums/rhel_8.6-x86_64-wsl-jq_only +++ /dev/null @@ -1 +0,0 @@ -f408184c095c3e9882b5a5465032ba28c30cbfec diff --git a/test/data/manifest-checksums/rhel_8.8-aarch64-ami-all_customizations b/test/data/manifest-checksums/rhel_8.8-aarch64-ami-all_customizations index b7be42b0c0..2e59ec51df 100644 --- a/test/data/manifest-checksums/rhel_8.8-aarch64-ami-all_customizations +++ b/test/data/manifest-checksums/rhel_8.8-aarch64-ami-all_customizations @@ -1 +1 @@ -933182ad04f7e1e6f665d782148edc398c6dbfa6 +45456d5417e857aee8de5f1a6838517558df364f diff --git a/test/data/manifest-checksums/rhel_8.8-aarch64-ami-empty b/test/data/manifest-checksums/rhel_8.8-aarch64-ami-empty new file mode 100644 index 0000000000..ffccf92553 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.8-aarch64-ami-empty @@ -0,0 +1 @@ +bf9458e7975c4d3265c6dc209a21e0f0aeb9a8d1 diff --git a/test/data/manifest-checksums/rhel_8.8-aarch64-ami-jq_only b/test/data/manifest-checksums/rhel_8.8-aarch64-ami-jq_only deleted file mode 100644 index e7e05c2766..0000000000 --- a/test/data/manifest-checksums/rhel_8.8-aarch64-ami-jq_only +++ /dev/null @@ -1 +0,0 @@ -1e4f80612e99ad10a3c49677e26b10142ed87f33 diff --git a/test/data/manifest-checksums/rhel_8.8-aarch64-ami-partitioning_lvm_noswap b/test/data/manifest-checksums/rhel_8.8-aarch64-ami-partitioning_lvm_noswap index ec2b6feb90..220537f190 100644 --- a/test/data/manifest-checksums/rhel_8.8-aarch64-ami-partitioning_lvm_noswap +++ b/test/data/manifest-checksums/rhel_8.8-aarch64-ami-partitioning_lvm_noswap @@ -1 +1 @@ -fb96af3bf366f0e9a3227390691f34fce9212140 +9e2badd964d831e2ea37d3c35d7f002276bb930a diff --git a/test/data/manifest-checksums/rhel_8.8-aarch64-azure_rhui-empty b/test/data/manifest-checksums/rhel_8.8-aarch64-azure_rhui-empty new file mode 100644 index 0000000000..387635e132 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.8-aarch64-azure_rhui-empty @@ -0,0 +1 @@ +45f8b439cf30a1d18083b466f0e7baa60f241e0f diff --git a/test/data/manifest-checksums/rhel_8.8-aarch64-azure_rhui-jq_only b/test/data/manifest-checksums/rhel_8.8-aarch64-azure_rhui-jq_only deleted file mode 100644 index 22a3c8a71c..0000000000 --- a/test/data/manifest-checksums/rhel_8.8-aarch64-azure_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -2fd6aa483b89b39983904836d4c142692178959e diff --git a/test/data/manifest-checksums/rhel_8.8-aarch64-ec2-empty b/test/data/manifest-checksums/rhel_8.8-aarch64-ec2-empty new file mode 100644 index 0000000000..9ec860cafb --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.8-aarch64-ec2-empty @@ -0,0 +1 @@ +ae480d66b866c2b798813c5a9c97b4f4fa995736 diff --git a/test/data/manifest-checksums/rhel_8.8-aarch64-ec2-jq_only b/test/data/manifest-checksums/rhel_8.8-aarch64-ec2-jq_only deleted file mode 100644 index 6b8a7ad378..0000000000 --- a/test/data/manifest-checksums/rhel_8.8-aarch64-ec2-jq_only +++ /dev/null @@ -1 +0,0 @@ -d27df3df550bf194a09823ca3d0802227ce76c7d diff --git a/test/data/manifest-checksums/rhel_8.8-aarch64-edge_container-empty b/test/data/manifest-checksums/rhel_8.8-aarch64-edge_container-empty new file mode 100644 index 0000000000..39af4850dc --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.8-aarch64-edge_container-empty @@ -0,0 +1 @@ +d73b83e06de082e9ba743673e018f8b5dbfbc156 diff --git a/test/data/manifest-checksums/rhel_8.8-aarch64-edge_container-jq_only b/test/data/manifest-checksums/rhel_8.8-aarch64-edge_container-jq_only deleted file mode 100644 index e9a5f5dc6f..0000000000 --- a/test/data/manifest-checksums/rhel_8.8-aarch64-edge_container-jq_only +++ /dev/null @@ -1 +0,0 @@ -5409c37c337225cc66ae174b2c5e46e71a03325a diff --git a/test/data/manifest-checksums/rhel_8.8-aarch64-image_installer-empty b/test/data/manifest-checksums/rhel_8.8-aarch64-image_installer-empty new file mode 100644 index 0000000000..2cc5508320 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.8-aarch64-image_installer-empty @@ -0,0 +1 @@ +29d7e60111e9b1108bc3352ba3a5628e9919cc44 diff --git a/test/data/manifest-checksums/rhel_8.8-aarch64-image_installer-jq_only b/test/data/manifest-checksums/rhel_8.8-aarch64-image_installer-jq_only deleted file mode 100644 index 1b9fa93d9d..0000000000 --- a/test/data/manifest-checksums/rhel_8.8-aarch64-image_installer-jq_only +++ /dev/null @@ -1 +0,0 @@ -920f2a8062ad01773b9af269b46a385d589c5300 diff --git a/test/data/manifest-checksums/rhel_8.8-aarch64-minimal_raw-empty b/test/data/manifest-checksums/rhel_8.8-aarch64-minimal_raw-empty new file mode 100644 index 0000000000..1d4e70c853 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.8-aarch64-minimal_raw-empty @@ -0,0 +1 @@ +f73c618355a885bd79af1330106c61e5a78b5445 diff --git a/test/data/manifest-checksums/rhel_8.8-aarch64-minimal_raw-jq_only b/test/data/manifest-checksums/rhel_8.8-aarch64-minimal_raw-jq_only deleted file mode 100644 index 9548fe6720..0000000000 --- a/test/data/manifest-checksums/rhel_8.8-aarch64-minimal_raw-jq_only +++ /dev/null @@ -1 +0,0 @@ -c17e07dfc93f4667813ca76ede5bde9090207c7f diff --git a/test/data/manifest-checksums/rhel_8.8-aarch64-openstack-empty b/test/data/manifest-checksums/rhel_8.8-aarch64-openstack-empty new file mode 100644 index 0000000000..d3c4fc54d6 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.8-aarch64-openstack-empty @@ -0,0 +1 @@ +416accd5e0f9da33e7ad939c038d3f53f6b43425 diff --git a/test/data/manifest-checksums/rhel_8.8-aarch64-openstack-jq_only b/test/data/manifest-checksums/rhel_8.8-aarch64-openstack-jq_only deleted file mode 100644 index 010f62496a..0000000000 --- a/test/data/manifest-checksums/rhel_8.8-aarch64-openstack-jq_only +++ /dev/null @@ -1 +0,0 @@ -4bd62ed8670ce8dbf986e1c845f973ea586c6263 diff --git a/test/data/manifest-checksums/rhel_8.8-aarch64-qcow2-empty b/test/data/manifest-checksums/rhel_8.8-aarch64-qcow2-empty new file mode 100644 index 0000000000..541211510b --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.8-aarch64-qcow2-empty @@ -0,0 +1 @@ +2c2eab3e4e1bd23ba14d33eacaa64fbca3156198 diff --git a/test/data/manifest-checksums/rhel_8.8-aarch64-qcow2-jq_only b/test/data/manifest-checksums/rhel_8.8-aarch64-qcow2-jq_only deleted file mode 100644 index 99e2dc86ce..0000000000 --- a/test/data/manifest-checksums/rhel_8.8-aarch64-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -4755342e11dd74a9e717cdc84cdc2074d15a2992 diff --git a/test/data/manifest-checksums/rhel_8.8-aarch64-qcow2-oscap_generic b/test/data/manifest-checksums/rhel_8.8-aarch64-qcow2-oscap_generic index e45ca88b92..25094dacff 100644 --- a/test/data/manifest-checksums/rhel_8.8-aarch64-qcow2-oscap_generic +++ b/test/data/manifest-checksums/rhel_8.8-aarch64-qcow2-oscap_generic @@ -1 +1 @@ -17dc0cea41c6e4579a4d1b5881701c3cfaeb057e +3daeec4028f5a6f3eecc03697bdb27a41158aa8d diff --git a/test/data/manifest-checksums/rhel_8.8-aarch64-tar-empty b/test/data/manifest-checksums/rhel_8.8-aarch64-tar-empty new file mode 100644 index 0000000000..260a0eb1a0 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.8-aarch64-tar-empty @@ -0,0 +1 @@ +79bb9955094450018aab0412ab9387373b6051ee diff --git a/test/data/manifest-checksums/rhel_8.8-aarch64-tar-jq_only b/test/data/manifest-checksums/rhel_8.8-aarch64-tar-jq_only deleted file mode 100644 index 020597c445..0000000000 --- a/test/data/manifest-checksums/rhel_8.8-aarch64-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -a52a6e85b2982473ceccbf1e042bec480dbe0428 diff --git a/test/data/manifest-checksums/rhel_8.8-aarch64-vhd-empty b/test/data/manifest-checksums/rhel_8.8-aarch64-vhd-empty new file mode 100644 index 0000000000..4934c85c16 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.8-aarch64-vhd-empty @@ -0,0 +1 @@ +d1bb3baa0c684ffcb480ff8bbc976d511d73072f diff --git a/test/data/manifest-checksums/rhel_8.8-aarch64-vhd-jq_only b/test/data/manifest-checksums/rhel_8.8-aarch64-vhd-jq_only deleted file mode 100644 index efcaa413f4..0000000000 --- a/test/data/manifest-checksums/rhel_8.8-aarch64-vhd-jq_only +++ /dev/null @@ -1 +0,0 @@ -e80f2932dd14a56d53016fac943eff806763f6c3 diff --git a/test/data/manifest-checksums/rhel_8.8-aarch64-wsl-empty b/test/data/manifest-checksums/rhel_8.8-aarch64-wsl-empty new file mode 100644 index 0000000000..c9edf37b28 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.8-aarch64-wsl-empty @@ -0,0 +1 @@ +29687c6ca699337ad777d836007b7274321e1ad1 diff --git a/test/data/manifest-checksums/rhel_8.8-aarch64-wsl-jq_only b/test/data/manifest-checksums/rhel_8.8-aarch64-wsl-jq_only deleted file mode 100644 index e6e993a2d0..0000000000 --- a/test/data/manifest-checksums/rhel_8.8-aarch64-wsl-jq_only +++ /dev/null @@ -1 +0,0 @@ -b7197222521a60713c6f628bcad78353787a506e diff --git a/test/data/manifest-checksums/rhel_8.8-ppc64le-qcow2-empty b/test/data/manifest-checksums/rhel_8.8-ppc64le-qcow2-empty new file mode 100644 index 0000000000..d8c227e12f --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.8-ppc64le-qcow2-empty @@ -0,0 +1 @@ +bc78efff8f6087f09c5a4795d51833ee87490cd1 diff --git a/test/data/manifest-checksums/rhel_8.8-ppc64le-qcow2-jq_only b/test/data/manifest-checksums/rhel_8.8-ppc64le-qcow2-jq_only deleted file mode 100644 index 4af0b2eb0c..0000000000 --- a/test/data/manifest-checksums/rhel_8.8-ppc64le-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -9a8af93004f6c0622f589c568dc99489cec2847c diff --git a/test/data/manifest-checksums/rhel_8.8-ppc64le-qcow2-oscap_generic b/test/data/manifest-checksums/rhel_8.8-ppc64le-qcow2-oscap_generic index 0c61fa14c4..cc63fbe3f1 100644 --- a/test/data/manifest-checksums/rhel_8.8-ppc64le-qcow2-oscap_generic +++ b/test/data/manifest-checksums/rhel_8.8-ppc64le-qcow2-oscap_generic @@ -1 +1 @@ -b15d0b452a9fc45980ec078a8b6e553f5ba44228 +a4b52729270652b75b27b628cccc7c1e3e12591f diff --git a/test/data/manifest-checksums/rhel_8.8-ppc64le-tar-empty b/test/data/manifest-checksums/rhel_8.8-ppc64le-tar-empty new file mode 100644 index 0000000000..aa13fd7a66 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.8-ppc64le-tar-empty @@ -0,0 +1 @@ +a9c30d2782f68a0e69b7cfc06aac11e7a8790abb diff --git a/test/data/manifest-checksums/rhel_8.8-ppc64le-tar-jq_only b/test/data/manifest-checksums/rhel_8.8-ppc64le-tar-jq_only deleted file mode 100644 index 9869d0c3db..0000000000 --- a/test/data/manifest-checksums/rhel_8.8-ppc64le-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -256003e7ae2b74dc2829192278ad55861acd9594 diff --git a/test/data/manifest-checksums/rhel_8.8-s390x-qcow2-empty b/test/data/manifest-checksums/rhel_8.8-s390x-qcow2-empty new file mode 100644 index 0000000000..0f8e272ea5 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.8-s390x-qcow2-empty @@ -0,0 +1 @@ +91dbe29f72575822cfede45784d4da2b9cfe95e8 diff --git a/test/data/manifest-checksums/rhel_8.8-s390x-qcow2-jq_only b/test/data/manifest-checksums/rhel_8.8-s390x-qcow2-jq_only deleted file mode 100644 index dbae3fcae3..0000000000 --- a/test/data/manifest-checksums/rhel_8.8-s390x-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -0540323a2dcef4612ff9117972ecbd2788fd2893 diff --git a/test/data/manifest-checksums/rhel_8.8-s390x-qcow2-oscap_generic b/test/data/manifest-checksums/rhel_8.8-s390x-qcow2-oscap_generic index 3b0525fbbe..6e47d389b1 100644 --- a/test/data/manifest-checksums/rhel_8.8-s390x-qcow2-oscap_generic +++ b/test/data/manifest-checksums/rhel_8.8-s390x-qcow2-oscap_generic @@ -1 +1 @@ -acbc53b171d15e96a3cbabd17dd373643bed9597 +af0087a19673ce0f64c1e9a5642c2eaadd586f0b diff --git a/test/data/manifest-checksums/rhel_8.8-s390x-tar-empty b/test/data/manifest-checksums/rhel_8.8-s390x-tar-empty new file mode 100644 index 0000000000..954ee6f3f1 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.8-s390x-tar-empty @@ -0,0 +1 @@ +69eb4c17be65c04b0b8c56d9f3e144dceaa6104a diff --git a/test/data/manifest-checksums/rhel_8.8-s390x-tar-jq_only b/test/data/manifest-checksums/rhel_8.8-s390x-tar-jq_only deleted file mode 100644 index 7086e98ef3..0000000000 --- a/test/data/manifest-checksums/rhel_8.8-s390x-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -ff11955bb68cac3279e1de5166b40e23295b4bc3 diff --git a/test/data/manifest-checksums/rhel_8.8-x86_64-ami-all_customizations b/test/data/manifest-checksums/rhel_8.8-x86_64-ami-all_customizations index bedc6a8229..b8e1f5d5b5 100644 --- a/test/data/manifest-checksums/rhel_8.8-x86_64-ami-all_customizations +++ b/test/data/manifest-checksums/rhel_8.8-x86_64-ami-all_customizations @@ -1 +1 @@ -a7ab1cef81b60d8f3dc68ddb4e8e95fe9898dffa +a1b90cc5f3960969420ca33798bc83fdbd5cc8b3 diff --git a/test/data/manifest-checksums/rhel_8.8-x86_64-ami-empty b/test/data/manifest-checksums/rhel_8.8-x86_64-ami-empty new file mode 100644 index 0000000000..1f7443567a --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.8-x86_64-ami-empty @@ -0,0 +1 @@ +354e87171a7b3ca35a625b2fe73dad0d123cb2ea diff --git a/test/data/manifest-checksums/rhel_8.8-x86_64-ami-jq_only b/test/data/manifest-checksums/rhel_8.8-x86_64-ami-jq_only deleted file mode 100644 index 4eb31074a9..0000000000 --- a/test/data/manifest-checksums/rhel_8.8-x86_64-ami-jq_only +++ /dev/null @@ -1 +0,0 @@ -256bd11f4365fe2e01fb9245e5005d8ec298d67c diff --git a/test/data/manifest-checksums/rhel_8.8-x86_64-ami-partitioning_lvm b/test/data/manifest-checksums/rhel_8.8-x86_64-ami-partitioning_lvm index 6db6dd2adb..7b82197e98 100644 --- a/test/data/manifest-checksums/rhel_8.8-x86_64-ami-partitioning_lvm +++ b/test/data/manifest-checksums/rhel_8.8-x86_64-ami-partitioning_lvm @@ -1 +1 @@ -ef15743215a8a546246c38420ac99d07108ee5a8 +dfd1ac22fed388d7ecc51992a07c41b32719832b diff --git a/test/data/manifest-checksums/rhel_8.8-x86_64-ami-partitioning_lvm_noswap b/test/data/manifest-checksums/rhel_8.8-x86_64-ami-partitioning_lvm_noswap index 2f42f2ef8d..aa9e805ed1 100644 --- a/test/data/manifest-checksums/rhel_8.8-x86_64-ami-partitioning_lvm_noswap +++ b/test/data/manifest-checksums/rhel_8.8-x86_64-ami-partitioning_lvm_noswap @@ -1 +1 @@ -894c432727390112f51fc7772d7c8e09624e80ea +bf67e10106096b9c111b9f851c6158dac9441b7b diff --git a/test/data/manifest-checksums/rhel_8.8-x86_64-ami-partitioning_plain b/test/data/manifest-checksums/rhel_8.8-x86_64-ami-partitioning_plain index de69b9f5a7..538380ee0d 100644 --- a/test/data/manifest-checksums/rhel_8.8-x86_64-ami-partitioning_plain +++ b/test/data/manifest-checksums/rhel_8.8-x86_64-ami-partitioning_plain @@ -1 +1 @@ -cc26300de1d7ef60af6ea3e3e9ef83714127659f +c0e73fa6aff6f1ec0bd4a29d8b08428c2258b9a1 diff --git a/test/data/manifest-checksums/rhel_8.8-x86_64-azure_eap7_rhui-empty b/test/data/manifest-checksums/rhel_8.8-x86_64-azure_eap7_rhui-empty new file mode 100644 index 0000000000..fbbc54a299 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.8-x86_64-azure_eap7_rhui-empty @@ -0,0 +1 @@ +9a1b908f7823f646acaaba7b6ff32dc0a5a83d98 diff --git a/test/data/manifest-checksums/rhel_8.8-x86_64-azure_eap7_rhui-jq_only b/test/data/manifest-checksums/rhel_8.8-x86_64-azure_eap7_rhui-jq_only deleted file mode 100644 index 5d987fa8cb..0000000000 --- a/test/data/manifest-checksums/rhel_8.8-x86_64-azure_eap7_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -15a2e60788455f1ac7aa56f681ebcac22b95a820 diff --git a/test/data/manifest-checksums/rhel_8.8-x86_64-azure_rhui-empty b/test/data/manifest-checksums/rhel_8.8-x86_64-azure_rhui-empty new file mode 100644 index 0000000000..f8301ebbdc --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.8-x86_64-azure_rhui-empty @@ -0,0 +1 @@ +da0f6033e810e8e7cdc35c9214c7cdb3ed1613f5 diff --git a/test/data/manifest-checksums/rhel_8.8-x86_64-azure_rhui-jq_only b/test/data/manifest-checksums/rhel_8.8-x86_64-azure_rhui-jq_only deleted file mode 100644 index 2aa99adec8..0000000000 --- a/test/data/manifest-checksums/rhel_8.8-x86_64-azure_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -49d845830d7fd0b1416ca385fd355c227659d896 diff --git a/test/data/manifest-checksums/rhel_8.8-x86_64-azure_sap_rhui-empty b/test/data/manifest-checksums/rhel_8.8-x86_64-azure_sap_rhui-empty new file mode 100644 index 0000000000..1204472e4d --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.8-x86_64-azure_sap_rhui-empty @@ -0,0 +1 @@ +db0cd28ad6fad873c792f17ae7ae30b5feee9d95 diff --git a/test/data/manifest-checksums/rhel_8.8-x86_64-azure_sap_rhui-jq_only b/test/data/manifest-checksums/rhel_8.8-x86_64-azure_sap_rhui-jq_only deleted file mode 100644 index b84f7ebcc5..0000000000 --- a/test/data/manifest-checksums/rhel_8.8-x86_64-azure_sap_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -e7ac4fa858b5decd6ad517aadbd76c1ebab4426b diff --git a/test/data/manifest-checksums/rhel_8.8-x86_64-ec2-empty b/test/data/manifest-checksums/rhel_8.8-x86_64-ec2-empty new file mode 100644 index 0000000000..060b3636bf --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.8-x86_64-ec2-empty @@ -0,0 +1 @@ +90f80a207795145e3a80e4ad2bbc8190120a6771 diff --git a/test/data/manifest-checksums/rhel_8.8-x86_64-ec2-jq_only b/test/data/manifest-checksums/rhel_8.8-x86_64-ec2-jq_only deleted file mode 100644 index b3ff78b0ca..0000000000 --- a/test/data/manifest-checksums/rhel_8.8-x86_64-ec2-jq_only +++ /dev/null @@ -1 +0,0 @@ -aa58eea0fbb7629e72772b150e9460d859b6fcf6 diff --git a/test/data/manifest-checksums/rhel_8.8-x86_64-ec2_ha-empty b/test/data/manifest-checksums/rhel_8.8-x86_64-ec2_ha-empty new file mode 100644 index 0000000000..62574d145e --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.8-x86_64-ec2_ha-empty @@ -0,0 +1 @@ +1a18cdf5570046dfce44776087d5ef5b56a500bf diff --git a/test/data/manifest-checksums/rhel_8.8-x86_64-ec2_ha-jq_only b/test/data/manifest-checksums/rhel_8.8-x86_64-ec2_ha-jq_only deleted file mode 100644 index 50d55f6241..0000000000 --- a/test/data/manifest-checksums/rhel_8.8-x86_64-ec2_ha-jq_only +++ /dev/null @@ -1 +0,0 @@ -00701d64d60c74a1d0fa0235f797034e62ff0afe diff --git a/test/data/manifest-checksums/rhel_8.8-x86_64-edge_container-empty b/test/data/manifest-checksums/rhel_8.8-x86_64-edge_container-empty new file mode 100644 index 0000000000..d3ce0abe07 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.8-x86_64-edge_container-empty @@ -0,0 +1 @@ +70563bf7f63ae06848c70a6aefbeab4577e9cf6b diff --git a/test/data/manifest-checksums/rhel_8.8-x86_64-edge_container-jq_only b/test/data/manifest-checksums/rhel_8.8-x86_64-edge_container-jq_only deleted file mode 100644 index 90f693c47f..0000000000 --- a/test/data/manifest-checksums/rhel_8.8-x86_64-edge_container-jq_only +++ /dev/null @@ -1 +0,0 @@ -5431791af7e7845d68d60a3c49269841c7bd2044 diff --git a/test/data/manifest-checksums/rhel_8.8-x86_64-gce-empty b/test/data/manifest-checksums/rhel_8.8-x86_64-gce-empty new file mode 100644 index 0000000000..6041abe19d --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.8-x86_64-gce-empty @@ -0,0 +1 @@ +a9c1ecfaed974a01d81814992ea3a69e6b4a406d diff --git a/test/data/manifest-checksums/rhel_8.8-x86_64-gce-jq_only b/test/data/manifest-checksums/rhel_8.8-x86_64-gce-jq_only deleted file mode 100644 index ce648677e4..0000000000 --- a/test/data/manifest-checksums/rhel_8.8-x86_64-gce-jq_only +++ /dev/null @@ -1 +0,0 @@ -d6f4efbff248978d2360b6ba77d96e6a86a7c2ef diff --git a/test/data/manifest-checksums/rhel_8.8-x86_64-gce_rhui-empty b/test/data/manifest-checksums/rhel_8.8-x86_64-gce_rhui-empty new file mode 100644 index 0000000000..b07a3409fb --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.8-x86_64-gce_rhui-empty @@ -0,0 +1 @@ +f0930c92320276e9cc8c7f8bf5b66dc377cb8234 diff --git a/test/data/manifest-checksums/rhel_8.8-x86_64-gce_rhui-jq_only b/test/data/manifest-checksums/rhel_8.8-x86_64-gce_rhui-jq_only deleted file mode 100644 index 8cb26831a1..0000000000 --- a/test/data/manifest-checksums/rhel_8.8-x86_64-gce_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -691146cd87c2664857e80a5d654e3dcd676ba611 diff --git a/test/data/manifest-checksums/rhel_8.8-x86_64-image_installer-empty b/test/data/manifest-checksums/rhel_8.8-x86_64-image_installer-empty new file mode 100644 index 0000000000..c7d741b300 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.8-x86_64-image_installer-empty @@ -0,0 +1 @@ +3d274a561881172a8ce226af82d0d6b816a820eb diff --git a/test/data/manifest-checksums/rhel_8.8-x86_64-image_installer-jq_only b/test/data/manifest-checksums/rhel_8.8-x86_64-image_installer-jq_only deleted file mode 100644 index 8d1d96686e..0000000000 --- a/test/data/manifest-checksums/rhel_8.8-x86_64-image_installer-jq_only +++ /dev/null @@ -1 +0,0 @@ -95d62fc2ce861f083262e3f2f1bc2eea9606159f diff --git a/test/data/manifest-checksums/rhel_8.8-x86_64-minimal_raw-empty b/test/data/manifest-checksums/rhel_8.8-x86_64-minimal_raw-empty new file mode 100644 index 0000000000..d13c639a48 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.8-x86_64-minimal_raw-empty @@ -0,0 +1 @@ +b7454248a59f6678ecb800e8e94b3f23fccf3484 diff --git a/test/data/manifest-checksums/rhel_8.8-x86_64-minimal_raw-jq_only b/test/data/manifest-checksums/rhel_8.8-x86_64-minimal_raw-jq_only deleted file mode 100644 index f7ac4fdf25..0000000000 --- a/test/data/manifest-checksums/rhel_8.8-x86_64-minimal_raw-jq_only +++ /dev/null @@ -1 +0,0 @@ -eed70693539eaa4337b7e909035b395198867080 diff --git a/test/data/manifest-checksums/rhel_8.8-x86_64-oci-empty b/test/data/manifest-checksums/rhel_8.8-x86_64-oci-empty new file mode 100644 index 0000000000..3a90b11669 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.8-x86_64-oci-empty @@ -0,0 +1 @@ +3d930b8005be31b30b32777a328a6b5f43c3bd17 diff --git a/test/data/manifest-checksums/rhel_8.8-x86_64-oci-jq_only b/test/data/manifest-checksums/rhel_8.8-x86_64-oci-jq_only deleted file mode 100644 index a497a0584f..0000000000 --- a/test/data/manifest-checksums/rhel_8.8-x86_64-oci-jq_only +++ /dev/null @@ -1 +0,0 @@ -7df07e56b8772e9d78e6b89e46bce874cb4b1aca diff --git a/test/data/manifest-checksums/rhel_8.8-x86_64-openstack-empty b/test/data/manifest-checksums/rhel_8.8-x86_64-openstack-empty new file mode 100644 index 0000000000..f31d10be7b --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.8-x86_64-openstack-empty @@ -0,0 +1 @@ +deed057e3958a822fde56a09202950d388513a01 diff --git a/test/data/manifest-checksums/rhel_8.8-x86_64-openstack-jq_only b/test/data/manifest-checksums/rhel_8.8-x86_64-openstack-jq_only deleted file mode 100644 index f9f2813f4a..0000000000 --- a/test/data/manifest-checksums/rhel_8.8-x86_64-openstack-jq_only +++ /dev/null @@ -1 +0,0 @@ -fdea479dbadb788559163f42bbf143eb6589b403 diff --git a/test/data/manifest-checksums/rhel_8.8-x86_64-ova-empty b/test/data/manifest-checksums/rhel_8.8-x86_64-ova-empty new file mode 100644 index 0000000000..7ead24a4a1 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.8-x86_64-ova-empty @@ -0,0 +1 @@ +169539129526959284f4fb7e1f6c434e5196180a diff --git a/test/data/manifest-checksums/rhel_8.8-x86_64-ova-jq_only b/test/data/manifest-checksums/rhel_8.8-x86_64-ova-jq_only deleted file mode 100644 index 28ed20986f..0000000000 --- a/test/data/manifest-checksums/rhel_8.8-x86_64-ova-jq_only +++ /dev/null @@ -1 +0,0 @@ -216c7448dce4ccb00468b12bf056a097cb56b56b diff --git a/test/data/manifest-checksums/rhel_8.8-x86_64-qcow2-empty b/test/data/manifest-checksums/rhel_8.8-x86_64-qcow2-empty new file mode 100644 index 0000000000..3a90b11669 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.8-x86_64-qcow2-empty @@ -0,0 +1 @@ +3d930b8005be31b30b32777a328a6b5f43c3bd17 diff --git a/test/data/manifest-checksums/rhel_8.8-x86_64-qcow2-jq_only b/test/data/manifest-checksums/rhel_8.8-x86_64-qcow2-jq_only deleted file mode 100644 index a497a0584f..0000000000 --- a/test/data/manifest-checksums/rhel_8.8-x86_64-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -7df07e56b8772e9d78e6b89e46bce874cb4b1aca diff --git a/test/data/manifest-checksums/rhel_8.8-x86_64-qcow2-oscap_generic b/test/data/manifest-checksums/rhel_8.8-x86_64-qcow2-oscap_generic index 90cc29521c..4026bd5b89 100644 --- a/test/data/manifest-checksums/rhel_8.8-x86_64-qcow2-oscap_generic +++ b/test/data/manifest-checksums/rhel_8.8-x86_64-qcow2-oscap_generic @@ -1 +1 @@ -badd294f6519d7ddf24d605464dd42da005ca26b +b957010144519966d06c387198634b65171c0764 diff --git a/test/data/manifest-checksums/rhel_8.8-x86_64-tar-empty b/test/data/manifest-checksums/rhel_8.8-x86_64-tar-empty new file mode 100644 index 0000000000..d7d72cb425 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.8-x86_64-tar-empty @@ -0,0 +1 @@ +f543787229dacb34e4f08ffa7fa91d04759020ad diff --git a/test/data/manifest-checksums/rhel_8.8-x86_64-tar-jq_only b/test/data/manifest-checksums/rhel_8.8-x86_64-tar-jq_only deleted file mode 100644 index 7aab5b83b1..0000000000 --- a/test/data/manifest-checksums/rhel_8.8-x86_64-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -87a8d791fed34cdee8795fbbde6b807b7567060c diff --git a/test/data/manifest-checksums/rhel_8.8-x86_64-vhd-empty b/test/data/manifest-checksums/rhel_8.8-x86_64-vhd-empty new file mode 100644 index 0000000000..de9437c5fc --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.8-x86_64-vhd-empty @@ -0,0 +1 @@ +257fab8415d177b31f747d94c3ba15014333282e diff --git a/test/data/manifest-checksums/rhel_8.8-x86_64-vhd-jq_only b/test/data/manifest-checksums/rhel_8.8-x86_64-vhd-jq_only deleted file mode 100644 index bedc61bf38..0000000000 --- a/test/data/manifest-checksums/rhel_8.8-x86_64-vhd-jq_only +++ /dev/null @@ -1 +0,0 @@ -aefce2b45be04dc0a67cad59b35ab8a42557dcc1 diff --git a/test/data/manifest-checksums/rhel_8.8-x86_64-vmdk-empty b/test/data/manifest-checksums/rhel_8.8-x86_64-vmdk-empty new file mode 100644 index 0000000000..cc8e528386 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.8-x86_64-vmdk-empty @@ -0,0 +1 @@ +23a42c7c64337d550d36493d7fe3c02d680b2f5e diff --git a/test/data/manifest-checksums/rhel_8.8-x86_64-vmdk-jq_only b/test/data/manifest-checksums/rhel_8.8-x86_64-vmdk-jq_only deleted file mode 100644 index dea0d5d203..0000000000 --- a/test/data/manifest-checksums/rhel_8.8-x86_64-vmdk-jq_only +++ /dev/null @@ -1 +0,0 @@ -84f39e16ac72c6aa4cea2422b20509a79ecbb34c diff --git a/test/data/manifest-checksums/rhel_8.8-x86_64-wsl-empty b/test/data/manifest-checksums/rhel_8.8-x86_64-wsl-empty new file mode 100644 index 0000000000..573dee6dc8 --- /dev/null +++ b/test/data/manifest-checksums/rhel_8.8-x86_64-wsl-empty @@ -0,0 +1 @@ +af796608157a252a4061cbb74a9687863e81b3e6 diff --git a/test/data/manifest-checksums/rhel_8.8-x86_64-wsl-jq_only b/test/data/manifest-checksums/rhel_8.8-x86_64-wsl-jq_only deleted file mode 100644 index 5862cfe2c2..0000000000 --- a/test/data/manifest-checksums/rhel_8.8-x86_64-wsl-jq_only +++ /dev/null @@ -1 +0,0 @@ -8586c2693b8bf2f1f28154b4560dd904a5482320 diff --git a/test/data/manifest-checksums/rhel_9.0-aarch64-ami-all_customizations b/test/data/manifest-checksums/rhel_9.0-aarch64-ami-all_customizations index 3f8ad6d603..8a80120542 100644 --- a/test/data/manifest-checksums/rhel_9.0-aarch64-ami-all_customizations +++ b/test/data/manifest-checksums/rhel_9.0-aarch64-ami-all_customizations @@ -1 +1 @@ -f195480089e9e9ab962f4468f3ac3aeed19335c9 +5ca6381e0dc872e1aaf682423e530d0c20065819 diff --git a/test/data/manifest-checksums/rhel_9.0-aarch64-ami-empty b/test/data/manifest-checksums/rhel_9.0-aarch64-ami-empty new file mode 100644 index 0000000000..ae99b91b3d --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.0-aarch64-ami-empty @@ -0,0 +1 @@ +f2b5c59f027f7e74cd1b0456d15e0f25ccec2985 diff --git a/test/data/manifest-checksums/rhel_9.0-aarch64-ami-jq_only b/test/data/manifest-checksums/rhel_9.0-aarch64-ami-jq_only deleted file mode 100644 index 491a0910ed..0000000000 --- a/test/data/manifest-checksums/rhel_9.0-aarch64-ami-jq_only +++ /dev/null @@ -1 +0,0 @@ -173ec84a14621e1835e916a5aef46de162ff14a6 diff --git a/test/data/manifest-checksums/rhel_9.0-aarch64-ami-partitioning_lvm b/test/data/manifest-checksums/rhel_9.0-aarch64-ami-partitioning_lvm index 559eea2daa..6a43dcb0e7 100644 --- a/test/data/manifest-checksums/rhel_9.0-aarch64-ami-partitioning_lvm +++ b/test/data/manifest-checksums/rhel_9.0-aarch64-ami-partitioning_lvm @@ -1 +1 @@ -6fc44825b87a225b3a823d8181ff41dcaf858b2c +2b4a5ab8fae4c16540debb3ff59355d6f09f7467 diff --git a/test/data/manifest-checksums/rhel_9.0-aarch64-ami-partitioning_plain b/test/data/manifest-checksums/rhel_9.0-aarch64-ami-partitioning_plain index ccfebd1b95..1d2ebf2ec4 100644 --- a/test/data/manifest-checksums/rhel_9.0-aarch64-ami-partitioning_plain +++ b/test/data/manifest-checksums/rhel_9.0-aarch64-ami-partitioning_plain @@ -1 +1 @@ -492c8135777f7680390b8ff4b3d83c47fea25400 +8d7fdde92a19dc81a9ba088deff1689c39599175 diff --git a/test/data/manifest-checksums/rhel_9.0-aarch64-azure_rhui-empty b/test/data/manifest-checksums/rhel_9.0-aarch64-azure_rhui-empty new file mode 100644 index 0000000000..c95cb60f2b --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.0-aarch64-azure_rhui-empty @@ -0,0 +1 @@ +eb4bf80c8bc96e146cba9ccb981bca6b9758ab28 diff --git a/test/data/manifest-checksums/rhel_9.0-aarch64-azure_rhui-jq_only b/test/data/manifest-checksums/rhel_9.0-aarch64-azure_rhui-jq_only deleted file mode 100644 index 79de01a5c7..0000000000 --- a/test/data/manifest-checksums/rhel_9.0-aarch64-azure_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -86f38c508eaa7679ab891b8a78f4a80f26ec3373 diff --git a/test/data/manifest-checksums/rhel_9.0-aarch64-ec2-empty b/test/data/manifest-checksums/rhel_9.0-aarch64-ec2-empty new file mode 100644 index 0000000000..d14f5eaac8 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.0-aarch64-ec2-empty @@ -0,0 +1 @@ +6686faaad1b5ea0a09f8763753a1dc75a3514f03 diff --git a/test/data/manifest-checksums/rhel_9.0-aarch64-ec2-jq_only b/test/data/manifest-checksums/rhel_9.0-aarch64-ec2-jq_only deleted file mode 100644 index 785aab6cc0..0000000000 --- a/test/data/manifest-checksums/rhel_9.0-aarch64-ec2-jq_only +++ /dev/null @@ -1 +0,0 @@ -c2fe665a1a2efb740035cf918948877e212e74a7 diff --git a/test/data/manifest-checksums/rhel_9.0-aarch64-edge_container-empty b/test/data/manifest-checksums/rhel_9.0-aarch64-edge_container-empty new file mode 100644 index 0000000000..bc2f6472ff --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.0-aarch64-edge_container-empty @@ -0,0 +1 @@ +320d9d1d29bcf4aedd3334b3047130deb4b05da8 diff --git a/test/data/manifest-checksums/rhel_9.0-aarch64-edge_container-jq_only b/test/data/manifest-checksums/rhel_9.0-aarch64-edge_container-jq_only deleted file mode 100644 index fcaaa0e528..0000000000 --- a/test/data/manifest-checksums/rhel_9.0-aarch64-edge_container-jq_only +++ /dev/null @@ -1 +0,0 @@ -acdc86c355087f2c7dc66ed206b8bb035f60e200 diff --git a/test/data/manifest-checksums/rhel_9.0-aarch64-image_installer-empty b/test/data/manifest-checksums/rhel_9.0-aarch64-image_installer-empty new file mode 100644 index 0000000000..3922d8b716 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.0-aarch64-image_installer-empty @@ -0,0 +1 @@ +c7b8d152fe232e849c776cb8d7a878138140d215 diff --git a/test/data/manifest-checksums/rhel_9.0-aarch64-image_installer-jq_only b/test/data/manifest-checksums/rhel_9.0-aarch64-image_installer-jq_only deleted file mode 100644 index e60a8a2649..0000000000 --- a/test/data/manifest-checksums/rhel_9.0-aarch64-image_installer-jq_only +++ /dev/null @@ -1 +0,0 @@ -7b8e137c52f4cb6ad59530847ba6cc6adef7e170 diff --git a/test/data/manifest-checksums/rhel_9.0-aarch64-minimal_raw-empty b/test/data/manifest-checksums/rhel_9.0-aarch64-minimal_raw-empty new file mode 100644 index 0000000000..4989ee7694 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.0-aarch64-minimal_raw-empty @@ -0,0 +1 @@ +67d69ceb18604c7c71a6f5bf0c9e3230ce6a425d diff --git a/test/data/manifest-checksums/rhel_9.0-aarch64-minimal_raw-jq_only b/test/data/manifest-checksums/rhel_9.0-aarch64-minimal_raw-jq_only deleted file mode 100644 index 651d22fd00..0000000000 --- a/test/data/manifest-checksums/rhel_9.0-aarch64-minimal_raw-jq_only +++ /dev/null @@ -1 +0,0 @@ -6606b06ac026e97d1c4a2ee8756e28a980b04541 diff --git a/test/data/manifest-checksums/rhel_9.0-aarch64-openstack-empty b/test/data/manifest-checksums/rhel_9.0-aarch64-openstack-empty new file mode 100644 index 0000000000..54db97317c --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.0-aarch64-openstack-empty @@ -0,0 +1 @@ +bde793a63048fdb234250255945332c269e74aae diff --git a/test/data/manifest-checksums/rhel_9.0-aarch64-openstack-jq_only b/test/data/manifest-checksums/rhel_9.0-aarch64-openstack-jq_only deleted file mode 100644 index a9f9b0192a..0000000000 --- a/test/data/manifest-checksums/rhel_9.0-aarch64-openstack-jq_only +++ /dev/null @@ -1 +0,0 @@ -f837db41f20fc79ab5d0b3f4fb2d8ed3f9021c0f diff --git a/test/data/manifest-checksums/rhel_9.0-aarch64-pxe_tar_xz-empty b/test/data/manifest-checksums/rhel_9.0-aarch64-pxe_tar_xz-empty new file mode 100644 index 0000000000..fd13c3732f --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.0-aarch64-pxe_tar_xz-empty @@ -0,0 +1 @@ +1e62d689413e87553ffe973278124c71495b5ab2 diff --git a/test/data/manifest-checksums/rhel_9.0-aarch64-pxe_tar_xz-jq_only b/test/data/manifest-checksums/rhel_9.0-aarch64-pxe_tar_xz-jq_only deleted file mode 100644 index b79a924e27..0000000000 --- a/test/data/manifest-checksums/rhel_9.0-aarch64-pxe_tar_xz-jq_only +++ /dev/null @@ -1 +0,0 @@ -2f19e5ef80ed79c8d8c3428bb5b41bafe71d7c55 diff --git a/test/data/manifest-checksums/rhel_9.0-aarch64-qcow2-empty b/test/data/manifest-checksums/rhel_9.0-aarch64-qcow2-empty new file mode 100644 index 0000000000..5f7a9dcaae --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.0-aarch64-qcow2-empty @@ -0,0 +1 @@ +26b9f3bf7eb123bc0b8257929ada878681432792 diff --git a/test/data/manifest-checksums/rhel_9.0-aarch64-qcow2-jq_only b/test/data/manifest-checksums/rhel_9.0-aarch64-qcow2-jq_only deleted file mode 100644 index b973e502d3..0000000000 --- a/test/data/manifest-checksums/rhel_9.0-aarch64-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -228e235ad04db795139109a6e83af8fea17b8f39 diff --git a/test/data/manifest-checksums/rhel_9.0-aarch64-tar-empty b/test/data/manifest-checksums/rhel_9.0-aarch64-tar-empty new file mode 100644 index 0000000000..74afacbc9d --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.0-aarch64-tar-empty @@ -0,0 +1 @@ +154f7513ea7e9ff24162c5d18c2d68862f504dff diff --git a/test/data/manifest-checksums/rhel_9.0-aarch64-tar-jq_only b/test/data/manifest-checksums/rhel_9.0-aarch64-tar-jq_only deleted file mode 100644 index 751d99a38c..0000000000 --- a/test/data/manifest-checksums/rhel_9.0-aarch64-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -69ed08ac384ab5b2702c5d92600ac14a2ce9f414 diff --git a/test/data/manifest-checksums/rhel_9.0-aarch64-vagrant_libvirt-empty b/test/data/manifest-checksums/rhel_9.0-aarch64-vagrant_libvirt-empty new file mode 100644 index 0000000000..2a32496fd7 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.0-aarch64-vagrant_libvirt-empty @@ -0,0 +1 @@ +06a7cde6d57c5792a806f79e4add9458e7b3aeda diff --git a/test/data/manifest-checksums/rhel_9.0-aarch64-vagrant_libvirt-jq_only b/test/data/manifest-checksums/rhel_9.0-aarch64-vagrant_libvirt-jq_only deleted file mode 100644 index 37d152c424..0000000000 --- a/test/data/manifest-checksums/rhel_9.0-aarch64-vagrant_libvirt-jq_only +++ /dev/null @@ -1 +0,0 @@ -e2cad2a187be0949773283f55b386d6027da1309 diff --git a/test/data/manifest-checksums/rhel_9.0-aarch64-wsl-empty b/test/data/manifest-checksums/rhel_9.0-aarch64-wsl-empty new file mode 100644 index 0000000000..3e84077d21 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.0-aarch64-wsl-empty @@ -0,0 +1 @@ +e2306453c8aa8434a5bebfb3e860622639ef3402 diff --git a/test/data/manifest-checksums/rhel_9.0-aarch64-wsl-jq_only b/test/data/manifest-checksums/rhel_9.0-aarch64-wsl-jq_only deleted file mode 100644 index e4b121a6a4..0000000000 --- a/test/data/manifest-checksums/rhel_9.0-aarch64-wsl-jq_only +++ /dev/null @@ -1 +0,0 @@ -59d483f6d94b1ffff28173cb53e1f5381c5b531b diff --git a/test/data/manifest-checksums/rhel_9.0-ppc64le-qcow2-empty b/test/data/manifest-checksums/rhel_9.0-ppc64le-qcow2-empty new file mode 100644 index 0000000000..77583e4124 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.0-ppc64le-qcow2-empty @@ -0,0 +1 @@ +c72bba9720b9fe50417f70bf4ead4f95f5581e0e diff --git a/test/data/manifest-checksums/rhel_9.0-ppc64le-qcow2-jq_only b/test/data/manifest-checksums/rhel_9.0-ppc64le-qcow2-jq_only deleted file mode 100644 index d21281f14a..0000000000 --- a/test/data/manifest-checksums/rhel_9.0-ppc64le-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -40fca89e7495f5c3886d21d61b2f16d614c88016 diff --git a/test/data/manifest-checksums/rhel_9.0-ppc64le-tar-empty b/test/data/manifest-checksums/rhel_9.0-ppc64le-tar-empty new file mode 100644 index 0000000000..d09bc9ed6f --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.0-ppc64le-tar-empty @@ -0,0 +1 @@ +e532ce2fde305681ee13922d82c4d7d7115d8f15 diff --git a/test/data/manifest-checksums/rhel_9.0-ppc64le-tar-jq_only b/test/data/manifest-checksums/rhel_9.0-ppc64le-tar-jq_only deleted file mode 100644 index a9f4664314..0000000000 --- a/test/data/manifest-checksums/rhel_9.0-ppc64le-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -5c46d007efecc97518543447e07415a4a2ddcce0 diff --git a/test/data/manifest-checksums/rhel_9.0-s390x-qcow2-empty b/test/data/manifest-checksums/rhel_9.0-s390x-qcow2-empty new file mode 100644 index 0000000000..3ec8d549ee --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.0-s390x-qcow2-empty @@ -0,0 +1 @@ +66aa524c24f1bf12e9f9c3a0ef9f490b2b335054 diff --git a/test/data/manifest-checksums/rhel_9.0-s390x-qcow2-jq_only b/test/data/manifest-checksums/rhel_9.0-s390x-qcow2-jq_only deleted file mode 100644 index 89abea11ae..0000000000 --- a/test/data/manifest-checksums/rhel_9.0-s390x-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -89ef8c47d5a2f8a86d0fdbaa495030578cad4bcb diff --git a/test/data/manifest-checksums/rhel_9.0-s390x-tar-empty b/test/data/manifest-checksums/rhel_9.0-s390x-tar-empty new file mode 100644 index 0000000000..4913140795 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.0-s390x-tar-empty @@ -0,0 +1 @@ +d1db655a7e53643e0081bee100655278079db999 diff --git a/test/data/manifest-checksums/rhel_9.0-s390x-tar-jq_only b/test/data/manifest-checksums/rhel_9.0-s390x-tar-jq_only deleted file mode 100644 index 656f7aa917..0000000000 --- a/test/data/manifest-checksums/rhel_9.0-s390x-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -2b7eec0e0d477974c6cc159a69008e9f43a395fe diff --git a/test/data/manifest-checksums/rhel_9.0-x86_64-ami-all_customizations b/test/data/manifest-checksums/rhel_9.0-x86_64-ami-all_customizations index 61510def83..d232f93926 100644 --- a/test/data/manifest-checksums/rhel_9.0-x86_64-ami-all_customizations +++ b/test/data/manifest-checksums/rhel_9.0-x86_64-ami-all_customizations @@ -1 +1 @@ -76507f120a18c5824efbedeaf84a1158a657160c +3c2df021e2a8ae080bb6bcd47f061cbaca5a73c4 diff --git a/test/data/manifest-checksums/rhel_9.0-x86_64-ami-empty b/test/data/manifest-checksums/rhel_9.0-x86_64-ami-empty new file mode 100644 index 0000000000..8028e758aa --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.0-x86_64-ami-empty @@ -0,0 +1 @@ +7c8faaede9187a6bb56532e8717ffbdd5f9503b3 diff --git a/test/data/manifest-checksums/rhel_9.0-x86_64-ami-jq_only b/test/data/manifest-checksums/rhel_9.0-x86_64-ami-jq_only deleted file mode 100644 index 7e28a84170..0000000000 --- a/test/data/manifest-checksums/rhel_9.0-x86_64-ami-jq_only +++ /dev/null @@ -1 +0,0 @@ -019222232008cc0896b12ca4faa1215c76ad717e diff --git a/test/data/manifest-checksums/rhel_9.0-x86_64-ami-partitioning_lvm b/test/data/manifest-checksums/rhel_9.0-x86_64-ami-partitioning_lvm index 76e1443829..73ef7d0aaf 100644 --- a/test/data/manifest-checksums/rhel_9.0-x86_64-ami-partitioning_lvm +++ b/test/data/manifest-checksums/rhel_9.0-x86_64-ami-partitioning_lvm @@ -1 +1 @@ -b398254134e25ddfd435c1526c0276486f00de39 +afd396c8e163ca944a04bda335befb7440437fd1 diff --git a/test/data/manifest-checksums/rhel_9.0-x86_64-ami-partitioning_plain b/test/data/manifest-checksums/rhel_9.0-x86_64-ami-partitioning_plain index a7472c829f..07ebc6bbaa 100644 --- a/test/data/manifest-checksums/rhel_9.0-x86_64-ami-partitioning_plain +++ b/test/data/manifest-checksums/rhel_9.0-x86_64-ami-partitioning_plain @@ -1 +1 @@ -7ea263f120415b291f582bfac52c9ed3a2ec2ef7 +2f174d8fdc44216ca6ef923870217008362d7f76 diff --git a/test/data/manifest-checksums/rhel_9.0-x86_64-azure_rhui-empty b/test/data/manifest-checksums/rhel_9.0-x86_64-azure_rhui-empty new file mode 100644 index 0000000000..d061f1582b --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.0-x86_64-azure_rhui-empty @@ -0,0 +1 @@ +5b5005f703e637c503f40fd32b9e2df2b96f70f1 diff --git a/test/data/manifest-checksums/rhel_9.0-x86_64-azure_rhui-jq_only b/test/data/manifest-checksums/rhel_9.0-x86_64-azure_rhui-jq_only deleted file mode 100644 index 3c59ac81e2..0000000000 --- a/test/data/manifest-checksums/rhel_9.0-x86_64-azure_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -becfbc22c4e5e95145a725d25e2f89ef12bbaa1c diff --git a/test/data/manifest-checksums/rhel_9.0-x86_64-azure_sap_rhui-empty b/test/data/manifest-checksums/rhel_9.0-x86_64-azure_sap_rhui-empty new file mode 100644 index 0000000000..0a03006412 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.0-x86_64-azure_sap_rhui-empty @@ -0,0 +1 @@ +165d37f5a7f04b9d8b2c37d99e0fce2ce4eac370 diff --git a/test/data/manifest-checksums/rhel_9.0-x86_64-azure_sap_rhui-jq_only b/test/data/manifest-checksums/rhel_9.0-x86_64-azure_sap_rhui-jq_only deleted file mode 100644 index c6170119bb..0000000000 --- a/test/data/manifest-checksums/rhel_9.0-x86_64-azure_sap_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -9b03ae57ffe00d4b5f546c125cb4402391ecada3 diff --git a/test/data/manifest-checksums/rhel_9.0-x86_64-azure_sapapps_rhui-empty b/test/data/manifest-checksums/rhel_9.0-x86_64-azure_sapapps_rhui-empty new file mode 100644 index 0000000000..55ae9348ca --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.0-x86_64-azure_sapapps_rhui-empty @@ -0,0 +1 @@ +99c5028323a0d9bc1c08c735ff77ab282d9bb6ab diff --git a/test/data/manifest-checksums/rhel_9.0-x86_64-azure_sapapps_rhui-jq_only b/test/data/manifest-checksums/rhel_9.0-x86_64-azure_sapapps_rhui-jq_only deleted file mode 100644 index c521689c8f..0000000000 --- a/test/data/manifest-checksums/rhel_9.0-x86_64-azure_sapapps_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -579927796cf3026a388120cb0b789bf4635bcae0 diff --git a/test/data/manifest-checksums/rhel_9.0-x86_64-ec2-empty b/test/data/manifest-checksums/rhel_9.0-x86_64-ec2-empty new file mode 100644 index 0000000000..de71b6687c --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.0-x86_64-ec2-empty @@ -0,0 +1 @@ +629743e731762bb6d9284fbabd3d10a4c1a2472a diff --git a/test/data/manifest-checksums/rhel_9.0-x86_64-ec2-jq_only b/test/data/manifest-checksums/rhel_9.0-x86_64-ec2-jq_only deleted file mode 100644 index b957762b89..0000000000 --- a/test/data/manifest-checksums/rhel_9.0-x86_64-ec2-jq_only +++ /dev/null @@ -1 +0,0 @@ -ddb2d7fddcf5015da5f10f9e549f7057737392e7 diff --git a/test/data/manifest-checksums/rhel_9.0-x86_64-ec2_ha-empty b/test/data/manifest-checksums/rhel_9.0-x86_64-ec2_ha-empty new file mode 100644 index 0000000000..7f38c34bcd --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.0-x86_64-ec2_ha-empty @@ -0,0 +1 @@ +ace43ac6609579baaf1dcc9775e3a6ae783071c5 diff --git a/test/data/manifest-checksums/rhel_9.0-x86_64-ec2_ha-jq_only b/test/data/manifest-checksums/rhel_9.0-x86_64-ec2_ha-jq_only deleted file mode 100644 index a2dc88fd55..0000000000 --- a/test/data/manifest-checksums/rhel_9.0-x86_64-ec2_ha-jq_only +++ /dev/null @@ -1 +0,0 @@ -c3fdda7e4ed9194277c2d59cc5120ce0f46aa1e2 diff --git a/test/data/manifest-checksums/rhel_9.0-x86_64-edge_container-empty b/test/data/manifest-checksums/rhel_9.0-x86_64-edge_container-empty new file mode 100644 index 0000000000..0f0edc0d45 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.0-x86_64-edge_container-empty @@ -0,0 +1 @@ +31b93c1895b3ec95154acd946ee626d5c83f2760 diff --git a/test/data/manifest-checksums/rhel_9.0-x86_64-edge_container-jq_only b/test/data/manifest-checksums/rhel_9.0-x86_64-edge_container-jq_only deleted file mode 100644 index 988d94c9bf..0000000000 --- a/test/data/manifest-checksums/rhel_9.0-x86_64-edge_container-jq_only +++ /dev/null @@ -1 +0,0 @@ -00a2ad9fc9e1521e4426f2a852dca12be4c51c1b diff --git a/test/data/manifest-checksums/rhel_9.0-x86_64-gce-empty b/test/data/manifest-checksums/rhel_9.0-x86_64-gce-empty new file mode 100644 index 0000000000..2092afe9d5 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.0-x86_64-gce-empty @@ -0,0 +1 @@ +14b526460e21e3db15ad42178efb6289d3170564 diff --git a/test/data/manifest-checksums/rhel_9.0-x86_64-gce-jq_only b/test/data/manifest-checksums/rhel_9.0-x86_64-gce-jq_only deleted file mode 100644 index 98bc71be29..0000000000 --- a/test/data/manifest-checksums/rhel_9.0-x86_64-gce-jq_only +++ /dev/null @@ -1 +0,0 @@ -c5898a522bf68ebeb5a85e4103702bc03a952d2f diff --git a/test/data/manifest-checksums/rhel_9.0-x86_64-image_installer-empty b/test/data/manifest-checksums/rhel_9.0-x86_64-image_installer-empty new file mode 100644 index 0000000000..3bd67d0cea --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.0-x86_64-image_installer-empty @@ -0,0 +1 @@ +88221471ed25591a2060900b2163f0893e894f14 diff --git a/test/data/manifest-checksums/rhel_9.0-x86_64-image_installer-jq_only b/test/data/manifest-checksums/rhel_9.0-x86_64-image_installer-jq_only deleted file mode 100644 index 3c35ab97c4..0000000000 --- a/test/data/manifest-checksums/rhel_9.0-x86_64-image_installer-jq_only +++ /dev/null @@ -1 +0,0 @@ -ddd9e365d86f61a5d618f6a8e8e97d0e37ec652c diff --git a/test/data/manifest-checksums/rhel_9.0-x86_64-minimal_raw-empty b/test/data/manifest-checksums/rhel_9.0-x86_64-minimal_raw-empty new file mode 100644 index 0000000000..aa6b890b8c --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.0-x86_64-minimal_raw-empty @@ -0,0 +1 @@ +9eee3efec346bf7424b6ec1d84c4c90349a6b768 diff --git a/test/data/manifest-checksums/rhel_9.0-x86_64-minimal_raw-jq_only b/test/data/manifest-checksums/rhel_9.0-x86_64-minimal_raw-jq_only deleted file mode 100644 index 9478e1bb8b..0000000000 --- a/test/data/manifest-checksums/rhel_9.0-x86_64-minimal_raw-jq_only +++ /dev/null @@ -1 +0,0 @@ -033b5c25b1b95469da74097b299bd389b1f94872 diff --git a/test/data/manifest-checksums/rhel_9.0-x86_64-oci-empty b/test/data/manifest-checksums/rhel_9.0-x86_64-oci-empty new file mode 100644 index 0000000000..0ec7f4afa2 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.0-x86_64-oci-empty @@ -0,0 +1 @@ +64c82c3fea75567b0071e7b92eda19b2a86c6725 diff --git a/test/data/manifest-checksums/rhel_9.0-x86_64-oci-jq_only b/test/data/manifest-checksums/rhel_9.0-x86_64-oci-jq_only deleted file mode 100644 index e073fb96f6..0000000000 --- a/test/data/manifest-checksums/rhel_9.0-x86_64-oci-jq_only +++ /dev/null @@ -1 +0,0 @@ -435389b152a61b05b3df4cad314187ef14ae283b diff --git a/test/data/manifest-checksums/rhel_9.0-x86_64-openstack-empty b/test/data/manifest-checksums/rhel_9.0-x86_64-openstack-empty new file mode 100644 index 0000000000..45154a2905 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.0-x86_64-openstack-empty @@ -0,0 +1 @@ +bef797740271fe0ce5945a86bed6dd62e83bc438 diff --git a/test/data/manifest-checksums/rhel_9.0-x86_64-openstack-jq_only b/test/data/manifest-checksums/rhel_9.0-x86_64-openstack-jq_only deleted file mode 100644 index 993905231f..0000000000 --- a/test/data/manifest-checksums/rhel_9.0-x86_64-openstack-jq_only +++ /dev/null @@ -1 +0,0 @@ -7fb3e2365f6e12f10b48f9571e0355eed15ab0ab diff --git a/test/data/manifest-checksums/rhel_9.0-x86_64-ova-empty b/test/data/manifest-checksums/rhel_9.0-x86_64-ova-empty new file mode 100644 index 0000000000..7fbe1c9b74 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.0-x86_64-ova-empty @@ -0,0 +1 @@ +13abf2d7cfbe2d975dc753f776ec6cb14a5a8a59 diff --git a/test/data/manifest-checksums/rhel_9.0-x86_64-ova-jq_only b/test/data/manifest-checksums/rhel_9.0-x86_64-ova-jq_only deleted file mode 100644 index cea8b80326..0000000000 --- a/test/data/manifest-checksums/rhel_9.0-x86_64-ova-jq_only +++ /dev/null @@ -1 +0,0 @@ -1ff44931e7a813739fd9cb0ab878327273f2142d diff --git a/test/data/manifest-checksums/rhel_9.0-x86_64-pxe_tar_xz-empty b/test/data/manifest-checksums/rhel_9.0-x86_64-pxe_tar_xz-empty new file mode 100644 index 0000000000..4cf30f6d3e --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.0-x86_64-pxe_tar_xz-empty @@ -0,0 +1 @@ +e4a4678b10f2c7f6de3936bc46556c89eb4dd0f1 diff --git a/test/data/manifest-checksums/rhel_9.0-x86_64-pxe_tar_xz-jq_only b/test/data/manifest-checksums/rhel_9.0-x86_64-pxe_tar_xz-jq_only deleted file mode 100644 index cd8c54642c..0000000000 --- a/test/data/manifest-checksums/rhel_9.0-x86_64-pxe_tar_xz-jq_only +++ /dev/null @@ -1 +0,0 @@ -637594b81c42739e726a56999962dd2d7ac38022 diff --git a/test/data/manifest-checksums/rhel_9.0-x86_64-qcow2-empty b/test/data/manifest-checksums/rhel_9.0-x86_64-qcow2-empty new file mode 100644 index 0000000000..0ec7f4afa2 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.0-x86_64-qcow2-empty @@ -0,0 +1 @@ +64c82c3fea75567b0071e7b92eda19b2a86c6725 diff --git a/test/data/manifest-checksums/rhel_9.0-x86_64-qcow2-jq_only b/test/data/manifest-checksums/rhel_9.0-x86_64-qcow2-jq_only deleted file mode 100644 index e073fb96f6..0000000000 --- a/test/data/manifest-checksums/rhel_9.0-x86_64-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -435389b152a61b05b3df4cad314187ef14ae283b diff --git a/test/data/manifest-checksums/rhel_9.0-x86_64-tar-empty b/test/data/manifest-checksums/rhel_9.0-x86_64-tar-empty new file mode 100644 index 0000000000..294e593b9b --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.0-x86_64-tar-empty @@ -0,0 +1 @@ +d3183a4e4f300e088bf056e47faa084fe2af9543 diff --git a/test/data/manifest-checksums/rhel_9.0-x86_64-tar-jq_only b/test/data/manifest-checksums/rhel_9.0-x86_64-tar-jq_only deleted file mode 100644 index b97dec73b1..0000000000 --- a/test/data/manifest-checksums/rhel_9.0-x86_64-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -f9c9957b8f05cbaddf37028ad6658047b3301232 diff --git a/test/data/manifest-checksums/rhel_9.0-x86_64-vagrant_libvirt-empty b/test/data/manifest-checksums/rhel_9.0-x86_64-vagrant_libvirt-empty new file mode 100644 index 0000000000..5f13fc3284 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.0-x86_64-vagrant_libvirt-empty @@ -0,0 +1 @@ +77b785001c14f04029a47bfbd068f0142a72faf4 diff --git a/test/data/manifest-checksums/rhel_9.0-x86_64-vagrant_libvirt-jq_only b/test/data/manifest-checksums/rhel_9.0-x86_64-vagrant_libvirt-jq_only deleted file mode 100644 index d6941b3401..0000000000 --- a/test/data/manifest-checksums/rhel_9.0-x86_64-vagrant_libvirt-jq_only +++ /dev/null @@ -1 +0,0 @@ -50dbbe9ab94fd7cd0084fd8334f3e2b0ed7fa3ec diff --git a/test/data/manifest-checksums/rhel_9.0-x86_64-vagrant_virtualbox-empty b/test/data/manifest-checksums/rhel_9.0-x86_64-vagrant_virtualbox-empty new file mode 100644 index 0000000000..75335d4101 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.0-x86_64-vagrant_virtualbox-empty @@ -0,0 +1 @@ +f81540fc910fe4d7eb9039f24b5461706669abf8 diff --git a/test/data/manifest-checksums/rhel_9.0-x86_64-vagrant_virtualbox-jq_only b/test/data/manifest-checksums/rhel_9.0-x86_64-vagrant_virtualbox-jq_only deleted file mode 100644 index 9eb8250176..0000000000 --- a/test/data/manifest-checksums/rhel_9.0-x86_64-vagrant_virtualbox-jq_only +++ /dev/null @@ -1 +0,0 @@ -89c654b87f275c7010bc761707b7f97723288245 diff --git a/test/data/manifest-checksums/rhel_9.0-x86_64-vmdk-empty b/test/data/manifest-checksums/rhel_9.0-x86_64-vmdk-empty new file mode 100644 index 0000000000..6b96b0ba55 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.0-x86_64-vmdk-empty @@ -0,0 +1 @@ +dc68fe6c34c898dd82387bd10fb0db022962111b diff --git a/test/data/manifest-checksums/rhel_9.0-x86_64-vmdk-jq_only b/test/data/manifest-checksums/rhel_9.0-x86_64-vmdk-jq_only deleted file mode 100644 index 9944ecdc98..0000000000 --- a/test/data/manifest-checksums/rhel_9.0-x86_64-vmdk-jq_only +++ /dev/null @@ -1 +0,0 @@ -a6f977820ecec7f1e96bfd22c16f1fc6d6bf1e20 diff --git a/test/data/manifest-checksums/rhel_9.0-x86_64-wsl-empty b/test/data/manifest-checksums/rhel_9.0-x86_64-wsl-empty new file mode 100644 index 0000000000..96bf406699 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.0-x86_64-wsl-empty @@ -0,0 +1 @@ +4c0a401d8dd184bccb78cae838d802faa2088dc5 diff --git a/test/data/manifest-checksums/rhel_9.0-x86_64-wsl-jq_only b/test/data/manifest-checksums/rhel_9.0-x86_64-wsl-jq_only deleted file mode 100644 index c443be464c..0000000000 --- a/test/data/manifest-checksums/rhel_9.0-x86_64-wsl-jq_only +++ /dev/null @@ -1 +0,0 @@ -011fbae5e14fb5fc71343095b04102347f90a138 diff --git a/test/data/manifest-checksums/rhel_9.2-aarch64-ami-all_customizations b/test/data/manifest-checksums/rhel_9.2-aarch64-ami-all_customizations index 5cfcd63ee3..0828645702 100644 --- a/test/data/manifest-checksums/rhel_9.2-aarch64-ami-all_customizations +++ b/test/data/manifest-checksums/rhel_9.2-aarch64-ami-all_customizations @@ -1 +1 @@ -9d3224df6458e7f2b0407b6069d9e8b8c6932eed +c1cf71293d7232b71258db2af29ca4ed33291758 diff --git a/test/data/manifest-checksums/rhel_9.2-aarch64-ami-empty b/test/data/manifest-checksums/rhel_9.2-aarch64-ami-empty new file mode 100644 index 0000000000..7989f4a9c6 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.2-aarch64-ami-empty @@ -0,0 +1 @@ +d6cae554615e057d084470775d34eccda6b4f11c diff --git a/test/data/manifest-checksums/rhel_9.2-aarch64-ami-jq_only b/test/data/manifest-checksums/rhel_9.2-aarch64-ami-jq_only deleted file mode 100644 index a708c54852..0000000000 --- a/test/data/manifest-checksums/rhel_9.2-aarch64-ami-jq_only +++ /dev/null @@ -1 +0,0 @@ -215af4f1286dcad1de2db0e41b94906775ac215a diff --git a/test/data/manifest-checksums/rhel_9.2-aarch64-ami-partitioning_lvm b/test/data/manifest-checksums/rhel_9.2-aarch64-ami-partitioning_lvm index fc9cf05d5c..85d90756f3 100644 --- a/test/data/manifest-checksums/rhel_9.2-aarch64-ami-partitioning_lvm +++ b/test/data/manifest-checksums/rhel_9.2-aarch64-ami-partitioning_lvm @@ -1 +1 @@ -3d5528423307ca008a6fba089f6781ce4eda840e +248f729a60c030582cdace265261b8c8382a7d25 diff --git a/test/data/manifest-checksums/rhel_9.2-aarch64-ami-partitioning_plain b/test/data/manifest-checksums/rhel_9.2-aarch64-ami-partitioning_plain index ac3963f85d..5a1e7844cd 100644 --- a/test/data/manifest-checksums/rhel_9.2-aarch64-ami-partitioning_plain +++ b/test/data/manifest-checksums/rhel_9.2-aarch64-ami-partitioning_plain @@ -1 +1 @@ -47d08419eb0a044d5fec1484f7a00380e002f9f8 +27e812180fdcdb8ab8ce5b3cb5b8ac5f4b9979ac diff --git a/test/data/manifest-checksums/rhel_9.2-aarch64-azure_rhui-empty b/test/data/manifest-checksums/rhel_9.2-aarch64-azure_rhui-empty new file mode 100644 index 0000000000..efb0f8c652 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.2-aarch64-azure_rhui-empty @@ -0,0 +1 @@ +a0558c1cc3b387b6fc2e0fcf6a4c019d32ea5bc2 diff --git a/test/data/manifest-checksums/rhel_9.2-aarch64-azure_rhui-jq_only b/test/data/manifest-checksums/rhel_9.2-aarch64-azure_rhui-jq_only deleted file mode 100644 index 2eb07af075..0000000000 --- a/test/data/manifest-checksums/rhel_9.2-aarch64-azure_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -a331f7a3c0d1828c215f9a59bd841021435de63c diff --git a/test/data/manifest-checksums/rhel_9.2-aarch64-ec2-empty b/test/data/manifest-checksums/rhel_9.2-aarch64-ec2-empty new file mode 100644 index 0000000000..d274e1e6c8 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.2-aarch64-ec2-empty @@ -0,0 +1 @@ +fa5f3258b198b39cd206f85c5f99026d05183b0e diff --git a/test/data/manifest-checksums/rhel_9.2-aarch64-ec2-jq_only b/test/data/manifest-checksums/rhel_9.2-aarch64-ec2-jq_only deleted file mode 100644 index 677e0d282e..0000000000 --- a/test/data/manifest-checksums/rhel_9.2-aarch64-ec2-jq_only +++ /dev/null @@ -1 +0,0 @@ -15275cd0ff246126c353ae6ff5416fa7b69cc2f6 diff --git a/test/data/manifest-checksums/rhel_9.2-aarch64-edge_container-empty b/test/data/manifest-checksums/rhel_9.2-aarch64-edge_container-empty new file mode 100644 index 0000000000..7cb0a15f5d --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.2-aarch64-edge_container-empty @@ -0,0 +1 @@ +181fc65f0cb5300a0de31ddf8f605eb491772f87 diff --git a/test/data/manifest-checksums/rhel_9.2-aarch64-edge_container-jq_only b/test/data/manifest-checksums/rhel_9.2-aarch64-edge_container-jq_only deleted file mode 100644 index 18fd5ed69e..0000000000 --- a/test/data/manifest-checksums/rhel_9.2-aarch64-edge_container-jq_only +++ /dev/null @@ -1 +0,0 @@ -a21dde554e59609e21b0e614b05047a694bf14a6 diff --git a/test/data/manifest-checksums/rhel_9.2-aarch64-image_installer-empty b/test/data/manifest-checksums/rhel_9.2-aarch64-image_installer-empty new file mode 100644 index 0000000000..da7cd3d3f6 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.2-aarch64-image_installer-empty @@ -0,0 +1 @@ +afd0808bf4d8e5d16b81027a34da0689768f7049 diff --git a/test/data/manifest-checksums/rhel_9.2-aarch64-image_installer-jq_only b/test/data/manifest-checksums/rhel_9.2-aarch64-image_installer-jq_only deleted file mode 100644 index 014dc33ce4..0000000000 --- a/test/data/manifest-checksums/rhel_9.2-aarch64-image_installer-jq_only +++ /dev/null @@ -1 +0,0 @@ -29d891d744c42e35fca09714e86c23e9070abfd7 diff --git a/test/data/manifest-checksums/rhel_9.2-aarch64-minimal_raw-empty b/test/data/manifest-checksums/rhel_9.2-aarch64-minimal_raw-empty new file mode 100644 index 0000000000..1d73fd0d10 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.2-aarch64-minimal_raw-empty @@ -0,0 +1 @@ +f565f64a0b37f107ac671a7033e7f9f9c3997cea diff --git a/test/data/manifest-checksums/rhel_9.2-aarch64-minimal_raw-jq_only b/test/data/manifest-checksums/rhel_9.2-aarch64-minimal_raw-jq_only deleted file mode 100644 index 2f2f8df49c..0000000000 --- a/test/data/manifest-checksums/rhel_9.2-aarch64-minimal_raw-jq_only +++ /dev/null @@ -1 +0,0 @@ -c3022a1b15097bd8565318ef96b2fa8deda3cfa7 diff --git a/test/data/manifest-checksums/rhel_9.2-aarch64-openstack-empty b/test/data/manifest-checksums/rhel_9.2-aarch64-openstack-empty new file mode 100644 index 0000000000..f15bf8716a --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.2-aarch64-openstack-empty @@ -0,0 +1 @@ +6f470769884507728c7d30d5fb0815125c07a7a2 diff --git a/test/data/manifest-checksums/rhel_9.2-aarch64-openstack-jq_only b/test/data/manifest-checksums/rhel_9.2-aarch64-openstack-jq_only deleted file mode 100644 index 0bff4f7fec..0000000000 --- a/test/data/manifest-checksums/rhel_9.2-aarch64-openstack-jq_only +++ /dev/null @@ -1 +0,0 @@ -724a0cbdf84e9a12cadead593cb412139cccb2ee diff --git a/test/data/manifest-checksums/rhel_9.2-aarch64-pxe_tar_xz-empty b/test/data/manifest-checksums/rhel_9.2-aarch64-pxe_tar_xz-empty new file mode 100644 index 0000000000..f267c39649 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.2-aarch64-pxe_tar_xz-empty @@ -0,0 +1 @@ +9f7d031a066670481b089abf44b4e3a00c831ed9 diff --git a/test/data/manifest-checksums/rhel_9.2-aarch64-pxe_tar_xz-jq_only b/test/data/manifest-checksums/rhel_9.2-aarch64-pxe_tar_xz-jq_only deleted file mode 100644 index 20bbe2b458..0000000000 --- a/test/data/manifest-checksums/rhel_9.2-aarch64-pxe_tar_xz-jq_only +++ /dev/null @@ -1 +0,0 @@ -5d63b97ef3ed4d3ef5f6ef963adf5e7aae0ebc3c diff --git a/test/data/manifest-checksums/rhel_9.2-aarch64-qcow2-empty b/test/data/manifest-checksums/rhel_9.2-aarch64-qcow2-empty new file mode 100644 index 0000000000..af33c4c5c1 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.2-aarch64-qcow2-empty @@ -0,0 +1 @@ +dc53c2bd757944a6c5af1a0ac647094daa2c7223 diff --git a/test/data/manifest-checksums/rhel_9.2-aarch64-qcow2-jq_only b/test/data/manifest-checksums/rhel_9.2-aarch64-qcow2-jq_only deleted file mode 100644 index e6b977ef14..0000000000 --- a/test/data/manifest-checksums/rhel_9.2-aarch64-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -64a62ff4a99f972fa26609653a53d3c317b07168 diff --git a/test/data/manifest-checksums/rhel_9.2-aarch64-qcow2-oscap_generic b/test/data/manifest-checksums/rhel_9.2-aarch64-qcow2-oscap_generic index 3626b01bc7..0f7a4e610f 100644 --- a/test/data/manifest-checksums/rhel_9.2-aarch64-qcow2-oscap_generic +++ b/test/data/manifest-checksums/rhel_9.2-aarch64-qcow2-oscap_generic @@ -1 +1 @@ -9cdda9e1a98fb5bfa7597c8d81decbd82b1a7627 +ab33ff488e6eef9fbe3be335b6d13d36f14cdda0 diff --git a/test/data/manifest-checksums/rhel_9.2-aarch64-tar-empty b/test/data/manifest-checksums/rhel_9.2-aarch64-tar-empty new file mode 100644 index 0000000000..798e064061 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.2-aarch64-tar-empty @@ -0,0 +1 @@ +ed404c8152a8a47f2ff6915287b14817fa64594d diff --git a/test/data/manifest-checksums/rhel_9.2-aarch64-tar-jq_only b/test/data/manifest-checksums/rhel_9.2-aarch64-tar-jq_only deleted file mode 100644 index 74454fb776..0000000000 --- a/test/data/manifest-checksums/rhel_9.2-aarch64-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -64d75ac3045d78e99fd4b602948ea9fb9a85c516 diff --git a/test/data/manifest-checksums/rhel_9.2-aarch64-vagrant_libvirt-empty b/test/data/manifest-checksums/rhel_9.2-aarch64-vagrant_libvirt-empty new file mode 100644 index 0000000000..7542c619ca --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.2-aarch64-vagrant_libvirt-empty @@ -0,0 +1 @@ +12ecdda968aa7a947abfe6d526fbc1594c990ad5 diff --git a/test/data/manifest-checksums/rhel_9.2-aarch64-vagrant_libvirt-jq_only b/test/data/manifest-checksums/rhel_9.2-aarch64-vagrant_libvirt-jq_only deleted file mode 100644 index ad4922dda2..0000000000 --- a/test/data/manifest-checksums/rhel_9.2-aarch64-vagrant_libvirt-jq_only +++ /dev/null @@ -1 +0,0 @@ -04f4adaadd227f3bbd8add7e3fbeb83eb8f94bfa diff --git a/test/data/manifest-checksums/rhel_9.2-aarch64-wsl-empty b/test/data/manifest-checksums/rhel_9.2-aarch64-wsl-empty new file mode 100644 index 0000000000..42dab2faea --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.2-aarch64-wsl-empty @@ -0,0 +1 @@ +376533c7b4c32bfed46e16c98ff7ba6e54c41e59 diff --git a/test/data/manifest-checksums/rhel_9.2-aarch64-wsl-jq_only b/test/data/manifest-checksums/rhel_9.2-aarch64-wsl-jq_only deleted file mode 100644 index 5b0ac44bd8..0000000000 --- a/test/data/manifest-checksums/rhel_9.2-aarch64-wsl-jq_only +++ /dev/null @@ -1 +0,0 @@ -dffe08ee6003b0dc288e8496e2e56e962d12e5b2 diff --git a/test/data/manifest-checksums/rhel_9.2-ppc64le-qcow2-empty b/test/data/manifest-checksums/rhel_9.2-ppc64le-qcow2-empty new file mode 100644 index 0000000000..ef69c5d12e --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.2-ppc64le-qcow2-empty @@ -0,0 +1 @@ +20339948602f0ed087896fb5548e52367c5d7063 diff --git a/test/data/manifest-checksums/rhel_9.2-ppc64le-qcow2-jq_only b/test/data/manifest-checksums/rhel_9.2-ppc64le-qcow2-jq_only deleted file mode 100644 index a394815282..0000000000 --- a/test/data/manifest-checksums/rhel_9.2-ppc64le-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -2487436ef8b52c10b33c03aae3600efe5a998f50 diff --git a/test/data/manifest-checksums/rhel_9.2-ppc64le-qcow2-oscap_generic b/test/data/manifest-checksums/rhel_9.2-ppc64le-qcow2-oscap_generic index 4676edcf69..47c8f8cbe1 100644 --- a/test/data/manifest-checksums/rhel_9.2-ppc64le-qcow2-oscap_generic +++ b/test/data/manifest-checksums/rhel_9.2-ppc64le-qcow2-oscap_generic @@ -1 +1 @@ -092177334e0471edb00f3cdd20f54e7bc82ff855 +b55417ace20ffa8b8cc44a5235944a0a2c09154d diff --git a/test/data/manifest-checksums/rhel_9.2-ppc64le-tar-empty b/test/data/manifest-checksums/rhel_9.2-ppc64le-tar-empty new file mode 100644 index 0000000000..ee209c4763 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.2-ppc64le-tar-empty @@ -0,0 +1 @@ +9fa1c0fd01a76acb92d4993d0f4be943fa034a41 diff --git a/test/data/manifest-checksums/rhel_9.2-ppc64le-tar-jq_only b/test/data/manifest-checksums/rhel_9.2-ppc64le-tar-jq_only deleted file mode 100644 index 61dfa34d1f..0000000000 --- a/test/data/manifest-checksums/rhel_9.2-ppc64le-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -ae0d402f0a60862614ba1ade3728e2db21a73862 diff --git a/test/data/manifest-checksums/rhel_9.2-s390x-qcow2-empty b/test/data/manifest-checksums/rhel_9.2-s390x-qcow2-empty new file mode 100644 index 0000000000..1477dff6ef --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.2-s390x-qcow2-empty @@ -0,0 +1 @@ +a509449b596c5bec7aafbe877b126446e734a3a0 diff --git a/test/data/manifest-checksums/rhel_9.2-s390x-qcow2-jq_only b/test/data/manifest-checksums/rhel_9.2-s390x-qcow2-jq_only deleted file mode 100644 index 362e631154..0000000000 --- a/test/data/manifest-checksums/rhel_9.2-s390x-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -cf9eb6d31cf4ea2fee3b0ee2804f82784546aeb0 diff --git a/test/data/manifest-checksums/rhel_9.2-s390x-qcow2-oscap_generic b/test/data/manifest-checksums/rhel_9.2-s390x-qcow2-oscap_generic index de03c36157..b1ff4b810a 100644 --- a/test/data/manifest-checksums/rhel_9.2-s390x-qcow2-oscap_generic +++ b/test/data/manifest-checksums/rhel_9.2-s390x-qcow2-oscap_generic @@ -1 +1 @@ -a20279ef505688be968837dce09d40907859c0d3 +5ce06ab4303a4b3302a21fd9548b433af70948fd diff --git a/test/data/manifest-checksums/rhel_9.2-s390x-tar-empty b/test/data/manifest-checksums/rhel_9.2-s390x-tar-empty new file mode 100644 index 0000000000..e1ae57d21b --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.2-s390x-tar-empty @@ -0,0 +1 @@ +124bcf5a423b06f50bef6288e07252bf57d137fb diff --git a/test/data/manifest-checksums/rhel_9.2-s390x-tar-jq_only b/test/data/manifest-checksums/rhel_9.2-s390x-tar-jq_only deleted file mode 100644 index 1722078bbe..0000000000 --- a/test/data/manifest-checksums/rhel_9.2-s390x-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -2dddef7e79c17e4ec21b562734eed39b38ba0702 diff --git a/test/data/manifest-checksums/rhel_9.2-x86_64-ami-all_customizations b/test/data/manifest-checksums/rhel_9.2-x86_64-ami-all_customizations index af33ef9781..7234ee0084 100644 --- a/test/data/manifest-checksums/rhel_9.2-x86_64-ami-all_customizations +++ b/test/data/manifest-checksums/rhel_9.2-x86_64-ami-all_customizations @@ -1 +1 @@ -9d1ee18c3dbfa13d3bb500da06c3389cdee22797 +d20d9d5d4ef6f180828b4a34905295f8a7e7a439 diff --git a/test/data/manifest-checksums/rhel_9.2-x86_64-ami-empty b/test/data/manifest-checksums/rhel_9.2-x86_64-ami-empty new file mode 100644 index 0000000000..583c0cf17b --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.2-x86_64-ami-empty @@ -0,0 +1 @@ +f6511afeee4f19cc40bda1462b6d3a8e0fbc23e5 diff --git a/test/data/manifest-checksums/rhel_9.2-x86_64-ami-jq_only b/test/data/manifest-checksums/rhel_9.2-x86_64-ami-jq_only deleted file mode 100644 index da9e3aeff2..0000000000 --- a/test/data/manifest-checksums/rhel_9.2-x86_64-ami-jq_only +++ /dev/null @@ -1 +0,0 @@ -7b2b4748ad157a12ab635fc83c2e51de54e75123 diff --git a/test/data/manifest-checksums/rhel_9.2-x86_64-ami-partitioning_lvm b/test/data/manifest-checksums/rhel_9.2-x86_64-ami-partitioning_lvm index 5b75bff7b5..fbe1c035a9 100644 --- a/test/data/manifest-checksums/rhel_9.2-x86_64-ami-partitioning_lvm +++ b/test/data/manifest-checksums/rhel_9.2-x86_64-ami-partitioning_lvm @@ -1 +1 @@ -d2c96d5b9b0be74f819d39e4a8c24b23749e5583 +3c0c80546a062c9f745177708b75490f475b589b diff --git a/test/data/manifest-checksums/rhel_9.2-x86_64-ami-partitioning_plain b/test/data/manifest-checksums/rhel_9.2-x86_64-ami-partitioning_plain index e63d498b60..ffd22c4f80 100644 --- a/test/data/manifest-checksums/rhel_9.2-x86_64-ami-partitioning_plain +++ b/test/data/manifest-checksums/rhel_9.2-x86_64-ami-partitioning_plain @@ -1 +1 @@ -74db18cfa9f8b8d991402b925da3e5e56c65adfc +ef15a2cc0651d4487e73c49d484b9cc032ed8cc3 diff --git a/test/data/manifest-checksums/rhel_9.2-x86_64-azure_rhui-empty b/test/data/manifest-checksums/rhel_9.2-x86_64-azure_rhui-empty new file mode 100644 index 0000000000..4cff8c1189 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.2-x86_64-azure_rhui-empty @@ -0,0 +1 @@ +a9bcf1f422b5d77d567272a366d85a1f04f225c8 diff --git a/test/data/manifest-checksums/rhel_9.2-x86_64-azure_rhui-jq_only b/test/data/manifest-checksums/rhel_9.2-x86_64-azure_rhui-jq_only deleted file mode 100644 index 82ca4efdef..0000000000 --- a/test/data/manifest-checksums/rhel_9.2-x86_64-azure_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -9060622262adcf75d9205aa6f68d1284dd9ccc21 diff --git a/test/data/manifest-checksums/rhel_9.2-x86_64-azure_sap_rhui-empty b/test/data/manifest-checksums/rhel_9.2-x86_64-azure_sap_rhui-empty new file mode 100644 index 0000000000..1dd7c5beff --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.2-x86_64-azure_sap_rhui-empty @@ -0,0 +1 @@ +4243f0f99afc92ca594028a628be1b0d9e6b71d4 diff --git a/test/data/manifest-checksums/rhel_9.2-x86_64-azure_sap_rhui-jq_only b/test/data/manifest-checksums/rhel_9.2-x86_64-azure_sap_rhui-jq_only deleted file mode 100644 index 19c7c2d680..0000000000 --- a/test/data/manifest-checksums/rhel_9.2-x86_64-azure_sap_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -738368e730e7e1b82bc009172c364fbc2131fa6e diff --git a/test/data/manifest-checksums/rhel_9.2-x86_64-azure_sapapps_rhui-empty b/test/data/manifest-checksums/rhel_9.2-x86_64-azure_sapapps_rhui-empty new file mode 100644 index 0000000000..4081d2398a --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.2-x86_64-azure_sapapps_rhui-empty @@ -0,0 +1 @@ +bb196a4aed86eba3db1793091db4da6a40ff0d1d diff --git a/test/data/manifest-checksums/rhel_9.2-x86_64-azure_sapapps_rhui-jq_only b/test/data/manifest-checksums/rhel_9.2-x86_64-azure_sapapps_rhui-jq_only deleted file mode 100644 index ee18c1cef5..0000000000 --- a/test/data/manifest-checksums/rhel_9.2-x86_64-azure_sapapps_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -e6c150c2781abade024d2cd8ad0127ec13e0debb diff --git a/test/data/manifest-checksums/rhel_9.2-x86_64-ec2-empty b/test/data/manifest-checksums/rhel_9.2-x86_64-ec2-empty new file mode 100644 index 0000000000..2aa9a1cf92 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.2-x86_64-ec2-empty @@ -0,0 +1 @@ +a0f6ed12524648bf69b6d58e880ed8a197fb3c49 diff --git a/test/data/manifest-checksums/rhel_9.2-x86_64-ec2-jq_only b/test/data/manifest-checksums/rhel_9.2-x86_64-ec2-jq_only deleted file mode 100644 index 66e0396ddc..0000000000 --- a/test/data/manifest-checksums/rhel_9.2-x86_64-ec2-jq_only +++ /dev/null @@ -1 +0,0 @@ -9ca2fb03883b39991fbe4bc1149995d8588c8cb9 diff --git a/test/data/manifest-checksums/rhel_9.2-x86_64-ec2_ha-empty b/test/data/manifest-checksums/rhel_9.2-x86_64-ec2_ha-empty new file mode 100644 index 0000000000..b2bb3f6467 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.2-x86_64-ec2_ha-empty @@ -0,0 +1 @@ +5d9db276c5ec084fb565908265f64145cb1cf47f diff --git a/test/data/manifest-checksums/rhel_9.2-x86_64-ec2_ha-jq_only b/test/data/manifest-checksums/rhel_9.2-x86_64-ec2_ha-jq_only deleted file mode 100644 index 1d0a33979b..0000000000 --- a/test/data/manifest-checksums/rhel_9.2-x86_64-ec2_ha-jq_only +++ /dev/null @@ -1 +0,0 @@ -cfdd44655aae7032d793b542df4c6ff27191746d diff --git a/test/data/manifest-checksums/rhel_9.2-x86_64-edge_container-empty b/test/data/manifest-checksums/rhel_9.2-x86_64-edge_container-empty new file mode 100644 index 0000000000..9b632c8bfd --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.2-x86_64-edge_container-empty @@ -0,0 +1 @@ +3fb22b2b33bf9f12865aeecab7a00332eb1aca83 diff --git a/test/data/manifest-checksums/rhel_9.2-x86_64-edge_container-jq_only b/test/data/manifest-checksums/rhel_9.2-x86_64-edge_container-jq_only deleted file mode 100644 index a4b1d82f2f..0000000000 --- a/test/data/manifest-checksums/rhel_9.2-x86_64-edge_container-jq_only +++ /dev/null @@ -1 +0,0 @@ -36bef717b85941463d4c43ff5eba764f1ea5985d diff --git a/test/data/manifest-checksums/rhel_9.2-x86_64-gce-empty b/test/data/manifest-checksums/rhel_9.2-x86_64-gce-empty new file mode 100644 index 0000000000..0881961054 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.2-x86_64-gce-empty @@ -0,0 +1 @@ +cef24ae4dec686983d8414cc7edacae05f2be6b9 diff --git a/test/data/manifest-checksums/rhel_9.2-x86_64-gce-jq_only b/test/data/manifest-checksums/rhel_9.2-x86_64-gce-jq_only deleted file mode 100644 index 2068389e82..0000000000 --- a/test/data/manifest-checksums/rhel_9.2-x86_64-gce-jq_only +++ /dev/null @@ -1 +0,0 @@ -5fc4040fa8b9b5c4b62021d3319c87775eca371b diff --git a/test/data/manifest-checksums/rhel_9.2-x86_64-image_installer-empty b/test/data/manifest-checksums/rhel_9.2-x86_64-image_installer-empty new file mode 100644 index 0000000000..ab0d2ac771 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.2-x86_64-image_installer-empty @@ -0,0 +1 @@ +1b8043868c8dab9a19c05b2c3be053a24a878664 diff --git a/test/data/manifest-checksums/rhel_9.2-x86_64-image_installer-jq_only b/test/data/manifest-checksums/rhel_9.2-x86_64-image_installer-jq_only deleted file mode 100644 index 20f7771832..0000000000 --- a/test/data/manifest-checksums/rhel_9.2-x86_64-image_installer-jq_only +++ /dev/null @@ -1 +0,0 @@ -931d7390491b6100020b56b79b5d3723cc238fa5 diff --git a/test/data/manifest-checksums/rhel_9.2-x86_64-minimal_raw-empty b/test/data/manifest-checksums/rhel_9.2-x86_64-minimal_raw-empty new file mode 100644 index 0000000000..2bb5a9f18d --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.2-x86_64-minimal_raw-empty @@ -0,0 +1 @@ +a3db565ba3639bcc83d49409066a619cb25189db diff --git a/test/data/manifest-checksums/rhel_9.2-x86_64-minimal_raw-jq_only b/test/data/manifest-checksums/rhel_9.2-x86_64-minimal_raw-jq_only deleted file mode 100644 index 81a6d4f9b0..0000000000 --- a/test/data/manifest-checksums/rhel_9.2-x86_64-minimal_raw-jq_only +++ /dev/null @@ -1 +0,0 @@ -1c1dbf68c7b779d71f5e1d4b19a2dc504ba76446 diff --git a/test/data/manifest-checksums/rhel_9.2-x86_64-oci-empty b/test/data/manifest-checksums/rhel_9.2-x86_64-oci-empty new file mode 100644 index 0000000000..ba0dfc0ac0 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.2-x86_64-oci-empty @@ -0,0 +1 @@ +8f92dedf69b19aeab5499609b7cc873edfe711a9 diff --git a/test/data/manifest-checksums/rhel_9.2-x86_64-oci-jq_only b/test/data/manifest-checksums/rhel_9.2-x86_64-oci-jq_only deleted file mode 100644 index 1691706324..0000000000 --- a/test/data/manifest-checksums/rhel_9.2-x86_64-oci-jq_only +++ /dev/null @@ -1 +0,0 @@ -ebea6f5236bb64170b55ec1d71fb8e3fa3fd1b55 diff --git a/test/data/manifest-checksums/rhel_9.2-x86_64-openstack-empty b/test/data/manifest-checksums/rhel_9.2-x86_64-openstack-empty new file mode 100644 index 0000000000..ae0ec81ca0 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.2-x86_64-openstack-empty @@ -0,0 +1 @@ +96ac978a3192f71a8459ebe931eb541909a2d36d diff --git a/test/data/manifest-checksums/rhel_9.2-x86_64-openstack-jq_only b/test/data/manifest-checksums/rhel_9.2-x86_64-openstack-jq_only deleted file mode 100644 index dfc68a6b36..0000000000 --- a/test/data/manifest-checksums/rhel_9.2-x86_64-openstack-jq_only +++ /dev/null @@ -1 +0,0 @@ -82e82a7c0fc0c4c622e9219bfc3b267398574317 diff --git a/test/data/manifest-checksums/rhel_9.2-x86_64-ova-empty b/test/data/manifest-checksums/rhel_9.2-x86_64-ova-empty new file mode 100644 index 0000000000..03e3e7a43f --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.2-x86_64-ova-empty @@ -0,0 +1 @@ +a9865203ef9b100a569aaf615ca4a45acf74cc79 diff --git a/test/data/manifest-checksums/rhel_9.2-x86_64-ova-jq_only b/test/data/manifest-checksums/rhel_9.2-x86_64-ova-jq_only deleted file mode 100644 index 09d6cacea8..0000000000 --- a/test/data/manifest-checksums/rhel_9.2-x86_64-ova-jq_only +++ /dev/null @@ -1 +0,0 @@ -f21cc87de0eb27be860f74a59e6b34ad044487d7 diff --git a/test/data/manifest-checksums/rhel_9.2-x86_64-pxe_tar_xz-empty b/test/data/manifest-checksums/rhel_9.2-x86_64-pxe_tar_xz-empty new file mode 100644 index 0000000000..9f9e8822a6 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.2-x86_64-pxe_tar_xz-empty @@ -0,0 +1 @@ +2d52dcc1a90575996844b9c9ebafc633c88eec61 diff --git a/test/data/manifest-checksums/rhel_9.2-x86_64-pxe_tar_xz-jq_only b/test/data/manifest-checksums/rhel_9.2-x86_64-pxe_tar_xz-jq_only deleted file mode 100644 index 606aa10f2f..0000000000 --- a/test/data/manifest-checksums/rhel_9.2-x86_64-pxe_tar_xz-jq_only +++ /dev/null @@ -1 +0,0 @@ -8fcfb76dda62dc76ce17649b49705ac545e268cd diff --git a/test/data/manifest-checksums/rhel_9.2-x86_64-qcow2-empty b/test/data/manifest-checksums/rhel_9.2-x86_64-qcow2-empty new file mode 100644 index 0000000000..ba0dfc0ac0 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.2-x86_64-qcow2-empty @@ -0,0 +1 @@ +8f92dedf69b19aeab5499609b7cc873edfe711a9 diff --git a/test/data/manifest-checksums/rhel_9.2-x86_64-qcow2-jq_only b/test/data/manifest-checksums/rhel_9.2-x86_64-qcow2-jq_only deleted file mode 100644 index 1691706324..0000000000 --- a/test/data/manifest-checksums/rhel_9.2-x86_64-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -ebea6f5236bb64170b55ec1d71fb8e3fa3fd1b55 diff --git a/test/data/manifest-checksums/rhel_9.2-x86_64-qcow2-oscap_generic b/test/data/manifest-checksums/rhel_9.2-x86_64-qcow2-oscap_generic index 0caf89fa7e..7ed0516251 100644 --- a/test/data/manifest-checksums/rhel_9.2-x86_64-qcow2-oscap_generic +++ b/test/data/manifest-checksums/rhel_9.2-x86_64-qcow2-oscap_generic @@ -1 +1 @@ -f24b6bce5c020e2f69ecfb2d35750abfe8a19bb8 +f0e59646f6b9a50f913624f2b01e8dda365ad7b6 diff --git a/test/data/manifest-checksums/rhel_9.2-x86_64-tar-empty b/test/data/manifest-checksums/rhel_9.2-x86_64-tar-empty new file mode 100644 index 0000000000..91633ac302 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.2-x86_64-tar-empty @@ -0,0 +1 @@ +f9c4175a3737e46268584fbdbf66aa15322f8ce3 diff --git a/test/data/manifest-checksums/rhel_9.2-x86_64-tar-jq_only b/test/data/manifest-checksums/rhel_9.2-x86_64-tar-jq_only deleted file mode 100644 index cb2d9d1743..0000000000 --- a/test/data/manifest-checksums/rhel_9.2-x86_64-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -404e2677ff0a8df0bd1002217c77f4a42f172336 diff --git a/test/data/manifest-checksums/rhel_9.2-x86_64-vagrant_libvirt-empty b/test/data/manifest-checksums/rhel_9.2-x86_64-vagrant_libvirt-empty new file mode 100644 index 0000000000..4dbcc60535 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.2-x86_64-vagrant_libvirt-empty @@ -0,0 +1 @@ +5b10cf83cb3a68a4c2058b7144be5a092e166b4b diff --git a/test/data/manifest-checksums/rhel_9.2-x86_64-vagrant_libvirt-jq_only b/test/data/manifest-checksums/rhel_9.2-x86_64-vagrant_libvirt-jq_only deleted file mode 100644 index 4bfce96b53..0000000000 --- a/test/data/manifest-checksums/rhel_9.2-x86_64-vagrant_libvirt-jq_only +++ /dev/null @@ -1 +0,0 @@ -e267c5aa57bc6ef2edf15f5d017c4d27b38ef5eb diff --git a/test/data/manifest-checksums/rhel_9.2-x86_64-vagrant_virtualbox-empty b/test/data/manifest-checksums/rhel_9.2-x86_64-vagrant_virtualbox-empty new file mode 100644 index 0000000000..f346675559 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.2-x86_64-vagrant_virtualbox-empty @@ -0,0 +1 @@ +3d30e03c4d4c8c8d1ce80af3a15779efe3573f17 diff --git a/test/data/manifest-checksums/rhel_9.2-x86_64-vagrant_virtualbox-jq_only b/test/data/manifest-checksums/rhel_9.2-x86_64-vagrant_virtualbox-jq_only deleted file mode 100644 index d58872b499..0000000000 --- a/test/data/manifest-checksums/rhel_9.2-x86_64-vagrant_virtualbox-jq_only +++ /dev/null @@ -1 +0,0 @@ -d1060d760d865633fbe75b1d1921d8b85a31f195 diff --git a/test/data/manifest-checksums/rhel_9.2-x86_64-vmdk-empty b/test/data/manifest-checksums/rhel_9.2-x86_64-vmdk-empty new file mode 100644 index 0000000000..89eaff073b --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.2-x86_64-vmdk-empty @@ -0,0 +1 @@ +0fc68e90b56a1727df4a3d5af3305738646b52cc diff --git a/test/data/manifest-checksums/rhel_9.2-x86_64-vmdk-jq_only b/test/data/manifest-checksums/rhel_9.2-x86_64-vmdk-jq_only deleted file mode 100644 index 8a191ba19e..0000000000 --- a/test/data/manifest-checksums/rhel_9.2-x86_64-vmdk-jq_only +++ /dev/null @@ -1 +0,0 @@ -d505b9a32bcadb1e96b50741234e32a20bab5729 diff --git a/test/data/manifest-checksums/rhel_9.2-x86_64-wsl-empty b/test/data/manifest-checksums/rhel_9.2-x86_64-wsl-empty new file mode 100644 index 0000000000..d984cbf2f9 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.2-x86_64-wsl-empty @@ -0,0 +1 @@ +59c34e1f6e386ee056e93afb8dd8c133f1c4605a diff --git a/test/data/manifest-checksums/rhel_9.2-x86_64-wsl-jq_only b/test/data/manifest-checksums/rhel_9.2-x86_64-wsl-jq_only deleted file mode 100644 index 48b4a0bf16..0000000000 --- a/test/data/manifest-checksums/rhel_9.2-x86_64-wsl-jq_only +++ /dev/null @@ -1 +0,0 @@ -aa965fcd47a35791d88b395f7bd357737289e466 diff --git a/test/data/manifest-checksums/rhel_9.4-aarch64-ami-all_customizations b/test/data/manifest-checksums/rhel_9.4-aarch64-ami-all_customizations index c3a122f6a8..1ee5a09c85 100644 --- a/test/data/manifest-checksums/rhel_9.4-aarch64-ami-all_customizations +++ b/test/data/manifest-checksums/rhel_9.4-aarch64-ami-all_customizations @@ -1 +1 @@ -655e2f5c4a9b80439bcfc8c329aaea92ac64a8e4 +97050f5668ab638f63f590abcc70d2d14c83751e diff --git a/test/data/manifest-checksums/rhel_9.4-aarch64-ami-empty b/test/data/manifest-checksums/rhel_9.4-aarch64-ami-empty new file mode 100644 index 0000000000..a25e096e93 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.4-aarch64-ami-empty @@ -0,0 +1 @@ +bc370d73e4d253503699672955798fed3cc1764f diff --git a/test/data/manifest-checksums/rhel_9.4-aarch64-ami-jq_only b/test/data/manifest-checksums/rhel_9.4-aarch64-ami-jq_only deleted file mode 100644 index 5bbf1df679..0000000000 --- a/test/data/manifest-checksums/rhel_9.4-aarch64-ami-jq_only +++ /dev/null @@ -1 +0,0 @@ -640841612d4386f4edbe07c1102088fe3eb8152d diff --git a/test/data/manifest-checksums/rhel_9.4-aarch64-ami-oscap_rhel9 b/test/data/manifest-checksums/rhel_9.4-aarch64-ami-oscap_rhel9 index d63b688682..4607bd6116 100644 --- a/test/data/manifest-checksums/rhel_9.4-aarch64-ami-oscap_rhel9 +++ b/test/data/manifest-checksums/rhel_9.4-aarch64-ami-oscap_rhel9 @@ -1 +1 @@ -eac77c8967989cb171ea81bef2e26d369426d769 +9e8e32ff9e3a29186d3ac19f2e4573e4c3f9f2c5 diff --git a/test/data/manifest-checksums/rhel_9.4-aarch64-ami-oscap_rhel9_with_json_tailoring b/test/data/manifest-checksums/rhel_9.4-aarch64-ami-oscap_rhel9_with_json_tailoring index 37fdb777a6..25a5ec8aa7 100644 --- a/test/data/manifest-checksums/rhel_9.4-aarch64-ami-oscap_rhel9_with_json_tailoring +++ b/test/data/manifest-checksums/rhel_9.4-aarch64-ami-oscap_rhel9_with_json_tailoring @@ -1 +1 @@ -04ff821d638ef8d0894a639c12f950f62f1df630 +4498c2d6e537c7e6c5e62c63a8a8d14faf9917ae diff --git a/test/data/manifest-checksums/rhel_9.4-aarch64-ami-partitioning_lvm b/test/data/manifest-checksums/rhel_9.4-aarch64-ami-partitioning_lvm index 9a06b107ea..6ed8b58900 100644 --- a/test/data/manifest-checksums/rhel_9.4-aarch64-ami-partitioning_lvm +++ b/test/data/manifest-checksums/rhel_9.4-aarch64-ami-partitioning_lvm @@ -1 +1 @@ -e9cf49aec002d0fdf6a9ac04bbaaf01d445098af +4604513366b7b1a81864519c150669df9805dfce diff --git a/test/data/manifest-checksums/rhel_9.4-aarch64-ami-partitioning_plain b/test/data/manifest-checksums/rhel_9.4-aarch64-ami-partitioning_plain index ded5ce52f8..98fdf3f4c3 100644 --- a/test/data/manifest-checksums/rhel_9.4-aarch64-ami-partitioning_plain +++ b/test/data/manifest-checksums/rhel_9.4-aarch64-ami-partitioning_plain @@ -1 +1 @@ -c6825458e6a3096f639a9669226dc2958ab95955 +ca576390553b2a04da48b08c6415334ac4e63c01 diff --git a/test/data/manifest-checksums/rhel_9.4-aarch64-azure_rhui-empty b/test/data/manifest-checksums/rhel_9.4-aarch64-azure_rhui-empty new file mode 100644 index 0000000000..912bbef070 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.4-aarch64-azure_rhui-empty @@ -0,0 +1 @@ +bdbbaea60ea36196a30aa8ec6b665127d69e9c8f diff --git a/test/data/manifest-checksums/rhel_9.4-aarch64-azure_rhui-jq_only b/test/data/manifest-checksums/rhel_9.4-aarch64-azure_rhui-jq_only deleted file mode 100644 index b6d0410626..0000000000 --- a/test/data/manifest-checksums/rhel_9.4-aarch64-azure_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -2e9eb3230951a57f604b680ce8353dbe9fb64531 diff --git a/test/data/manifest-checksums/rhel_9.4-aarch64-ec2-empty b/test/data/manifest-checksums/rhel_9.4-aarch64-ec2-empty new file mode 100644 index 0000000000..d6b4df6c0a --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.4-aarch64-ec2-empty @@ -0,0 +1 @@ +3144178a084eb2b2f8ba25168579218ab0aeb910 diff --git a/test/data/manifest-checksums/rhel_9.4-aarch64-ec2-jq_only b/test/data/manifest-checksums/rhel_9.4-aarch64-ec2-jq_only deleted file mode 100644 index 20ff7c133d..0000000000 --- a/test/data/manifest-checksums/rhel_9.4-aarch64-ec2-jq_only +++ /dev/null @@ -1 +0,0 @@ -ba6055b5931017644806a9c720852f44c029490a diff --git a/test/data/manifest-checksums/rhel_9.4-aarch64-edge_container-empty b/test/data/manifest-checksums/rhel_9.4-aarch64-edge_container-empty new file mode 100644 index 0000000000..5cbb6326b2 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.4-aarch64-edge_container-empty @@ -0,0 +1 @@ +35ecb713de9edd140b6f794c49a538909085fe19 diff --git a/test/data/manifest-checksums/rhel_9.4-aarch64-edge_container-jq_only b/test/data/manifest-checksums/rhel_9.4-aarch64-edge_container-jq_only deleted file mode 100644 index 83f4bc7fd7..0000000000 --- a/test/data/manifest-checksums/rhel_9.4-aarch64-edge_container-jq_only +++ /dev/null @@ -1 +0,0 @@ -9b7c388c4ec29af1207377d427ac377bcde60101 diff --git a/test/data/manifest-checksums/rhel_9.4-aarch64-image_installer-empty b/test/data/manifest-checksums/rhel_9.4-aarch64-image_installer-empty new file mode 100644 index 0000000000..c3daa30ead --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.4-aarch64-image_installer-empty @@ -0,0 +1 @@ +4c5f1eb141fe45502194f7f5e8be52b7a7471ed2 diff --git a/test/data/manifest-checksums/rhel_9.4-aarch64-image_installer-jq_only b/test/data/manifest-checksums/rhel_9.4-aarch64-image_installer-jq_only deleted file mode 100644 index 296e72466c..0000000000 --- a/test/data/manifest-checksums/rhel_9.4-aarch64-image_installer-jq_only +++ /dev/null @@ -1 +0,0 @@ -2fcd1040463f70f55ee1f938dc417f2b5c4b184e diff --git a/test/data/manifest-checksums/rhel_9.4-aarch64-minimal_raw-empty b/test/data/manifest-checksums/rhel_9.4-aarch64-minimal_raw-empty new file mode 100644 index 0000000000..5cdee3da7c --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.4-aarch64-minimal_raw-empty @@ -0,0 +1 @@ +83430fce160db2d65b7badee06b7f252046d3e63 diff --git a/test/data/manifest-checksums/rhel_9.4-aarch64-minimal_raw-jq_only b/test/data/manifest-checksums/rhel_9.4-aarch64-minimal_raw-jq_only deleted file mode 100644 index 1d303be1f3..0000000000 --- a/test/data/manifest-checksums/rhel_9.4-aarch64-minimal_raw-jq_only +++ /dev/null @@ -1 +0,0 @@ -718a7a3ab5cdcb138789fe2b38aa8e50343ab892 diff --git a/test/data/manifest-checksums/rhel_9.4-aarch64-openstack-empty b/test/data/manifest-checksums/rhel_9.4-aarch64-openstack-empty new file mode 100644 index 0000000000..c6f2ca9684 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.4-aarch64-openstack-empty @@ -0,0 +1 @@ +bb81927166d8cc2e6cfd0f321802253ae7923b17 diff --git a/test/data/manifest-checksums/rhel_9.4-aarch64-openstack-jq_only b/test/data/manifest-checksums/rhel_9.4-aarch64-openstack-jq_only deleted file mode 100644 index 6ff8b38d2e..0000000000 --- a/test/data/manifest-checksums/rhel_9.4-aarch64-openstack-jq_only +++ /dev/null @@ -1 +0,0 @@ -b949b8a110736e15b934d09c58c857dd68441f73 diff --git a/test/data/manifest-checksums/rhel_9.4-aarch64-pxe_tar_xz-empty b/test/data/manifest-checksums/rhel_9.4-aarch64-pxe_tar_xz-empty new file mode 100644 index 0000000000..e8d1015bf4 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.4-aarch64-pxe_tar_xz-empty @@ -0,0 +1 @@ +806797a97def305505ed8f094206f04d78d0bdbf diff --git a/test/data/manifest-checksums/rhel_9.4-aarch64-pxe_tar_xz-jq_only b/test/data/manifest-checksums/rhel_9.4-aarch64-pxe_tar_xz-jq_only deleted file mode 100644 index d850078995..0000000000 --- a/test/data/manifest-checksums/rhel_9.4-aarch64-pxe_tar_xz-jq_only +++ /dev/null @@ -1 +0,0 @@ -0af1ab27ad14395eefe51dfcf29a454f97f78d37 diff --git a/test/data/manifest-checksums/rhel_9.4-aarch64-qcow2-empty b/test/data/manifest-checksums/rhel_9.4-aarch64-qcow2-empty new file mode 100644 index 0000000000..15eb3caacf --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.4-aarch64-qcow2-empty @@ -0,0 +1 @@ +7474f7204909d993d51fedb5a7360e56eb94ed2e diff --git a/test/data/manifest-checksums/rhel_9.4-aarch64-qcow2-jq_only b/test/data/manifest-checksums/rhel_9.4-aarch64-qcow2-jq_only deleted file mode 100644 index b27754daa1..0000000000 --- a/test/data/manifest-checksums/rhel_9.4-aarch64-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -fc0307343b3a95014b83068bc0012907eda064f3 diff --git a/test/data/manifest-checksums/rhel_9.4-aarch64-tar-empty b/test/data/manifest-checksums/rhel_9.4-aarch64-tar-empty new file mode 100644 index 0000000000..b76859b811 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.4-aarch64-tar-empty @@ -0,0 +1 @@ +12e09eeb248c304c763f9fbfbf28c509ec93fe0e diff --git a/test/data/manifest-checksums/rhel_9.4-aarch64-tar-jq_only b/test/data/manifest-checksums/rhel_9.4-aarch64-tar-jq_only deleted file mode 100644 index 1220e87523..0000000000 --- a/test/data/manifest-checksums/rhel_9.4-aarch64-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -5e8af5a2a27cd8f13305d82d94f1cc76330db58f diff --git a/test/data/manifest-checksums/rhel_9.4-aarch64-vagrant_libvirt-empty b/test/data/manifest-checksums/rhel_9.4-aarch64-vagrant_libvirt-empty new file mode 100644 index 0000000000..67945d7f2c --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.4-aarch64-vagrant_libvirt-empty @@ -0,0 +1 @@ +5ec5a30a4adcef17adecd6c02c8d852aee2c37be diff --git a/test/data/manifest-checksums/rhel_9.4-aarch64-vagrant_libvirt-jq_only b/test/data/manifest-checksums/rhel_9.4-aarch64-vagrant_libvirt-jq_only deleted file mode 100644 index 6431dcbdc2..0000000000 --- a/test/data/manifest-checksums/rhel_9.4-aarch64-vagrant_libvirt-jq_only +++ /dev/null @@ -1 +0,0 @@ -6b4cb2458a16ed678e8fdfa72f8668d49a0c83b1 diff --git a/test/data/manifest-checksums/rhel_9.4-aarch64-wsl-empty b/test/data/manifest-checksums/rhel_9.4-aarch64-wsl-empty new file mode 100644 index 0000000000..50fa30f617 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.4-aarch64-wsl-empty @@ -0,0 +1 @@ +b2f54beaa0255a97b889fd74a9090c78b51473b1 diff --git a/test/data/manifest-checksums/rhel_9.4-aarch64-wsl-jq_only b/test/data/manifest-checksums/rhel_9.4-aarch64-wsl-jq_only deleted file mode 100644 index cb8c78dc13..0000000000 --- a/test/data/manifest-checksums/rhel_9.4-aarch64-wsl-jq_only +++ /dev/null @@ -1 +0,0 @@ -57635646d09e5cd96b9ccc88f90e0fe229fcc40b diff --git a/test/data/manifest-checksums/rhel_9.4-ppc64le-qcow2-empty b/test/data/manifest-checksums/rhel_9.4-ppc64le-qcow2-empty new file mode 100644 index 0000000000..9bd29c1e71 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.4-ppc64le-qcow2-empty @@ -0,0 +1 @@ +1c2ddd4c1323a9302bd496f3d31570aef401f49a diff --git a/test/data/manifest-checksums/rhel_9.4-ppc64le-qcow2-jq_only b/test/data/manifest-checksums/rhel_9.4-ppc64le-qcow2-jq_only deleted file mode 100644 index cbb365f23c..0000000000 --- a/test/data/manifest-checksums/rhel_9.4-ppc64le-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -3b2350495e93f487a10c75f8e83e9f03c15b06c4 diff --git a/test/data/manifest-checksums/rhel_9.4-ppc64le-tar-empty b/test/data/manifest-checksums/rhel_9.4-ppc64le-tar-empty new file mode 100644 index 0000000000..f371683d86 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.4-ppc64le-tar-empty @@ -0,0 +1 @@ +63e7a837308b88e1fee621d908c8d0f00321ed57 diff --git a/test/data/manifest-checksums/rhel_9.4-ppc64le-tar-jq_only b/test/data/manifest-checksums/rhel_9.4-ppc64le-tar-jq_only deleted file mode 100644 index 957ffb43a4..0000000000 --- a/test/data/manifest-checksums/rhel_9.4-ppc64le-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -aa8752fc0e4447327990e7c1d9f4252dd64a89cd diff --git a/test/data/manifest-checksums/rhel_9.4-s390x-qcow2-empty b/test/data/manifest-checksums/rhel_9.4-s390x-qcow2-empty new file mode 100644 index 0000000000..ad5fb4191a --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.4-s390x-qcow2-empty @@ -0,0 +1 @@ +d7e6980523c62d43cf4c37fdb11fd717bc48f6b0 diff --git a/test/data/manifest-checksums/rhel_9.4-s390x-qcow2-jq_only b/test/data/manifest-checksums/rhel_9.4-s390x-qcow2-jq_only deleted file mode 100644 index 81dfd8f36f..0000000000 --- a/test/data/manifest-checksums/rhel_9.4-s390x-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -6c0097a376b37e06e8daba1ffdff53d15b736eba diff --git a/test/data/manifest-checksums/rhel_9.4-s390x-tar-empty b/test/data/manifest-checksums/rhel_9.4-s390x-tar-empty new file mode 100644 index 0000000000..894d0fdc1c --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.4-s390x-tar-empty @@ -0,0 +1 @@ +e524808f33a5a49a495a4958a7dce4260f491bbc diff --git a/test/data/manifest-checksums/rhel_9.4-s390x-tar-jq_only b/test/data/manifest-checksums/rhel_9.4-s390x-tar-jq_only deleted file mode 100644 index 89c4bdfd65..0000000000 --- a/test/data/manifest-checksums/rhel_9.4-s390x-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -1a9341a4552c9b10dd12e0323514b4dbba535f4e diff --git a/test/data/manifest-checksums/rhel_9.4-x86_64-ami-all_customizations b/test/data/manifest-checksums/rhel_9.4-x86_64-ami-all_customizations index dfd5f95af8..7fe5b597c1 100644 --- a/test/data/manifest-checksums/rhel_9.4-x86_64-ami-all_customizations +++ b/test/data/manifest-checksums/rhel_9.4-x86_64-ami-all_customizations @@ -1 +1 @@ -aef09c883e87e50450c67e71dcdd7abbf672bec6 +358939f1ca9d3e01ff98e15bfbc745af20f4c7f2 diff --git a/test/data/manifest-checksums/rhel_9.4-x86_64-ami-empty b/test/data/manifest-checksums/rhel_9.4-x86_64-ami-empty new file mode 100644 index 0000000000..875081dc68 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.4-x86_64-ami-empty @@ -0,0 +1 @@ +704c0b7d9b102115e981ee197f60ae4ddcdc465b diff --git a/test/data/manifest-checksums/rhel_9.4-x86_64-ami-jq_only b/test/data/manifest-checksums/rhel_9.4-x86_64-ami-jq_only deleted file mode 100644 index db6be41802..0000000000 --- a/test/data/manifest-checksums/rhel_9.4-x86_64-ami-jq_only +++ /dev/null @@ -1 +0,0 @@ -f8e22a4291b3d7d29e8067ecb70282473f42c72f diff --git a/test/data/manifest-checksums/rhel_9.4-x86_64-ami-oscap_rhel9 b/test/data/manifest-checksums/rhel_9.4-x86_64-ami-oscap_rhel9 index 17f77985f5..5a3169525a 100644 --- a/test/data/manifest-checksums/rhel_9.4-x86_64-ami-oscap_rhel9 +++ b/test/data/manifest-checksums/rhel_9.4-x86_64-ami-oscap_rhel9 @@ -1 +1 @@ -7d6b28058444e9893a713247eadb46cb1265c36e +038f3c353d784d85e4ce28e3eccbcb429dfc37f1 diff --git a/test/data/manifest-checksums/rhel_9.4-x86_64-ami-oscap_rhel9_with_json_tailoring b/test/data/manifest-checksums/rhel_9.4-x86_64-ami-oscap_rhel9_with_json_tailoring index 6b8721d6ab..bc19293702 100644 --- a/test/data/manifest-checksums/rhel_9.4-x86_64-ami-oscap_rhel9_with_json_tailoring +++ b/test/data/manifest-checksums/rhel_9.4-x86_64-ami-oscap_rhel9_with_json_tailoring @@ -1 +1 @@ -35d6a8f6a07bf58971e0d7218556d35d29a9ba9c +6b6b72b752c9c991d185fdb01c50a6c60c32f5a5 diff --git a/test/data/manifest-checksums/rhel_9.4-x86_64-ami-partitioning_lvm b/test/data/manifest-checksums/rhel_9.4-x86_64-ami-partitioning_lvm index dcff9049db..9d3fb9ff3e 100644 --- a/test/data/manifest-checksums/rhel_9.4-x86_64-ami-partitioning_lvm +++ b/test/data/manifest-checksums/rhel_9.4-x86_64-ami-partitioning_lvm @@ -1 +1 @@ -7e97a6644f5d25cad07791855e931ca3d7e71101 +0dd2c5c2f1e36891c7229adf495a79d00ab80943 diff --git a/test/data/manifest-checksums/rhel_9.4-x86_64-ami-partitioning_plain b/test/data/manifest-checksums/rhel_9.4-x86_64-ami-partitioning_plain index b44238df4d..424c72ee1e 100644 --- a/test/data/manifest-checksums/rhel_9.4-x86_64-ami-partitioning_plain +++ b/test/data/manifest-checksums/rhel_9.4-x86_64-ami-partitioning_plain @@ -1 +1 @@ -734365665de6bb3e5bd41d64245c050144b11569 +a20741320352b4bfa8549dd4a608766a0db23c98 diff --git a/test/data/manifest-checksums/rhel_9.4-x86_64-azure_rhui-empty b/test/data/manifest-checksums/rhel_9.4-x86_64-azure_rhui-empty new file mode 100644 index 0000000000..f47ba1bac5 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.4-x86_64-azure_rhui-empty @@ -0,0 +1 @@ +62452afd27cf436872545665c591606ac83d8fd1 diff --git a/test/data/manifest-checksums/rhel_9.4-x86_64-azure_rhui-jq_only b/test/data/manifest-checksums/rhel_9.4-x86_64-azure_rhui-jq_only deleted file mode 100644 index 5e47d77873..0000000000 --- a/test/data/manifest-checksums/rhel_9.4-x86_64-azure_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -1f687eff3f6cffc27c2579a5b4537bcd46997a44 diff --git a/test/data/manifest-checksums/rhel_9.4-x86_64-azure_sap_rhui-empty b/test/data/manifest-checksums/rhel_9.4-x86_64-azure_sap_rhui-empty new file mode 100644 index 0000000000..9c89701c1a --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.4-x86_64-azure_sap_rhui-empty @@ -0,0 +1 @@ +15774de71918a590ed4426568ebb8023331af2ea diff --git a/test/data/manifest-checksums/rhel_9.4-x86_64-azure_sap_rhui-jq_only b/test/data/manifest-checksums/rhel_9.4-x86_64-azure_sap_rhui-jq_only deleted file mode 100644 index c76a9b7bfc..0000000000 --- a/test/data/manifest-checksums/rhel_9.4-x86_64-azure_sap_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -c8e6260a7cd142ad44f9cc3aa33a82e5c52319b6 diff --git a/test/data/manifest-checksums/rhel_9.4-x86_64-azure_sapapps_rhui-empty b/test/data/manifest-checksums/rhel_9.4-x86_64-azure_sapapps_rhui-empty new file mode 100644 index 0000000000..7794e1b789 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.4-x86_64-azure_sapapps_rhui-empty @@ -0,0 +1 @@ +26809522a64a733b5b7ba65effe41fa3660cff48 diff --git a/test/data/manifest-checksums/rhel_9.4-x86_64-azure_sapapps_rhui-jq_only b/test/data/manifest-checksums/rhel_9.4-x86_64-azure_sapapps_rhui-jq_only deleted file mode 100644 index 59a7e5f3f5..0000000000 --- a/test/data/manifest-checksums/rhel_9.4-x86_64-azure_sapapps_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -a915cd295335fb41ae01d2a8a26be6b0d9ff748a diff --git a/test/data/manifest-checksums/rhel_9.4-x86_64-ec2-empty b/test/data/manifest-checksums/rhel_9.4-x86_64-ec2-empty new file mode 100644 index 0000000000..5556a297a7 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.4-x86_64-ec2-empty @@ -0,0 +1 @@ +429a284881b08e61dda6099ef106b08bfcfdbce1 diff --git a/test/data/manifest-checksums/rhel_9.4-x86_64-ec2-jq_only b/test/data/manifest-checksums/rhel_9.4-x86_64-ec2-jq_only deleted file mode 100644 index 400865d4b2..0000000000 --- a/test/data/manifest-checksums/rhel_9.4-x86_64-ec2-jq_only +++ /dev/null @@ -1 +0,0 @@ -a46958280e6305f6ac4814410286bada9a3d2f81 diff --git a/test/data/manifest-checksums/rhel_9.4-x86_64-ec2_ha-empty b/test/data/manifest-checksums/rhel_9.4-x86_64-ec2_ha-empty new file mode 100644 index 0000000000..60bf42b0db --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.4-x86_64-ec2_ha-empty @@ -0,0 +1 @@ +7127d6f8a2a01bc82fa93765ca9c7ebc54e8d223 diff --git a/test/data/manifest-checksums/rhel_9.4-x86_64-ec2_ha-jq_only b/test/data/manifest-checksums/rhel_9.4-x86_64-ec2_ha-jq_only deleted file mode 100644 index 3148c991c2..0000000000 --- a/test/data/manifest-checksums/rhel_9.4-x86_64-ec2_ha-jq_only +++ /dev/null @@ -1 +0,0 @@ -0da34e4c9c445bea2cbaeca37823700978ba9b2f diff --git a/test/data/manifest-checksums/rhel_9.4-x86_64-edge_container-empty b/test/data/manifest-checksums/rhel_9.4-x86_64-edge_container-empty new file mode 100644 index 0000000000..8a7b0d7fa1 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.4-x86_64-edge_container-empty @@ -0,0 +1 @@ +732eefa973f7d2ecd1937b4fe2138fd0c4f60fad diff --git a/test/data/manifest-checksums/rhel_9.4-x86_64-edge_container-jq_only b/test/data/manifest-checksums/rhel_9.4-x86_64-edge_container-jq_only deleted file mode 100644 index 1a3ec7f6f5..0000000000 --- a/test/data/manifest-checksums/rhel_9.4-x86_64-edge_container-jq_only +++ /dev/null @@ -1 +0,0 @@ -a5727f9afd6f8e45698069ae22f319c26117367f diff --git a/test/data/manifest-checksums/rhel_9.4-x86_64-gce-empty b/test/data/manifest-checksums/rhel_9.4-x86_64-gce-empty new file mode 100644 index 0000000000..f35210f805 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.4-x86_64-gce-empty @@ -0,0 +1 @@ +c8c849f8c3244016158eeea8e7a177254a58ad5d diff --git a/test/data/manifest-checksums/rhel_9.4-x86_64-gce-jq_only b/test/data/manifest-checksums/rhel_9.4-x86_64-gce-jq_only deleted file mode 100644 index 650f6913d4..0000000000 --- a/test/data/manifest-checksums/rhel_9.4-x86_64-gce-jq_only +++ /dev/null @@ -1 +0,0 @@ -4b2c157ae0c587ed235185afda3b48193e7b21e4 diff --git a/test/data/manifest-checksums/rhel_9.4-x86_64-image_installer-empty b/test/data/manifest-checksums/rhel_9.4-x86_64-image_installer-empty new file mode 100644 index 0000000000..3bedec090b --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.4-x86_64-image_installer-empty @@ -0,0 +1 @@ +1ceaea9fb91dd125d01ecb310e7d59d7f654321d diff --git a/test/data/manifest-checksums/rhel_9.4-x86_64-image_installer-jq_only b/test/data/manifest-checksums/rhel_9.4-x86_64-image_installer-jq_only deleted file mode 100644 index bd1585ba17..0000000000 --- a/test/data/manifest-checksums/rhel_9.4-x86_64-image_installer-jq_only +++ /dev/null @@ -1 +0,0 @@ -375d27598a9dce33d0154839ac107f54b3b1be7e diff --git a/test/data/manifest-checksums/rhel_9.4-x86_64-minimal_raw-empty b/test/data/manifest-checksums/rhel_9.4-x86_64-minimal_raw-empty new file mode 100644 index 0000000000..06ee1cfb42 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.4-x86_64-minimal_raw-empty @@ -0,0 +1 @@ +074e44d55a671b82fe481c7d682f3d6d12b1d825 diff --git a/test/data/manifest-checksums/rhel_9.4-x86_64-minimal_raw-jq_only b/test/data/manifest-checksums/rhel_9.4-x86_64-minimal_raw-jq_only deleted file mode 100644 index bdd5392feb..0000000000 --- a/test/data/manifest-checksums/rhel_9.4-x86_64-minimal_raw-jq_only +++ /dev/null @@ -1 +0,0 @@ -8a0d6438e61cbd0bcabddc382b1830c267171113 diff --git a/test/data/manifest-checksums/rhel_9.4-x86_64-oci-empty b/test/data/manifest-checksums/rhel_9.4-x86_64-oci-empty new file mode 100644 index 0000000000..e494470f21 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.4-x86_64-oci-empty @@ -0,0 +1 @@ +18c5148a568267501ebb358fbe52f552cf18e7d2 diff --git a/test/data/manifest-checksums/rhel_9.4-x86_64-oci-jq_only b/test/data/manifest-checksums/rhel_9.4-x86_64-oci-jq_only deleted file mode 100644 index 9e694fef69..0000000000 --- a/test/data/manifest-checksums/rhel_9.4-x86_64-oci-jq_only +++ /dev/null @@ -1 +0,0 @@ -664c12061f3416dacb2389edd78581f6d6359a14 diff --git a/test/data/manifest-checksums/rhel_9.4-x86_64-openstack-empty b/test/data/manifest-checksums/rhel_9.4-x86_64-openstack-empty new file mode 100644 index 0000000000..47fe7e4482 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.4-x86_64-openstack-empty @@ -0,0 +1 @@ +4b4ed77165fa3d12609bb3d7c18c325cb1e259f9 diff --git a/test/data/manifest-checksums/rhel_9.4-x86_64-openstack-jq_only b/test/data/manifest-checksums/rhel_9.4-x86_64-openstack-jq_only deleted file mode 100644 index e5fdbaa1ce..0000000000 --- a/test/data/manifest-checksums/rhel_9.4-x86_64-openstack-jq_only +++ /dev/null @@ -1 +0,0 @@ -001fff36f9a4c6bd9d6b944158fd26bf41ed3b11 diff --git a/test/data/manifest-checksums/rhel_9.4-x86_64-ova-empty b/test/data/manifest-checksums/rhel_9.4-x86_64-ova-empty new file mode 100644 index 0000000000..e0a4e55578 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.4-x86_64-ova-empty @@ -0,0 +1 @@ +2b01cdd6337dd6afe90da5afd51de98253daf5e5 diff --git a/test/data/manifest-checksums/rhel_9.4-x86_64-ova-jq_only b/test/data/manifest-checksums/rhel_9.4-x86_64-ova-jq_only deleted file mode 100644 index a9fe091d4b..0000000000 --- a/test/data/manifest-checksums/rhel_9.4-x86_64-ova-jq_only +++ /dev/null @@ -1 +0,0 @@ -8d703acde7fb6c36de7115fc3318360ace1bbfc1 diff --git a/test/data/manifest-checksums/rhel_9.4-x86_64-pxe_tar_xz-empty b/test/data/manifest-checksums/rhel_9.4-x86_64-pxe_tar_xz-empty new file mode 100644 index 0000000000..6db59bd489 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.4-x86_64-pxe_tar_xz-empty @@ -0,0 +1 @@ +6a8c24f258bd2590a5a649d6630691c8743c8bb6 diff --git a/test/data/manifest-checksums/rhel_9.4-x86_64-pxe_tar_xz-jq_only b/test/data/manifest-checksums/rhel_9.4-x86_64-pxe_tar_xz-jq_only deleted file mode 100644 index f2577ae671..0000000000 --- a/test/data/manifest-checksums/rhel_9.4-x86_64-pxe_tar_xz-jq_only +++ /dev/null @@ -1 +0,0 @@ -c00541ed26aa0941d77efc6dfcb1e0a803e108b3 diff --git a/test/data/manifest-checksums/rhel_9.4-x86_64-qcow2-empty b/test/data/manifest-checksums/rhel_9.4-x86_64-qcow2-empty new file mode 100644 index 0000000000..e494470f21 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.4-x86_64-qcow2-empty @@ -0,0 +1 @@ +18c5148a568267501ebb358fbe52f552cf18e7d2 diff --git a/test/data/manifest-checksums/rhel_9.4-x86_64-qcow2-jq_only b/test/data/manifest-checksums/rhel_9.4-x86_64-qcow2-jq_only deleted file mode 100644 index 9e694fef69..0000000000 --- a/test/data/manifest-checksums/rhel_9.4-x86_64-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -664c12061f3416dacb2389edd78581f6d6359a14 diff --git a/test/data/manifest-checksums/rhel_9.4-x86_64-tar-empty b/test/data/manifest-checksums/rhel_9.4-x86_64-tar-empty new file mode 100644 index 0000000000..cdf7e63ff9 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.4-x86_64-tar-empty @@ -0,0 +1 @@ +1a75e2d9fcbad4d0a0028e97398c8527523a979a diff --git a/test/data/manifest-checksums/rhel_9.4-x86_64-tar-jq_only b/test/data/manifest-checksums/rhel_9.4-x86_64-tar-jq_only deleted file mode 100644 index f68918a7ca..0000000000 --- a/test/data/manifest-checksums/rhel_9.4-x86_64-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -832272c4868478f9451bf4f36b966b6b531cb66a diff --git a/test/data/manifest-checksums/rhel_9.4-x86_64-vagrant_libvirt-empty b/test/data/manifest-checksums/rhel_9.4-x86_64-vagrant_libvirt-empty new file mode 100644 index 0000000000..95df537a6e --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.4-x86_64-vagrant_libvirt-empty @@ -0,0 +1 @@ +68df84c754f91199c11c4564f794e12c55b41fa6 diff --git a/test/data/manifest-checksums/rhel_9.4-x86_64-vagrant_libvirt-jq_only b/test/data/manifest-checksums/rhel_9.4-x86_64-vagrant_libvirt-jq_only deleted file mode 100644 index a443caca97..0000000000 --- a/test/data/manifest-checksums/rhel_9.4-x86_64-vagrant_libvirt-jq_only +++ /dev/null @@ -1 +0,0 @@ -7291e7e762c072969d71676755112e5af7f0d6d0 diff --git a/test/data/manifest-checksums/rhel_9.4-x86_64-vagrant_virtualbox-empty b/test/data/manifest-checksums/rhel_9.4-x86_64-vagrant_virtualbox-empty new file mode 100644 index 0000000000..172c690b0b --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.4-x86_64-vagrant_virtualbox-empty @@ -0,0 +1 @@ +6384d6ecaaaaa3d8fe7d1ad932f694b6df559a4a diff --git a/test/data/manifest-checksums/rhel_9.4-x86_64-vagrant_virtualbox-jq_only b/test/data/manifest-checksums/rhel_9.4-x86_64-vagrant_virtualbox-jq_only deleted file mode 100644 index b475cd0009..0000000000 --- a/test/data/manifest-checksums/rhel_9.4-x86_64-vagrant_virtualbox-jq_only +++ /dev/null @@ -1 +0,0 @@ -9b2b60758754fe7af8beb8300746a45cfe441b24 diff --git a/test/data/manifest-checksums/rhel_9.4-x86_64-vmdk-empty b/test/data/manifest-checksums/rhel_9.4-x86_64-vmdk-empty new file mode 100644 index 0000000000..0ad2f4855a --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.4-x86_64-vmdk-empty @@ -0,0 +1 @@ +512323b076554f1230e44982f06a8f7c45c9c793 diff --git a/test/data/manifest-checksums/rhel_9.4-x86_64-vmdk-jq_only b/test/data/manifest-checksums/rhel_9.4-x86_64-vmdk-jq_only deleted file mode 100644 index 92f2dc77f6..0000000000 --- a/test/data/manifest-checksums/rhel_9.4-x86_64-vmdk-jq_only +++ /dev/null @@ -1 +0,0 @@ -f7e2c2b1144a51739d634aef98a25c06403ff00d diff --git a/test/data/manifest-checksums/rhel_9.4-x86_64-wsl-empty b/test/data/manifest-checksums/rhel_9.4-x86_64-wsl-empty new file mode 100644 index 0000000000..b4b86177a1 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.4-x86_64-wsl-empty @@ -0,0 +1 @@ +55775607333d7f03242cdb55ea0aede74958bf2b diff --git a/test/data/manifest-checksums/rhel_9.4-x86_64-wsl-jq_only b/test/data/manifest-checksums/rhel_9.4-x86_64-wsl-jq_only deleted file mode 100644 index d613b907c1..0000000000 --- a/test/data/manifest-checksums/rhel_9.4-x86_64-wsl-jq_only +++ /dev/null @@ -1 +0,0 @@ -1eb66e86c415b96cb1e96222e3235c8b819f418e diff --git a/test/data/manifest-checksums/rhel_9.6-aarch64-ami-all_customizations b/test/data/manifest-checksums/rhel_9.6-aarch64-ami-all_customizations index dc8150dde3..673b7375cc 100644 --- a/test/data/manifest-checksums/rhel_9.6-aarch64-ami-all_customizations +++ b/test/data/manifest-checksums/rhel_9.6-aarch64-ami-all_customizations @@ -1 +1 @@ -ff62ca2a0de0d9c127addba25185be3561db0526 +84f8c4f1b3e0013f2e5f936d7ad0094897e8f7f0 diff --git a/test/data/manifest-checksums/rhel_9.6-aarch64-ami-empty b/test/data/manifest-checksums/rhel_9.6-aarch64-ami-empty new file mode 100644 index 0000000000..7f08449165 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.6-aarch64-ami-empty @@ -0,0 +1 @@ +757c4a9d7b662f835353846de79c6ec1a97ff3fe diff --git a/test/data/manifest-checksums/rhel_9.6-aarch64-ami-file_customizations b/test/data/manifest-checksums/rhel_9.6-aarch64-ami-file_customizations index fb8301cc1d..b82670c643 100644 --- a/test/data/manifest-checksums/rhel_9.6-aarch64-ami-file_customizations +++ b/test/data/manifest-checksums/rhel_9.6-aarch64-ami-file_customizations @@ -1 +1 @@ -a6b84c310ec457ab3efd5b2d95a256507879bfce +67455e2d93db1fd24ce26adace272b487f05998e diff --git a/test/data/manifest-checksums/rhel_9.6-aarch64-ami-jq_only b/test/data/manifest-checksums/rhel_9.6-aarch64-ami-jq_only deleted file mode 100644 index 09d08c484d..0000000000 --- a/test/data/manifest-checksums/rhel_9.6-aarch64-ami-jq_only +++ /dev/null @@ -1 +0,0 @@ -1292fe116a9ab9d756fd02cc423f6f43c8bbffb3 diff --git a/test/data/manifest-checksums/rhel_9.6-aarch64-ami-partitioning_lvm b/test/data/manifest-checksums/rhel_9.6-aarch64-ami-partitioning_lvm index ee0427cda6..b16b4b44f7 100644 --- a/test/data/manifest-checksums/rhel_9.6-aarch64-ami-partitioning_lvm +++ b/test/data/manifest-checksums/rhel_9.6-aarch64-ami-partitioning_lvm @@ -1 +1 @@ -597bb77a0f58012fa38006ee2a821a6ef0b52ec4 +e2e67fe49c179c5056f2199261d5b84d43e1b823 diff --git a/test/data/manifest-checksums/rhel_9.6-aarch64-ami-partitioning_plain b/test/data/manifest-checksums/rhel_9.6-aarch64-ami-partitioning_plain index 5b34101892..42a679b650 100644 --- a/test/data/manifest-checksums/rhel_9.6-aarch64-ami-partitioning_plain +++ b/test/data/manifest-checksums/rhel_9.6-aarch64-ami-partitioning_plain @@ -1 +1 @@ -5c46362d060ded3bd2578db5d516e577b3fd2b09 +88463a89dc5417b02c6df1495705ed3502d1908f diff --git a/test/data/manifest-checksums/rhel_9.6-aarch64-azure_rhui-empty b/test/data/manifest-checksums/rhel_9.6-aarch64-azure_rhui-empty new file mode 100644 index 0000000000..720040145a --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.6-aarch64-azure_rhui-empty @@ -0,0 +1 @@ +6ad6628320c12d674ad86c7bbc1ed8a54711cc9b diff --git a/test/data/manifest-checksums/rhel_9.6-aarch64-azure_rhui-jq_only b/test/data/manifest-checksums/rhel_9.6-aarch64-azure_rhui-jq_only deleted file mode 100644 index 5a1277d4f1..0000000000 --- a/test/data/manifest-checksums/rhel_9.6-aarch64-azure_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -e63ae30cf3c3ebe7f282f01823b97ce204483045 diff --git a/test/data/manifest-checksums/rhel_9.6-aarch64-ec2-empty b/test/data/manifest-checksums/rhel_9.6-aarch64-ec2-empty new file mode 100644 index 0000000000..b0d24d794c --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.6-aarch64-ec2-empty @@ -0,0 +1 @@ +63a575a2e329b3934e7100488b5ffcb951d715e2 diff --git a/test/data/manifest-checksums/rhel_9.6-aarch64-ec2-jq_only b/test/data/manifest-checksums/rhel_9.6-aarch64-ec2-jq_only deleted file mode 100644 index 4735ad9d37..0000000000 --- a/test/data/manifest-checksums/rhel_9.6-aarch64-ec2-jq_only +++ /dev/null @@ -1 +0,0 @@ -fbd72073ca4857ca42671336ae24af0a798ae8ba diff --git a/test/data/manifest-checksums/rhel_9.6-aarch64-edge_container-empty b/test/data/manifest-checksums/rhel_9.6-aarch64-edge_container-empty new file mode 100644 index 0000000000..7fa0366296 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.6-aarch64-edge_container-empty @@ -0,0 +1 @@ +7cfdb42d3dc0fbfc8d2697af1530cb2f75424d80 diff --git a/test/data/manifest-checksums/rhel_9.6-aarch64-edge_container-jq_only b/test/data/manifest-checksums/rhel_9.6-aarch64-edge_container-jq_only deleted file mode 100644 index f384be1532..0000000000 --- a/test/data/manifest-checksums/rhel_9.6-aarch64-edge_container-jq_only +++ /dev/null @@ -1 +0,0 @@ -dc05d3c1e08c26cbb71ca49047d4a1a06b81fb55 diff --git a/test/data/manifest-checksums/rhel_9.6-aarch64-image_installer-empty b/test/data/manifest-checksums/rhel_9.6-aarch64-image_installer-empty new file mode 100644 index 0000000000..c931f648a9 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.6-aarch64-image_installer-empty @@ -0,0 +1 @@ +82a17dfcd22667358f27f2bd00aada6257ab0e03 diff --git a/test/data/manifest-checksums/rhel_9.6-aarch64-image_installer-jq_only b/test/data/manifest-checksums/rhel_9.6-aarch64-image_installer-jq_only deleted file mode 100644 index b8bd87a575..0000000000 --- a/test/data/manifest-checksums/rhel_9.6-aarch64-image_installer-jq_only +++ /dev/null @@ -1 +0,0 @@ -fa79fbce7565d5ebd4b981a5d4e4f6eabd600760 diff --git a/test/data/manifest-checksums/rhel_9.6-aarch64-minimal_raw-empty b/test/data/manifest-checksums/rhel_9.6-aarch64-minimal_raw-empty new file mode 100644 index 0000000000..7bebc09566 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.6-aarch64-minimal_raw-empty @@ -0,0 +1 @@ +0bfe3fe16d2347c8e6b934877debf56f3fbdb485 diff --git a/test/data/manifest-checksums/rhel_9.6-aarch64-minimal_raw-jq_only b/test/data/manifest-checksums/rhel_9.6-aarch64-minimal_raw-jq_only deleted file mode 100644 index dc27856d69..0000000000 --- a/test/data/manifest-checksums/rhel_9.6-aarch64-minimal_raw-jq_only +++ /dev/null @@ -1 +0,0 @@ -54e9d55f64c17ff12315fc644fa348548e5c377d diff --git a/test/data/manifest-checksums/rhel_9.6-aarch64-openstack-empty b/test/data/manifest-checksums/rhel_9.6-aarch64-openstack-empty new file mode 100644 index 0000000000..804cff1b51 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.6-aarch64-openstack-empty @@ -0,0 +1 @@ +659559d097e99341499de30c7fd1b329ed10de75 diff --git a/test/data/manifest-checksums/rhel_9.6-aarch64-openstack-jq_only b/test/data/manifest-checksums/rhel_9.6-aarch64-openstack-jq_only deleted file mode 100644 index 79d5b59b7b..0000000000 --- a/test/data/manifest-checksums/rhel_9.6-aarch64-openstack-jq_only +++ /dev/null @@ -1 +0,0 @@ -7a701bfca47d0d8c44d430a1b1c4c584eedf689c diff --git a/test/data/manifest-checksums/rhel_9.6-aarch64-pxe_tar_xz-empty b/test/data/manifest-checksums/rhel_9.6-aarch64-pxe_tar_xz-empty new file mode 100644 index 0000000000..b7a5e14f3b --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.6-aarch64-pxe_tar_xz-empty @@ -0,0 +1 @@ +832a78258b274451811839354f8d7df2c1a3c086 diff --git a/test/data/manifest-checksums/rhel_9.6-aarch64-pxe_tar_xz-jq_only b/test/data/manifest-checksums/rhel_9.6-aarch64-pxe_tar_xz-jq_only deleted file mode 100644 index 3c96e57df7..0000000000 --- a/test/data/manifest-checksums/rhel_9.6-aarch64-pxe_tar_xz-jq_only +++ /dev/null @@ -1 +0,0 @@ -57d68ca26e1c29605571dbc7b055541e8c906862 diff --git a/test/data/manifest-checksums/rhel_9.6-aarch64-qcow2-empty b/test/data/manifest-checksums/rhel_9.6-aarch64-qcow2-empty new file mode 100644 index 0000000000..fbf8bf26f1 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.6-aarch64-qcow2-empty @@ -0,0 +1 @@ +37f25e2cd36a01b272d80eff60b219c8f25a6b39 diff --git a/test/data/manifest-checksums/rhel_9.6-aarch64-qcow2-jq_only b/test/data/manifest-checksums/rhel_9.6-aarch64-qcow2-jq_only deleted file mode 100644 index be2d80bb10..0000000000 --- a/test/data/manifest-checksums/rhel_9.6-aarch64-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -f541de2f41d09a69755486bcc7c19ff59b2fd08b diff --git a/test/data/manifest-checksums/rhel_9.6-aarch64-tar-empty b/test/data/manifest-checksums/rhel_9.6-aarch64-tar-empty new file mode 100644 index 0000000000..97572fba6e --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.6-aarch64-tar-empty @@ -0,0 +1 @@ +7c580bcffbbce12df6add65460a6e31372626f79 diff --git a/test/data/manifest-checksums/rhel_9.6-aarch64-tar-jq_only b/test/data/manifest-checksums/rhel_9.6-aarch64-tar-jq_only deleted file mode 100644 index 7e55596a30..0000000000 --- a/test/data/manifest-checksums/rhel_9.6-aarch64-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -eb41a0d2909cff6aa72e323fa25e483ee0ec25dc diff --git a/test/data/manifest-checksums/rhel_9.6-aarch64-vagrant_libvirt-empty b/test/data/manifest-checksums/rhel_9.6-aarch64-vagrant_libvirt-empty new file mode 100644 index 0000000000..03d03a5693 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.6-aarch64-vagrant_libvirt-empty @@ -0,0 +1 @@ +afa77e932e507e119615a82605c193fb08ad64ed diff --git a/test/data/manifest-checksums/rhel_9.6-aarch64-vagrant_libvirt-jq_only b/test/data/manifest-checksums/rhel_9.6-aarch64-vagrant_libvirt-jq_only deleted file mode 100644 index 39e314d17f..0000000000 --- a/test/data/manifest-checksums/rhel_9.6-aarch64-vagrant_libvirt-jq_only +++ /dev/null @@ -1 +0,0 @@ -a3b4f3eba6f4e3c3173ba532168053b2042e11ae diff --git a/test/data/manifest-checksums/rhel_9.6-aarch64-vhd-empty b/test/data/manifest-checksums/rhel_9.6-aarch64-vhd-empty new file mode 100644 index 0000000000..774f57d8de --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.6-aarch64-vhd-empty @@ -0,0 +1 @@ +8fbd9d96e33ad126813af092794ebe9eccc7731a diff --git a/test/data/manifest-checksums/rhel_9.6-aarch64-vhd-jq_only b/test/data/manifest-checksums/rhel_9.6-aarch64-vhd-jq_only deleted file mode 100644 index a177370d98..0000000000 --- a/test/data/manifest-checksums/rhel_9.6-aarch64-vhd-jq_only +++ /dev/null @@ -1 +0,0 @@ -fbadade28053852c99e04b86cda8866addb3e561 diff --git a/test/data/manifest-checksums/rhel_9.6-aarch64-wsl-empty b/test/data/manifest-checksums/rhel_9.6-aarch64-wsl-empty new file mode 100644 index 0000000000..ecd9436b1d --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.6-aarch64-wsl-empty @@ -0,0 +1 @@ +b39224fe82e294f0a58696e00dcdb0eeaa6f4922 diff --git a/test/data/manifest-checksums/rhel_9.6-aarch64-wsl-jq_only b/test/data/manifest-checksums/rhel_9.6-aarch64-wsl-jq_only deleted file mode 100644 index 01da4d6fbc..0000000000 --- a/test/data/manifest-checksums/rhel_9.6-aarch64-wsl-jq_only +++ /dev/null @@ -1 +0,0 @@ -2b49c0fc928cb04715700a7ddc8243537dbb2596 diff --git a/test/data/manifest-checksums/rhel_9.6-ppc64le-qcow2-empty b/test/data/manifest-checksums/rhel_9.6-ppc64le-qcow2-empty new file mode 100644 index 0000000000..e25f4385a6 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.6-ppc64le-qcow2-empty @@ -0,0 +1 @@ +e155c2bd2b9242149c7bc44355e060bd0e283b36 diff --git a/test/data/manifest-checksums/rhel_9.6-ppc64le-qcow2-jq_only b/test/data/manifest-checksums/rhel_9.6-ppc64le-qcow2-jq_only deleted file mode 100644 index e89ddbaccf..0000000000 --- a/test/data/manifest-checksums/rhel_9.6-ppc64le-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -3c1c0a042ed3063af9d7be87327c13bee9f53e55 diff --git a/test/data/manifest-checksums/rhel_9.6-ppc64le-tar-empty b/test/data/manifest-checksums/rhel_9.6-ppc64le-tar-empty new file mode 100644 index 0000000000..a37aef9509 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.6-ppc64le-tar-empty @@ -0,0 +1 @@ +fc39775d13fccf0704fa28192c08e410e91d3ee7 diff --git a/test/data/manifest-checksums/rhel_9.6-ppc64le-tar-jq_only b/test/data/manifest-checksums/rhel_9.6-ppc64le-tar-jq_only deleted file mode 100644 index 97ec51eb59..0000000000 --- a/test/data/manifest-checksums/rhel_9.6-ppc64le-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -f6a3748fd3c766a77e75d5c58a56bd10027ef859 diff --git a/test/data/manifest-checksums/rhel_9.6-s390x-qcow2-empty b/test/data/manifest-checksums/rhel_9.6-s390x-qcow2-empty new file mode 100644 index 0000000000..c7e1cbff3e --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.6-s390x-qcow2-empty @@ -0,0 +1 @@ +1cfee49ca1546734adbd8db4e69b957c2bd94909 diff --git a/test/data/manifest-checksums/rhel_9.6-s390x-qcow2-jq_only b/test/data/manifest-checksums/rhel_9.6-s390x-qcow2-jq_only deleted file mode 100644 index 08dbf20fd8..0000000000 --- a/test/data/manifest-checksums/rhel_9.6-s390x-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -ef3218e935d9dc6d98e7d4e3e61a0ea1b0ac07c2 diff --git a/test/data/manifest-checksums/rhel_9.6-s390x-tar-empty b/test/data/manifest-checksums/rhel_9.6-s390x-tar-empty new file mode 100644 index 0000000000..b4b0c46499 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.6-s390x-tar-empty @@ -0,0 +1 @@ +d5f930822a6fe6d15b83f258c25ae742a3f64986 diff --git a/test/data/manifest-checksums/rhel_9.6-s390x-tar-jq_only b/test/data/manifest-checksums/rhel_9.6-s390x-tar-jq_only deleted file mode 100644 index 30e879a8b0..0000000000 --- a/test/data/manifest-checksums/rhel_9.6-s390x-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -2ea95ee439acc32d9765b6d86d9e8ecd074da0c3 diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-ami-all_customizations b/test/data/manifest-checksums/rhel_9.6-x86_64-ami-all_customizations index 6b819c77a6..57a3fcd3b2 100644 --- a/test/data/manifest-checksums/rhel_9.6-x86_64-ami-all_customizations +++ b/test/data/manifest-checksums/rhel_9.6-x86_64-ami-all_customizations @@ -1 +1 @@ -51067ac490de1a21332399317418411f5832c402 +b230316a3fe0d596fffff8257a25c4610ac6137a diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-ami-empty b/test/data/manifest-checksums/rhel_9.6-x86_64-ami-empty new file mode 100644 index 0000000000..0b2fa3b540 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.6-x86_64-ami-empty @@ -0,0 +1 @@ +db4acb5fac1aec390ca00335259d9bd64eb020c2 diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-ami-file_customizations b/test/data/manifest-checksums/rhel_9.6-x86_64-ami-file_customizations index b9997f279a..67c0742bb5 100644 --- a/test/data/manifest-checksums/rhel_9.6-x86_64-ami-file_customizations +++ b/test/data/manifest-checksums/rhel_9.6-x86_64-ami-file_customizations @@ -1 +1 @@ -6f3c374141dce47a91d0c5fea42d400156cb33d4 +98700b388d61d608b2d10cb280e0feff51d637b0 diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-ami-jq_only b/test/data/manifest-checksums/rhel_9.6-x86_64-ami-jq_only deleted file mode 100644 index 100491cbe8..0000000000 --- a/test/data/manifest-checksums/rhel_9.6-x86_64-ami-jq_only +++ /dev/null @@ -1 +0,0 @@ -a1080f755392a2d2b902ddcba1259d2ed9b10014 diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-ami-partitioning_lvm b/test/data/manifest-checksums/rhel_9.6-x86_64-ami-partitioning_lvm index e0b74c5eea..0ad05cd3fa 100644 --- a/test/data/manifest-checksums/rhel_9.6-x86_64-ami-partitioning_lvm +++ b/test/data/manifest-checksums/rhel_9.6-x86_64-ami-partitioning_lvm @@ -1 +1 @@ -e88e15b8550705eb2670f2c139893d0193ee58c1 +ea89f9d7f7eb23aabd3eb18dd1524636adad82c4 diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-ami-partitioning_plain b/test/data/manifest-checksums/rhel_9.6-x86_64-ami-partitioning_plain index fca4679881..e72f944140 100644 --- a/test/data/manifest-checksums/rhel_9.6-x86_64-ami-partitioning_plain +++ b/test/data/manifest-checksums/rhel_9.6-x86_64-ami-partitioning_plain @@ -1 +1 @@ -1636450f5f5906b08e7a5909d0a9037465f1a6f5 +d71d70b2b2db26ac07deb26fe938fec78c14f57d diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-azure_cvm-empty b/test/data/manifest-checksums/rhel_9.6-x86_64-azure_cvm-empty new file mode 100644 index 0000000000..c963bc8784 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.6-x86_64-azure_cvm-empty @@ -0,0 +1 @@ +93c052899a31fb6c822f7a07e63ff68f575e5bd7 diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-azure_cvm-jq_only b/test/data/manifest-checksums/rhel_9.6-x86_64-azure_cvm-jq_only deleted file mode 100644 index 7d3e495945..0000000000 --- a/test/data/manifest-checksums/rhel_9.6-x86_64-azure_cvm-jq_only +++ /dev/null @@ -1 +0,0 @@ -d8a64d2eabd2d56dddd5e1e95c981c5fb42d244e diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-azure_rhui-empty b/test/data/manifest-checksums/rhel_9.6-x86_64-azure_rhui-empty new file mode 100644 index 0000000000..f472a96cc9 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.6-x86_64-azure_rhui-empty @@ -0,0 +1 @@ +d7696ef541f588aaa577326ed76a320963b16d90 diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-azure_rhui-jq_only b/test/data/manifest-checksums/rhel_9.6-x86_64-azure_rhui-jq_only deleted file mode 100644 index 61406e4b7f..0000000000 --- a/test/data/manifest-checksums/rhel_9.6-x86_64-azure_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -efa486d4115c366a28a42b6022d31399bf3588a7 diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-azure_sap_rhui-empty b/test/data/manifest-checksums/rhel_9.6-x86_64-azure_sap_rhui-empty new file mode 100644 index 0000000000..c165c5e8fb --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.6-x86_64-azure_sap_rhui-empty @@ -0,0 +1 @@ +0e5636d819cac57c80f23366300daad47a67eddb diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-azure_sap_rhui-jq_only b/test/data/manifest-checksums/rhel_9.6-x86_64-azure_sap_rhui-jq_only deleted file mode 100644 index 0c11fd2d1e..0000000000 --- a/test/data/manifest-checksums/rhel_9.6-x86_64-azure_sap_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -92d61a5d66b906b6154fda8cb49dc3c207aec693 diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-azure_sapapps_rhui-empty b/test/data/manifest-checksums/rhel_9.6-x86_64-azure_sapapps_rhui-empty new file mode 100644 index 0000000000..a545abee9d --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.6-x86_64-azure_sapapps_rhui-empty @@ -0,0 +1 @@ +6366525c054725c371b39fbaf9e2b496511957c9 diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-azure_sapapps_rhui-jq_only b/test/data/manifest-checksums/rhel_9.6-x86_64-azure_sapapps_rhui-jq_only deleted file mode 100644 index 6dd30149bd..0000000000 --- a/test/data/manifest-checksums/rhel_9.6-x86_64-azure_sapapps_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -77151ddf854ceebe6a0650f49eb9bccacceb1911 diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-ec2-empty b/test/data/manifest-checksums/rhel_9.6-x86_64-ec2-empty new file mode 100644 index 0000000000..158f19c838 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.6-x86_64-ec2-empty @@ -0,0 +1 @@ +683fed0527593d54ba0cf2ad59ed75cc2f868fd8 diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-ec2-jq_only b/test/data/manifest-checksums/rhel_9.6-x86_64-ec2-jq_only deleted file mode 100644 index 6f3fb0c0ea..0000000000 --- a/test/data/manifest-checksums/rhel_9.6-x86_64-ec2-jq_only +++ /dev/null @@ -1 +0,0 @@ -a2d3285a9d17f6b69f7b5ca720570d64c7c4bb56 diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-ec2_ha-empty b/test/data/manifest-checksums/rhel_9.6-x86_64-ec2_ha-empty new file mode 100644 index 0000000000..04381c0f73 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.6-x86_64-ec2_ha-empty @@ -0,0 +1 @@ +60c117a159bbd3137f4871efc3e5ffc2c0e66bd6 diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-ec2_ha-jq_only b/test/data/manifest-checksums/rhel_9.6-x86_64-ec2_ha-jq_only deleted file mode 100644 index 97bcdf078c..0000000000 --- a/test/data/manifest-checksums/rhel_9.6-x86_64-ec2_ha-jq_only +++ /dev/null @@ -1 +0,0 @@ -a32cb222d311c869c94719e6876cb8759bc6aa4a diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-edge_container-empty b/test/data/manifest-checksums/rhel_9.6-x86_64-edge_container-empty new file mode 100644 index 0000000000..b298f75228 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.6-x86_64-edge_container-empty @@ -0,0 +1 @@ +0497257de45584d18520ded108a8184588c11407 diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-edge_container-jq_only b/test/data/manifest-checksums/rhel_9.6-x86_64-edge_container-jq_only deleted file mode 100644 index 8be9a25c1a..0000000000 --- a/test/data/manifest-checksums/rhel_9.6-x86_64-edge_container-jq_only +++ /dev/null @@ -1 +0,0 @@ -6101065e394b39cee4c58c494ccb8edca273118e diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-gce-empty b/test/data/manifest-checksums/rhel_9.6-x86_64-gce-empty new file mode 100644 index 0000000000..65389c8bdc --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.6-x86_64-gce-empty @@ -0,0 +1 @@ +3b5166192bee3cb42b1093348874479ecc3d1e65 diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-gce-jq_only b/test/data/manifest-checksums/rhel_9.6-x86_64-gce-jq_only deleted file mode 100644 index b1e605ff2c..0000000000 --- a/test/data/manifest-checksums/rhel_9.6-x86_64-gce-jq_only +++ /dev/null @@ -1 +0,0 @@ -886f0e94f88fc5f8815db171d19a483f34843a7c diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-image_installer-empty b/test/data/manifest-checksums/rhel_9.6-x86_64-image_installer-empty new file mode 100644 index 0000000000..eeca7a1c84 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.6-x86_64-image_installer-empty @@ -0,0 +1 @@ +fe0e793c177afe82a5827a1ceaf2814849f33698 diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-image_installer-jq_only b/test/data/manifest-checksums/rhel_9.6-x86_64-image_installer-jq_only deleted file mode 100644 index d03526db8a..0000000000 --- a/test/data/manifest-checksums/rhel_9.6-x86_64-image_installer-jq_only +++ /dev/null @@ -1 +0,0 @@ -9e1ded0458ba95c35df29f3b390198aedd8b7de0 diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-minimal_raw-empty b/test/data/manifest-checksums/rhel_9.6-x86_64-minimal_raw-empty new file mode 100644 index 0000000000..81d50a7341 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.6-x86_64-minimal_raw-empty @@ -0,0 +1 @@ +cd2457bf15f4fb69a37251968c65290600a3040e diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-minimal_raw-jq_only b/test/data/manifest-checksums/rhel_9.6-x86_64-minimal_raw-jq_only deleted file mode 100644 index 6391870036..0000000000 --- a/test/data/manifest-checksums/rhel_9.6-x86_64-minimal_raw-jq_only +++ /dev/null @@ -1 +0,0 @@ -721aa853ec204b039c5763a8bb7f387728facbe2 diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-oci-empty b/test/data/manifest-checksums/rhel_9.6-x86_64-oci-empty new file mode 100644 index 0000000000..9d03e93e5c --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.6-x86_64-oci-empty @@ -0,0 +1 @@ +253a939f8c1f824bf15a796b5a0485191bb7812a diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-oci-jq_only b/test/data/manifest-checksums/rhel_9.6-x86_64-oci-jq_only deleted file mode 100644 index 46a3700ac5..0000000000 --- a/test/data/manifest-checksums/rhel_9.6-x86_64-oci-jq_only +++ /dev/null @@ -1 +0,0 @@ -fb9e5c41829d427ebb0b0f5def120e368fd18400 diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-openstack-empty b/test/data/manifest-checksums/rhel_9.6-x86_64-openstack-empty new file mode 100644 index 0000000000..82835b0899 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.6-x86_64-openstack-empty @@ -0,0 +1 @@ +aee8ac0606f57519512c0c725614a8f93b119f01 diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-openstack-jq_only b/test/data/manifest-checksums/rhel_9.6-x86_64-openstack-jq_only deleted file mode 100644 index 4d853a366e..0000000000 --- a/test/data/manifest-checksums/rhel_9.6-x86_64-openstack-jq_only +++ /dev/null @@ -1 +0,0 @@ -f443893929666235f462089d9a0572aadc674c4e diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-ova-empty b/test/data/manifest-checksums/rhel_9.6-x86_64-ova-empty new file mode 100644 index 0000000000..992c65263f --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.6-x86_64-ova-empty @@ -0,0 +1 @@ +6de40a963e9dd663b8e6171527a768bab97a14c0 diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-ova-jq_only b/test/data/manifest-checksums/rhel_9.6-x86_64-ova-jq_only deleted file mode 100644 index a70e3c7c5c..0000000000 --- a/test/data/manifest-checksums/rhel_9.6-x86_64-ova-jq_only +++ /dev/null @@ -1 +0,0 @@ -3a10b52e671d43f918e17badf9d4db508ad68e7f diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-pxe_tar_xz-empty b/test/data/manifest-checksums/rhel_9.6-x86_64-pxe_tar_xz-empty new file mode 100644 index 0000000000..4681c2e432 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.6-x86_64-pxe_tar_xz-empty @@ -0,0 +1 @@ +e7879a707a78695b14c8a17d0aef81e03dadb9e8 diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-pxe_tar_xz-jq_only b/test/data/manifest-checksums/rhel_9.6-x86_64-pxe_tar_xz-jq_only deleted file mode 100644 index 5501a6ee93..0000000000 --- a/test/data/manifest-checksums/rhel_9.6-x86_64-pxe_tar_xz-jq_only +++ /dev/null @@ -1 +0,0 @@ -3a9e6698ae66f739a800dcef8df96fb5514273bc diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-qcow2-empty b/test/data/manifest-checksums/rhel_9.6-x86_64-qcow2-empty new file mode 100644 index 0000000000..9d03e93e5c --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.6-x86_64-qcow2-empty @@ -0,0 +1 @@ +253a939f8c1f824bf15a796b5a0485191bb7812a diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-qcow2-jq_only b/test/data/manifest-checksums/rhel_9.6-x86_64-qcow2-jq_only deleted file mode 100644 index 46a3700ac5..0000000000 --- a/test/data/manifest-checksums/rhel_9.6-x86_64-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -fb9e5c41829d427ebb0b0f5def120e368fd18400 diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-tar-empty b/test/data/manifest-checksums/rhel_9.6-x86_64-tar-empty new file mode 100644 index 0000000000..dfafd13e70 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.6-x86_64-tar-empty @@ -0,0 +1 @@ +3842ee32e5db047239018d31802029f3046ab7b1 diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-tar-jq_only b/test/data/manifest-checksums/rhel_9.6-x86_64-tar-jq_only deleted file mode 100644 index 21ea4354bc..0000000000 --- a/test/data/manifest-checksums/rhel_9.6-x86_64-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -b0812bb5528de18299a53ac8862be4d64f0f66aa diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-vagrant_libvirt-empty b/test/data/manifest-checksums/rhel_9.6-x86_64-vagrant_libvirt-empty new file mode 100644 index 0000000000..455448c12b --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.6-x86_64-vagrant_libvirt-empty @@ -0,0 +1 @@ +55d2fa98f5cafd646ddbdee6cd4f92e76fb0dddb diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-vagrant_libvirt-jq_only b/test/data/manifest-checksums/rhel_9.6-x86_64-vagrant_libvirt-jq_only deleted file mode 100644 index 3d0ed9f503..0000000000 --- a/test/data/manifest-checksums/rhel_9.6-x86_64-vagrant_libvirt-jq_only +++ /dev/null @@ -1 +0,0 @@ -ccf8549d97376f5a0330dadc30524665ac1cb072 diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-vagrant_virtualbox-empty b/test/data/manifest-checksums/rhel_9.6-x86_64-vagrant_virtualbox-empty new file mode 100644 index 0000000000..5cd3066eb9 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.6-x86_64-vagrant_virtualbox-empty @@ -0,0 +1 @@ +fde75f12254898e01bf648a987b37dedced55df3 diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-vagrant_virtualbox-jq_only b/test/data/manifest-checksums/rhel_9.6-x86_64-vagrant_virtualbox-jq_only deleted file mode 100644 index 7f0afcabf2..0000000000 --- a/test/data/manifest-checksums/rhel_9.6-x86_64-vagrant_virtualbox-jq_only +++ /dev/null @@ -1 +0,0 @@ -e5229501e934a819dddd673664044d29ddfe35ff diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-vhd-empty b/test/data/manifest-checksums/rhel_9.6-x86_64-vhd-empty new file mode 100644 index 0000000000..2d3354e543 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.6-x86_64-vhd-empty @@ -0,0 +1 @@ +34c65af192bb1773d448b0bf88c8f7c737a319e0 diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-vhd-jq_only b/test/data/manifest-checksums/rhel_9.6-x86_64-vhd-jq_only deleted file mode 100644 index b101d6005d..0000000000 --- a/test/data/manifest-checksums/rhel_9.6-x86_64-vhd-jq_only +++ /dev/null @@ -1 +0,0 @@ -939c4c82b56d81e68ee399be2275ed197bd7a7c0 diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-vmdk-empty b/test/data/manifest-checksums/rhel_9.6-x86_64-vmdk-empty new file mode 100644 index 0000000000..51fe87c278 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.6-x86_64-vmdk-empty @@ -0,0 +1 @@ +b18186d61e6b53dfc5c0928cdd2b25f489619d3e diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-vmdk-jq_only b/test/data/manifest-checksums/rhel_9.6-x86_64-vmdk-jq_only deleted file mode 100644 index afe902f4a4..0000000000 --- a/test/data/manifest-checksums/rhel_9.6-x86_64-vmdk-jq_only +++ /dev/null @@ -1 +0,0 @@ -5d5f0d1666a37cb95bc1d21a08f32434c2af1f72 diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-wsl-empty b/test/data/manifest-checksums/rhel_9.6-x86_64-wsl-empty new file mode 100644 index 0000000000..24824a5a21 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.6-x86_64-wsl-empty @@ -0,0 +1 @@ +22880ea938ec6b731714f8fb24bcfdccd90f991f diff --git a/test/data/manifest-checksums/rhel_9.6-x86_64-wsl-jq_only b/test/data/manifest-checksums/rhel_9.6-x86_64-wsl-jq_only deleted file mode 100644 index 79d1e141eb..0000000000 --- a/test/data/manifest-checksums/rhel_9.6-x86_64-wsl-jq_only +++ /dev/null @@ -1 +0,0 @@ -caa91494b3112764d25893fc7219a78046327739 diff --git a/test/data/manifest-checksums/rhel_9.7-aarch64-ami-all_customizations b/test/data/manifest-checksums/rhel_9.7-aarch64-ami-all_customizations index 9a38a34694..2f68e71605 100644 --- a/test/data/manifest-checksums/rhel_9.7-aarch64-ami-all_customizations +++ b/test/data/manifest-checksums/rhel_9.7-aarch64-ami-all_customizations @@ -1 +1 @@ -9d24dadc5b5ea8171565a7522ce0323b56cdfaff +d252e3ca267907096b25c8b697ebfa091693e2bd diff --git a/test/data/manifest-checksums/rhel_9.7-aarch64-ami-empty b/test/data/manifest-checksums/rhel_9.7-aarch64-ami-empty new file mode 100644 index 0000000000..90f03acb1b --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.7-aarch64-ami-empty @@ -0,0 +1 @@ +6d0b86aa18cbb18f15ecc1a085d2fba61bf56607 diff --git a/test/data/manifest-checksums/rhel_9.7-aarch64-ami-jq_only b/test/data/manifest-checksums/rhel_9.7-aarch64-ami-jq_only deleted file mode 100644 index 65c35582d1..0000000000 --- a/test/data/manifest-checksums/rhel_9.7-aarch64-ami-jq_only +++ /dev/null @@ -1 +0,0 @@ -b60e53ccbf37a8de483bbe779b91bcbe406d3143 diff --git a/test/data/manifest-checksums/rhel_9.7-aarch64-ami-partitioning_lvm b/test/data/manifest-checksums/rhel_9.7-aarch64-ami-partitioning_lvm index 21264e93ec..f3ef37fc98 100644 --- a/test/data/manifest-checksums/rhel_9.7-aarch64-ami-partitioning_lvm +++ b/test/data/manifest-checksums/rhel_9.7-aarch64-ami-partitioning_lvm @@ -1 +1 @@ -f60fa7df246ebc3fea80bcc084b5e27826d4de02 +1c92b226c0500d7546c473882c05988eeab7680b diff --git a/test/data/manifest-checksums/rhel_9.7-aarch64-ami-partitioning_plain b/test/data/manifest-checksums/rhel_9.7-aarch64-ami-partitioning_plain index 9456349a40..213a207baf 100644 --- a/test/data/manifest-checksums/rhel_9.7-aarch64-ami-partitioning_plain +++ b/test/data/manifest-checksums/rhel_9.7-aarch64-ami-partitioning_plain @@ -1 +1 @@ -6ac5bfc84c66d3174f058c07892d290bf479a544 +07f63d42e3f9e9d3aceefbce8a1dc50606743576 diff --git a/test/data/manifest-checksums/rhel_9.7-aarch64-azure_rhui-empty b/test/data/manifest-checksums/rhel_9.7-aarch64-azure_rhui-empty new file mode 100644 index 0000000000..12f6572663 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.7-aarch64-azure_rhui-empty @@ -0,0 +1 @@ +705aef5e0cf3968d985c76eafb4a7a72de9329c5 diff --git a/test/data/manifest-checksums/rhel_9.7-aarch64-azure_rhui-jq_only b/test/data/manifest-checksums/rhel_9.7-aarch64-azure_rhui-jq_only deleted file mode 100644 index a6e6a24c21..0000000000 --- a/test/data/manifest-checksums/rhel_9.7-aarch64-azure_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -534dc5f34ff319b8bc190787c0c19b5341acc8b2 diff --git a/test/data/manifest-checksums/rhel_9.7-aarch64-ec2-empty b/test/data/manifest-checksums/rhel_9.7-aarch64-ec2-empty new file mode 100644 index 0000000000..66df238b2d --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.7-aarch64-ec2-empty @@ -0,0 +1 @@ +022abc0e9f84c8f8e1ad7e114911e47dece1ec0f diff --git a/test/data/manifest-checksums/rhel_9.7-aarch64-ec2-jq_only b/test/data/manifest-checksums/rhel_9.7-aarch64-ec2-jq_only deleted file mode 100644 index 244b6409a5..0000000000 --- a/test/data/manifest-checksums/rhel_9.7-aarch64-ec2-jq_only +++ /dev/null @@ -1 +0,0 @@ -f0787d08b98a1510bb0f49d34a51ee8218d03f34 diff --git a/test/data/manifest-checksums/rhel_9.7-aarch64-edge_container-empty b/test/data/manifest-checksums/rhel_9.7-aarch64-edge_container-empty new file mode 100644 index 0000000000..432d435d62 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.7-aarch64-edge_container-empty @@ -0,0 +1 @@ +ad583bd19ad6e30da4a576794d6a8d57519c4779 diff --git a/test/data/manifest-checksums/rhel_9.7-aarch64-edge_container-jq_only b/test/data/manifest-checksums/rhel_9.7-aarch64-edge_container-jq_only deleted file mode 100644 index 528d262eaf..0000000000 --- a/test/data/manifest-checksums/rhel_9.7-aarch64-edge_container-jq_only +++ /dev/null @@ -1 +0,0 @@ -05a6e825d44b070598a5edecf80a5a1e7349f584 diff --git a/test/data/manifest-checksums/rhel_9.7-aarch64-image_installer-empty b/test/data/manifest-checksums/rhel_9.7-aarch64-image_installer-empty new file mode 100644 index 0000000000..eeefe49e31 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.7-aarch64-image_installer-empty @@ -0,0 +1 @@ +7c65bbff7fce2c161ecf9c351171fe09d59b214d diff --git a/test/data/manifest-checksums/rhel_9.7-aarch64-image_installer-jq_only b/test/data/manifest-checksums/rhel_9.7-aarch64-image_installer-jq_only deleted file mode 100644 index 8728600a4c..0000000000 --- a/test/data/manifest-checksums/rhel_9.7-aarch64-image_installer-jq_only +++ /dev/null @@ -1 +0,0 @@ -85111b4961ea9b589bee6b684d1e2b0e926df1b8 diff --git a/test/data/manifest-checksums/rhel_9.7-aarch64-minimal_raw-empty b/test/data/manifest-checksums/rhel_9.7-aarch64-minimal_raw-empty new file mode 100644 index 0000000000..254abbe7a1 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.7-aarch64-minimal_raw-empty @@ -0,0 +1 @@ +50286c886d3f0b28cfb34c1d57a9f04d418fc1a8 diff --git a/test/data/manifest-checksums/rhel_9.7-aarch64-minimal_raw-jq_only b/test/data/manifest-checksums/rhel_9.7-aarch64-minimal_raw-jq_only deleted file mode 100644 index b92e079a99..0000000000 --- a/test/data/manifest-checksums/rhel_9.7-aarch64-minimal_raw-jq_only +++ /dev/null @@ -1 +0,0 @@ -0baabeb281f5edd9fabef59538387331d4ceb05b diff --git a/test/data/manifest-checksums/rhel_9.7-aarch64-openstack-empty b/test/data/manifest-checksums/rhel_9.7-aarch64-openstack-empty new file mode 100644 index 0000000000..e56ed26df8 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.7-aarch64-openstack-empty @@ -0,0 +1 @@ +73227d5054d01a5b0e2a73373aa05d980f5f8b02 diff --git a/test/data/manifest-checksums/rhel_9.7-aarch64-openstack-jq_only b/test/data/manifest-checksums/rhel_9.7-aarch64-openstack-jq_only deleted file mode 100644 index 6b42a1dc53..0000000000 --- a/test/data/manifest-checksums/rhel_9.7-aarch64-openstack-jq_only +++ /dev/null @@ -1 +0,0 @@ -b7f1909f32630abe7124c325a6dbb1e8a4dd9d67 diff --git a/test/data/manifest-checksums/rhel_9.7-aarch64-pxe_tar_xz-empty b/test/data/manifest-checksums/rhel_9.7-aarch64-pxe_tar_xz-empty new file mode 100644 index 0000000000..dd7c22eebb --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.7-aarch64-pxe_tar_xz-empty @@ -0,0 +1 @@ +57a28785cbdf725a7c21588889e960dc1df2130e diff --git a/test/data/manifest-checksums/rhel_9.7-aarch64-pxe_tar_xz-jq_only b/test/data/manifest-checksums/rhel_9.7-aarch64-pxe_tar_xz-jq_only deleted file mode 100644 index 10b0e75958..0000000000 --- a/test/data/manifest-checksums/rhel_9.7-aarch64-pxe_tar_xz-jq_only +++ /dev/null @@ -1 +0,0 @@ -babd1cf249e2f6050adcba65511bfa288b15d82f diff --git a/test/data/manifest-checksums/rhel_9.7-aarch64-qcow2-empty b/test/data/manifest-checksums/rhel_9.7-aarch64-qcow2-empty new file mode 100644 index 0000000000..2c24489b1e --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.7-aarch64-qcow2-empty @@ -0,0 +1 @@ +699288a47c7da593aae933e4eb22ffa7eedd384a diff --git a/test/data/manifest-checksums/rhel_9.7-aarch64-qcow2-jq_only b/test/data/manifest-checksums/rhel_9.7-aarch64-qcow2-jq_only deleted file mode 100644 index 28c8e1345e..0000000000 --- a/test/data/manifest-checksums/rhel_9.7-aarch64-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -462799d850ab7199b96354c453de753a204e7aa1 diff --git a/test/data/manifest-checksums/rhel_9.7-aarch64-tar-empty b/test/data/manifest-checksums/rhel_9.7-aarch64-tar-empty new file mode 100644 index 0000000000..c2e5d336d2 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.7-aarch64-tar-empty @@ -0,0 +1 @@ +594424dc153fd8d94bf21655c76da24da9a29ed8 diff --git a/test/data/manifest-checksums/rhel_9.7-aarch64-tar-jq_only b/test/data/manifest-checksums/rhel_9.7-aarch64-tar-jq_only deleted file mode 100644 index 4beb7d5e3c..0000000000 --- a/test/data/manifest-checksums/rhel_9.7-aarch64-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -c5ac75d1f10267c80cf7b926fde36ccc4e428f9e diff --git a/test/data/manifest-checksums/rhel_9.7-aarch64-vagrant_libvirt-empty b/test/data/manifest-checksums/rhel_9.7-aarch64-vagrant_libvirt-empty new file mode 100644 index 0000000000..d29a437bf4 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.7-aarch64-vagrant_libvirt-empty @@ -0,0 +1 @@ +76616de056d88fae2f9712d635795fc4fb9dd417 diff --git a/test/data/manifest-checksums/rhel_9.7-aarch64-vagrant_libvirt-jq_only b/test/data/manifest-checksums/rhel_9.7-aarch64-vagrant_libvirt-jq_only deleted file mode 100644 index 804433f6c0..0000000000 --- a/test/data/manifest-checksums/rhel_9.7-aarch64-vagrant_libvirt-jq_only +++ /dev/null @@ -1 +0,0 @@ -76d13cac4618aa83d77a82114d0f39acfd2b85c9 diff --git a/test/data/manifest-checksums/rhel_9.7-aarch64-vhd-empty b/test/data/manifest-checksums/rhel_9.7-aarch64-vhd-empty new file mode 100644 index 0000000000..b3b14badfe --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.7-aarch64-vhd-empty @@ -0,0 +1 @@ +dfd51a6ce91dcfdbbb7c8cefd3a70672702209d4 diff --git a/test/data/manifest-checksums/rhel_9.7-aarch64-vhd-jq_only b/test/data/manifest-checksums/rhel_9.7-aarch64-vhd-jq_only deleted file mode 100644 index 0cedca06ab..0000000000 --- a/test/data/manifest-checksums/rhel_9.7-aarch64-vhd-jq_only +++ /dev/null @@ -1 +0,0 @@ -2bc9aec717cec0f2ea4d72b6f660d18dbc46a0c9 diff --git a/test/data/manifest-checksums/rhel_9.7-aarch64-wsl-empty b/test/data/manifest-checksums/rhel_9.7-aarch64-wsl-empty new file mode 100644 index 0000000000..037a433fd5 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.7-aarch64-wsl-empty @@ -0,0 +1 @@ +c3b3bb0d9dec8c24085d5ac856ac4c0e84e9a0b8 diff --git a/test/data/manifest-checksums/rhel_9.7-aarch64-wsl-jq_only b/test/data/manifest-checksums/rhel_9.7-aarch64-wsl-jq_only deleted file mode 100644 index 64498c8223..0000000000 --- a/test/data/manifest-checksums/rhel_9.7-aarch64-wsl-jq_only +++ /dev/null @@ -1 +0,0 @@ -c8b81564c3bf018026452139bf8d33054e7c0a56 diff --git a/test/data/manifest-checksums/rhel_9.7-ppc64le-qcow2-empty b/test/data/manifest-checksums/rhel_9.7-ppc64le-qcow2-empty new file mode 100644 index 0000000000..f1dc8ece3b --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.7-ppc64le-qcow2-empty @@ -0,0 +1 @@ +77e13e3ecd3e25954026655c310e46fc7cb0c2c1 diff --git a/test/data/manifest-checksums/rhel_9.7-ppc64le-qcow2-jq_only b/test/data/manifest-checksums/rhel_9.7-ppc64le-qcow2-jq_only deleted file mode 100644 index 663dbba85b..0000000000 --- a/test/data/manifest-checksums/rhel_9.7-ppc64le-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -5bcef29237e65ddb97723aadd648ecc31331e8cb diff --git a/test/data/manifest-checksums/rhel_9.7-ppc64le-tar-empty b/test/data/manifest-checksums/rhel_9.7-ppc64le-tar-empty new file mode 100644 index 0000000000..fce6dab525 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.7-ppc64le-tar-empty @@ -0,0 +1 @@ +15eb786404a0dc41c9207963cf88352260595ead diff --git a/test/data/manifest-checksums/rhel_9.7-ppc64le-tar-jq_only b/test/data/manifest-checksums/rhel_9.7-ppc64le-tar-jq_only deleted file mode 100644 index 3ddc172627..0000000000 --- a/test/data/manifest-checksums/rhel_9.7-ppc64le-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -4e856d084182db8f9028c6ce2b04a11e43033f5e diff --git a/test/data/manifest-checksums/rhel_9.7-s390x-qcow2-empty b/test/data/manifest-checksums/rhel_9.7-s390x-qcow2-empty new file mode 100644 index 0000000000..1627e7c6eb --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.7-s390x-qcow2-empty @@ -0,0 +1 @@ +bca591d8e0af210584da6abb9ead8a87228cf39e diff --git a/test/data/manifest-checksums/rhel_9.7-s390x-qcow2-jq_only b/test/data/manifest-checksums/rhel_9.7-s390x-qcow2-jq_only deleted file mode 100644 index 3018d7d079..0000000000 --- a/test/data/manifest-checksums/rhel_9.7-s390x-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -d3d3be1dc44480ab3780cde152a0d22bbb91b315 diff --git a/test/data/manifest-checksums/rhel_9.7-s390x-tar-empty b/test/data/manifest-checksums/rhel_9.7-s390x-tar-empty new file mode 100644 index 0000000000..87bfb67dc3 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.7-s390x-tar-empty @@ -0,0 +1 @@ +0e2a25044aa6c381e199e01d701123228668f19e diff --git a/test/data/manifest-checksums/rhel_9.7-s390x-tar-jq_only b/test/data/manifest-checksums/rhel_9.7-s390x-tar-jq_only deleted file mode 100644 index 968406629d..0000000000 --- a/test/data/manifest-checksums/rhel_9.7-s390x-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -d6d3029309801e7696d7f0e2f6e6da1b06a858b4 diff --git a/test/data/manifest-checksums/rhel_9.7-x86_64-ami-all_customizations b/test/data/manifest-checksums/rhel_9.7-x86_64-ami-all_customizations index e5c14c820e..e3986d3a1c 100644 --- a/test/data/manifest-checksums/rhel_9.7-x86_64-ami-all_customizations +++ b/test/data/manifest-checksums/rhel_9.7-x86_64-ami-all_customizations @@ -1 +1 @@ -ba8d8424b3b43d2237d0a567ef01a2797f8b1f0e +3a6a10f57d5a8d4e15db959dffc5f1e128766fcb diff --git a/test/data/manifest-checksums/rhel_9.7-x86_64-ami-empty b/test/data/manifest-checksums/rhel_9.7-x86_64-ami-empty new file mode 100644 index 0000000000..c8eeaa2e7b --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.7-x86_64-ami-empty @@ -0,0 +1 @@ +f6e0a2c7952d73cae51cec9c6e7b41245e08fc3c diff --git a/test/data/manifest-checksums/rhel_9.7-x86_64-ami-jq_only b/test/data/manifest-checksums/rhel_9.7-x86_64-ami-jq_only deleted file mode 100644 index 6c4a550b82..0000000000 --- a/test/data/manifest-checksums/rhel_9.7-x86_64-ami-jq_only +++ /dev/null @@ -1 +0,0 @@ -b56536df30ee7f109cdbc13a14e340b1645bcb81 diff --git a/test/data/manifest-checksums/rhel_9.7-x86_64-ami-partitioning_lvm b/test/data/manifest-checksums/rhel_9.7-x86_64-ami-partitioning_lvm index 26b050ffdb..42c44710b9 100644 --- a/test/data/manifest-checksums/rhel_9.7-x86_64-ami-partitioning_lvm +++ b/test/data/manifest-checksums/rhel_9.7-x86_64-ami-partitioning_lvm @@ -1 +1 @@ -7901ffe5ffe5140938823840221d5ad3ebecaee4 +afcad955a23b709866b0425fbd9b904b8b0f0172 diff --git a/test/data/manifest-checksums/rhel_9.7-x86_64-ami-partitioning_plain b/test/data/manifest-checksums/rhel_9.7-x86_64-ami-partitioning_plain index bf70f0cb06..fba8deeefd 100644 --- a/test/data/manifest-checksums/rhel_9.7-x86_64-ami-partitioning_plain +++ b/test/data/manifest-checksums/rhel_9.7-x86_64-ami-partitioning_plain @@ -1 +1 @@ -17f4328b87d8d053d052220973787c1d7658e4fc +2cab08b24ea78f226d8e49f7995f53a8a44647e8 diff --git a/test/data/manifest-checksums/rhel_9.7-x86_64-azure_cvm-empty b/test/data/manifest-checksums/rhel_9.7-x86_64-azure_cvm-empty new file mode 100644 index 0000000000..7204b84b51 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.7-x86_64-azure_cvm-empty @@ -0,0 +1 @@ +1e9206ca10b6467afa895419e588f7f9b651ef30 diff --git a/test/data/manifest-checksums/rhel_9.7-x86_64-azure_cvm-jq_only b/test/data/manifest-checksums/rhel_9.7-x86_64-azure_cvm-jq_only deleted file mode 100644 index bbfe2684af..0000000000 --- a/test/data/manifest-checksums/rhel_9.7-x86_64-azure_cvm-jq_only +++ /dev/null @@ -1 +0,0 @@ -0a0f3fdafb9ebaf2dece046522e5944f7b247b02 diff --git a/test/data/manifest-checksums/rhel_9.7-x86_64-azure_rhui-empty b/test/data/manifest-checksums/rhel_9.7-x86_64-azure_rhui-empty new file mode 100644 index 0000000000..a343becc99 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.7-x86_64-azure_rhui-empty @@ -0,0 +1 @@ +c584182b7f3247c1fe59193068018f2876ace9a9 diff --git a/test/data/manifest-checksums/rhel_9.7-x86_64-azure_rhui-jq_only b/test/data/manifest-checksums/rhel_9.7-x86_64-azure_rhui-jq_only deleted file mode 100644 index 4a18caabc2..0000000000 --- a/test/data/manifest-checksums/rhel_9.7-x86_64-azure_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -d671c9464dedea5c8a0c253f465e6b6fac0ca250 diff --git a/test/data/manifest-checksums/rhel_9.7-x86_64-azure_sap_rhui-empty b/test/data/manifest-checksums/rhel_9.7-x86_64-azure_sap_rhui-empty new file mode 100644 index 0000000000..b25728623a --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.7-x86_64-azure_sap_rhui-empty @@ -0,0 +1 @@ +8680e049b83a5e8cb49ae059f52537ac7218bcc3 diff --git a/test/data/manifest-checksums/rhel_9.7-x86_64-azure_sap_rhui-jq_only b/test/data/manifest-checksums/rhel_9.7-x86_64-azure_sap_rhui-jq_only deleted file mode 100644 index b8023c00ce..0000000000 --- a/test/data/manifest-checksums/rhel_9.7-x86_64-azure_sap_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -cc59fd1e3cdd05975b91905aa592aeba79122ec9 diff --git a/test/data/manifest-checksums/rhel_9.7-x86_64-azure_sapapps_rhui-empty b/test/data/manifest-checksums/rhel_9.7-x86_64-azure_sapapps_rhui-empty new file mode 100644 index 0000000000..69eb43b81f --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.7-x86_64-azure_sapapps_rhui-empty @@ -0,0 +1 @@ +5448df9a40c9bc33cfdc0a0f2f46a79399ede38f diff --git a/test/data/manifest-checksums/rhel_9.7-x86_64-azure_sapapps_rhui-jq_only b/test/data/manifest-checksums/rhel_9.7-x86_64-azure_sapapps_rhui-jq_only deleted file mode 100644 index 486b6ae47f..0000000000 --- a/test/data/manifest-checksums/rhel_9.7-x86_64-azure_sapapps_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -d5f8ef56108a8c6ff3f3f68c3f9affc643580eaf diff --git a/test/data/manifest-checksums/rhel_9.7-x86_64-ec2-empty b/test/data/manifest-checksums/rhel_9.7-x86_64-ec2-empty new file mode 100644 index 0000000000..70590fca49 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.7-x86_64-ec2-empty @@ -0,0 +1 @@ +baf5a89369cbaf614ef9811721e4d64ec8792c28 diff --git a/test/data/manifest-checksums/rhel_9.7-x86_64-ec2-jq_only b/test/data/manifest-checksums/rhel_9.7-x86_64-ec2-jq_only deleted file mode 100644 index f9b2a5f298..0000000000 --- a/test/data/manifest-checksums/rhel_9.7-x86_64-ec2-jq_only +++ /dev/null @@ -1 +0,0 @@ -ec5ff0b84ce4824d1878e49769d75e5060a9d6b1 diff --git a/test/data/manifest-checksums/rhel_9.7-x86_64-ec2_ha-empty b/test/data/manifest-checksums/rhel_9.7-x86_64-ec2_ha-empty new file mode 100644 index 0000000000..819f1f2757 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.7-x86_64-ec2_ha-empty @@ -0,0 +1 @@ +a6a44349a6c407c8c641f447aab8462383d763f2 diff --git a/test/data/manifest-checksums/rhel_9.7-x86_64-ec2_ha-jq_only b/test/data/manifest-checksums/rhel_9.7-x86_64-ec2_ha-jq_only deleted file mode 100644 index 56f6f82938..0000000000 --- a/test/data/manifest-checksums/rhel_9.7-x86_64-ec2_ha-jq_only +++ /dev/null @@ -1 +0,0 @@ -25103aaac34dfa90b4c86d7ea6ce38d28ff194d4 diff --git a/test/data/manifest-checksums/rhel_9.7-x86_64-edge_container-empty b/test/data/manifest-checksums/rhel_9.7-x86_64-edge_container-empty new file mode 100644 index 0000000000..846c5eafe4 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.7-x86_64-edge_container-empty @@ -0,0 +1 @@ +f8ae601dc292ae47986b97dcf276a61a189f5247 diff --git a/test/data/manifest-checksums/rhel_9.7-x86_64-edge_container-jq_only b/test/data/manifest-checksums/rhel_9.7-x86_64-edge_container-jq_only deleted file mode 100644 index a85ff4333d..0000000000 --- a/test/data/manifest-checksums/rhel_9.7-x86_64-edge_container-jq_only +++ /dev/null @@ -1 +0,0 @@ -2f99d36dcae22b9afcad7a37fe51996d57c591cb diff --git a/test/data/manifest-checksums/rhel_9.7-x86_64-gce-empty b/test/data/manifest-checksums/rhel_9.7-x86_64-gce-empty new file mode 100644 index 0000000000..60ba26567b --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.7-x86_64-gce-empty @@ -0,0 +1 @@ +a6779e4dbba3e96c3c5561c166cf29840a790a61 diff --git a/test/data/manifest-checksums/rhel_9.7-x86_64-gce-jq_only b/test/data/manifest-checksums/rhel_9.7-x86_64-gce-jq_only deleted file mode 100644 index abe88e0e0b..0000000000 --- a/test/data/manifest-checksums/rhel_9.7-x86_64-gce-jq_only +++ /dev/null @@ -1 +0,0 @@ -969d1786886d4ffe22db61cfa8f3d5f221d50594 diff --git a/test/data/manifest-checksums/rhel_9.7-x86_64-image_installer-empty b/test/data/manifest-checksums/rhel_9.7-x86_64-image_installer-empty new file mode 100644 index 0000000000..2ff10fba84 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.7-x86_64-image_installer-empty @@ -0,0 +1 @@ +a7f0e6bf9d7e0cc8ecbcb4889e4ef43bf3ddfa32 diff --git a/test/data/manifest-checksums/rhel_9.7-x86_64-image_installer-jq_only b/test/data/manifest-checksums/rhel_9.7-x86_64-image_installer-jq_only deleted file mode 100644 index 4795734b8d..0000000000 --- a/test/data/manifest-checksums/rhel_9.7-x86_64-image_installer-jq_only +++ /dev/null @@ -1 +0,0 @@ -2904b494ac91f27069b74956eba9a6d41ae146e6 diff --git a/test/data/manifest-checksums/rhel_9.7-x86_64-minimal_raw-empty b/test/data/manifest-checksums/rhel_9.7-x86_64-minimal_raw-empty new file mode 100644 index 0000000000..e181afc126 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.7-x86_64-minimal_raw-empty @@ -0,0 +1 @@ +a246c21926489f492c2cbe149da8e867d94aec28 diff --git a/test/data/manifest-checksums/rhel_9.7-x86_64-minimal_raw-jq_only b/test/data/manifest-checksums/rhel_9.7-x86_64-minimal_raw-jq_only deleted file mode 100644 index 9acc670c0d..0000000000 --- a/test/data/manifest-checksums/rhel_9.7-x86_64-minimal_raw-jq_only +++ /dev/null @@ -1 +0,0 @@ -c772e72a3365022477fb61adb9574774537d00f8 diff --git a/test/data/manifest-checksums/rhel_9.7-x86_64-oci-empty b/test/data/manifest-checksums/rhel_9.7-x86_64-oci-empty new file mode 100644 index 0000000000..89fd869b0b --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.7-x86_64-oci-empty @@ -0,0 +1 @@ +3f2b7ef726b55e33a939c180ae78b0dee959d3e2 diff --git a/test/data/manifest-checksums/rhel_9.7-x86_64-oci-jq_only b/test/data/manifest-checksums/rhel_9.7-x86_64-oci-jq_only deleted file mode 100644 index f48ac7445b..0000000000 --- a/test/data/manifest-checksums/rhel_9.7-x86_64-oci-jq_only +++ /dev/null @@ -1 +0,0 @@ -d7146035b468ea3e3bd42777bc8f7dbc614c440b diff --git a/test/data/manifest-checksums/rhel_9.7-x86_64-openstack-empty b/test/data/manifest-checksums/rhel_9.7-x86_64-openstack-empty new file mode 100644 index 0000000000..81cd53e620 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.7-x86_64-openstack-empty @@ -0,0 +1 @@ +fdf33a9133a2b17be7e1f2ca4e88b5e1fde20b26 diff --git a/test/data/manifest-checksums/rhel_9.7-x86_64-openstack-jq_only b/test/data/manifest-checksums/rhel_9.7-x86_64-openstack-jq_only deleted file mode 100644 index 7ab5cb4c31..0000000000 --- a/test/data/manifest-checksums/rhel_9.7-x86_64-openstack-jq_only +++ /dev/null @@ -1 +0,0 @@ -4f6b8a90eba15c1708a68f2c5b99ea9682afef57 diff --git a/test/data/manifest-checksums/rhel_9.7-x86_64-ova-empty b/test/data/manifest-checksums/rhel_9.7-x86_64-ova-empty new file mode 100644 index 0000000000..e34bb35e0a --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.7-x86_64-ova-empty @@ -0,0 +1 @@ +b78d00ff92de0f4a9e49efb7b33620c964469954 diff --git a/test/data/manifest-checksums/rhel_9.7-x86_64-ova-jq_only b/test/data/manifest-checksums/rhel_9.7-x86_64-ova-jq_only deleted file mode 100644 index 1f549e2cfc..0000000000 --- a/test/data/manifest-checksums/rhel_9.7-x86_64-ova-jq_only +++ /dev/null @@ -1 +0,0 @@ -c6e1fae6b5958301d12f8bdb7284f211751b744c diff --git a/test/data/manifest-checksums/rhel_9.7-x86_64-pxe_tar_xz-empty b/test/data/manifest-checksums/rhel_9.7-x86_64-pxe_tar_xz-empty new file mode 100644 index 0000000000..8ccc251e63 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.7-x86_64-pxe_tar_xz-empty @@ -0,0 +1 @@ +a17f59b9353f1f04e04286f47e8eaa23ca2493c3 diff --git a/test/data/manifest-checksums/rhel_9.7-x86_64-pxe_tar_xz-jq_only b/test/data/manifest-checksums/rhel_9.7-x86_64-pxe_tar_xz-jq_only deleted file mode 100644 index 84ef00ef92..0000000000 --- a/test/data/manifest-checksums/rhel_9.7-x86_64-pxe_tar_xz-jq_only +++ /dev/null @@ -1 +0,0 @@ -eb5928d43f4a8f4464a283bd151d58dc11859dcd diff --git a/test/data/manifest-checksums/rhel_9.7-x86_64-qcow2-empty b/test/data/manifest-checksums/rhel_9.7-x86_64-qcow2-empty new file mode 100644 index 0000000000..89fd869b0b --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.7-x86_64-qcow2-empty @@ -0,0 +1 @@ +3f2b7ef726b55e33a939c180ae78b0dee959d3e2 diff --git a/test/data/manifest-checksums/rhel_9.7-x86_64-qcow2-jq_only b/test/data/manifest-checksums/rhel_9.7-x86_64-qcow2-jq_only deleted file mode 100644 index f48ac7445b..0000000000 --- a/test/data/manifest-checksums/rhel_9.7-x86_64-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -d7146035b468ea3e3bd42777bc8f7dbc614c440b diff --git a/test/data/manifest-checksums/rhel_9.7-x86_64-tar-empty b/test/data/manifest-checksums/rhel_9.7-x86_64-tar-empty new file mode 100644 index 0000000000..11dd2ab680 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.7-x86_64-tar-empty @@ -0,0 +1 @@ +0606aee7d7bf7736a4a25b4d1816973fe78b0a28 diff --git a/test/data/manifest-checksums/rhel_9.7-x86_64-tar-jq_only b/test/data/manifest-checksums/rhel_9.7-x86_64-tar-jq_only deleted file mode 100644 index 97bef9378f..0000000000 --- a/test/data/manifest-checksums/rhel_9.7-x86_64-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -f7e9bc567dee6b8011e600cbc0f4328e367c913a diff --git a/test/data/manifest-checksums/rhel_9.7-x86_64-vagrant_libvirt-empty b/test/data/manifest-checksums/rhel_9.7-x86_64-vagrant_libvirt-empty new file mode 100644 index 0000000000..f725f8db92 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.7-x86_64-vagrant_libvirt-empty @@ -0,0 +1 @@ +a4679b81d07589eb4ab84ec9f7254532e0bc9cbc diff --git a/test/data/manifest-checksums/rhel_9.7-x86_64-vagrant_libvirt-jq_only b/test/data/manifest-checksums/rhel_9.7-x86_64-vagrant_libvirt-jq_only deleted file mode 100644 index 0507dfe022..0000000000 --- a/test/data/manifest-checksums/rhel_9.7-x86_64-vagrant_libvirt-jq_only +++ /dev/null @@ -1 +0,0 @@ -a5cdeafe66f587bcc6e8eca39d283c5eed916c4e diff --git a/test/data/manifest-checksums/rhel_9.7-x86_64-vagrant_virtualbox-empty b/test/data/manifest-checksums/rhel_9.7-x86_64-vagrant_virtualbox-empty new file mode 100644 index 0000000000..0cd18615f6 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.7-x86_64-vagrant_virtualbox-empty @@ -0,0 +1 @@ +1d64fecdb6966ca97ea6f7a176239572ac4c9e75 diff --git a/test/data/manifest-checksums/rhel_9.7-x86_64-vagrant_virtualbox-jq_only b/test/data/manifest-checksums/rhel_9.7-x86_64-vagrant_virtualbox-jq_only deleted file mode 100644 index 45a3a71aea..0000000000 --- a/test/data/manifest-checksums/rhel_9.7-x86_64-vagrant_virtualbox-jq_only +++ /dev/null @@ -1 +0,0 @@ -e7880ed766e3c7fe3008c8a250f15cf022d5ea3b diff --git a/test/data/manifest-checksums/rhel_9.7-x86_64-vhd-empty b/test/data/manifest-checksums/rhel_9.7-x86_64-vhd-empty new file mode 100644 index 0000000000..b551dd1252 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.7-x86_64-vhd-empty @@ -0,0 +1 @@ +fe4ea479d1bf886f1c252962b1e5f76120bec0c2 diff --git a/test/data/manifest-checksums/rhel_9.7-x86_64-vhd-jq_only b/test/data/manifest-checksums/rhel_9.7-x86_64-vhd-jq_only deleted file mode 100644 index 634e89e690..0000000000 --- a/test/data/manifest-checksums/rhel_9.7-x86_64-vhd-jq_only +++ /dev/null @@ -1 +0,0 @@ -008db7a030f56a3ba1c440b839e7209282308fc0 diff --git a/test/data/manifest-checksums/rhel_9.7-x86_64-vmdk-empty b/test/data/manifest-checksums/rhel_9.7-x86_64-vmdk-empty new file mode 100644 index 0000000000..49f90906cd --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.7-x86_64-vmdk-empty @@ -0,0 +1 @@ +3888de80cc61d4fe35d0d6c10cd74fb5ca1ff764 diff --git a/test/data/manifest-checksums/rhel_9.7-x86_64-vmdk-jq_only b/test/data/manifest-checksums/rhel_9.7-x86_64-vmdk-jq_only deleted file mode 100644 index 4564727934..0000000000 --- a/test/data/manifest-checksums/rhel_9.7-x86_64-vmdk-jq_only +++ /dev/null @@ -1 +0,0 @@ -cfd2ffb45f23db0e9da612cd14c4809b4f435d46 diff --git a/test/data/manifest-checksums/rhel_9.7-x86_64-wsl-empty b/test/data/manifest-checksums/rhel_9.7-x86_64-wsl-empty new file mode 100644 index 0000000000..ae330b5146 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.7-x86_64-wsl-empty @@ -0,0 +1 @@ +62f943e3b38d22ec93c83038401fe5b4ce24e183 diff --git a/test/data/manifest-checksums/rhel_9.7-x86_64-wsl-jq_only b/test/data/manifest-checksums/rhel_9.7-x86_64-wsl-jq_only deleted file mode 100644 index 87e80862db..0000000000 --- a/test/data/manifest-checksums/rhel_9.7-x86_64-wsl-jq_only +++ /dev/null @@ -1 +0,0 @@ -61b7a67851022be64af9ba7065adfa123a15f653 diff --git a/test/data/manifest-checksums/rhel_9.8-aarch64-ami-all_customizations b/test/data/manifest-checksums/rhel_9.8-aarch64-ami-all_customizations index 0fafdce68a..7a790fffd3 100644 --- a/test/data/manifest-checksums/rhel_9.8-aarch64-ami-all_customizations +++ b/test/data/manifest-checksums/rhel_9.8-aarch64-ami-all_customizations @@ -1 +1 @@ -15d89638d0b0b48570d697f9732c1561f3be7131 +575913337c85e6dfd16f0f8c659a6c1704759d60 diff --git a/test/data/manifest-checksums/rhel_9.8-aarch64-ami-empty b/test/data/manifest-checksums/rhel_9.8-aarch64-ami-empty new file mode 100644 index 0000000000..26f9956739 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.8-aarch64-ami-empty @@ -0,0 +1 @@ +6ab5c0f71387879c96bd1fbdd1fd90ad74cdcdf6 diff --git a/test/data/manifest-checksums/rhel_9.8-aarch64-ami-jq_only b/test/data/manifest-checksums/rhel_9.8-aarch64-ami-jq_only deleted file mode 100644 index d2a75e97b6..0000000000 --- a/test/data/manifest-checksums/rhel_9.8-aarch64-ami-jq_only +++ /dev/null @@ -1 +0,0 @@ -2d4b4ee266d71036f162c123cfd7b1fe4c60c877 diff --git a/test/data/manifest-checksums/rhel_9.8-aarch64-ami-partitioning_lvm b/test/data/manifest-checksums/rhel_9.8-aarch64-ami-partitioning_lvm index 05b5dd9a47..0f45ebc701 100644 --- a/test/data/manifest-checksums/rhel_9.8-aarch64-ami-partitioning_lvm +++ b/test/data/manifest-checksums/rhel_9.8-aarch64-ami-partitioning_lvm @@ -1 +1 @@ -242ec1878c46356f40bdb468336a3abf2403e7f9 +823ed27ee97a52ca7ece1a91fded481e5af0635a diff --git a/test/data/manifest-checksums/rhel_9.8-aarch64-ami-partitioning_plain b/test/data/manifest-checksums/rhel_9.8-aarch64-ami-partitioning_plain index 879b96ef53..d99ddd04d3 100644 --- a/test/data/manifest-checksums/rhel_9.8-aarch64-ami-partitioning_plain +++ b/test/data/manifest-checksums/rhel_9.8-aarch64-ami-partitioning_plain @@ -1 +1 @@ -f9e6f887389d0b036d4069811718229fefe2d621 +5c5dc46c401c24929f57299dd0b6df1fd7aa5068 diff --git a/test/data/manifest-checksums/rhel_9.8-aarch64-azure_rhui-empty b/test/data/manifest-checksums/rhel_9.8-aarch64-azure_rhui-empty new file mode 100644 index 0000000000..20d5f7dde4 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.8-aarch64-azure_rhui-empty @@ -0,0 +1 @@ +e59aa25fbc9943a6ae10794525014a3d8a1eb884 diff --git a/test/data/manifest-checksums/rhel_9.8-aarch64-azure_rhui-jq_only b/test/data/manifest-checksums/rhel_9.8-aarch64-azure_rhui-jq_only deleted file mode 100644 index cd350911c5..0000000000 --- a/test/data/manifest-checksums/rhel_9.8-aarch64-azure_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -2676a99e9bda0567e263dd1ccbd6464b8a83ed10 diff --git a/test/data/manifest-checksums/rhel_9.8-aarch64-ec2-empty b/test/data/manifest-checksums/rhel_9.8-aarch64-ec2-empty new file mode 100644 index 0000000000..831ce4ae68 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.8-aarch64-ec2-empty @@ -0,0 +1 @@ +d653693bb246067ba85cad4fc6eb7abaf6522189 diff --git a/test/data/manifest-checksums/rhel_9.8-aarch64-ec2-jq_only b/test/data/manifest-checksums/rhel_9.8-aarch64-ec2-jq_only deleted file mode 100644 index 9a9570cd73..0000000000 --- a/test/data/manifest-checksums/rhel_9.8-aarch64-ec2-jq_only +++ /dev/null @@ -1 +0,0 @@ -c08ff3dc49a14b02db3102b0e2e99b6510ecb795 diff --git a/test/data/manifest-checksums/rhel_9.8-aarch64-edge_container-empty b/test/data/manifest-checksums/rhel_9.8-aarch64-edge_container-empty new file mode 100644 index 0000000000..77a4b7f35b --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.8-aarch64-edge_container-empty @@ -0,0 +1 @@ +b73e41b03ab8b3273806ea9efd3d0c2aa036e43e diff --git a/test/data/manifest-checksums/rhel_9.8-aarch64-edge_container-jq_only b/test/data/manifest-checksums/rhel_9.8-aarch64-edge_container-jq_only deleted file mode 100644 index d752e1ef25..0000000000 --- a/test/data/manifest-checksums/rhel_9.8-aarch64-edge_container-jq_only +++ /dev/null @@ -1 +0,0 @@ -4d3c843074bfa2aada9bd2b6d6e76eb9e47cb301 diff --git a/test/data/manifest-checksums/rhel_9.8-aarch64-image_installer-empty b/test/data/manifest-checksums/rhel_9.8-aarch64-image_installer-empty new file mode 100644 index 0000000000..df4e0b8971 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.8-aarch64-image_installer-empty @@ -0,0 +1 @@ +b65bf366b0b870a6140da9f321a2e8ff24c51c3c diff --git a/test/data/manifest-checksums/rhel_9.8-aarch64-image_installer-jq_only b/test/data/manifest-checksums/rhel_9.8-aarch64-image_installer-jq_only deleted file mode 100644 index 3003682bbe..0000000000 --- a/test/data/manifest-checksums/rhel_9.8-aarch64-image_installer-jq_only +++ /dev/null @@ -1 +0,0 @@ -ab57ebd317946797068c448b1c8f7969c740ec96 diff --git a/test/data/manifest-checksums/rhel_9.8-aarch64-minimal_raw-empty b/test/data/manifest-checksums/rhel_9.8-aarch64-minimal_raw-empty new file mode 100644 index 0000000000..eb6c1ae111 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.8-aarch64-minimal_raw-empty @@ -0,0 +1 @@ +c1c1f6c9b807259fc6681ea463b5236612daf381 diff --git a/test/data/manifest-checksums/rhel_9.8-aarch64-minimal_raw-jq_only b/test/data/manifest-checksums/rhel_9.8-aarch64-minimal_raw-jq_only deleted file mode 100644 index b803cc64e0..0000000000 --- a/test/data/manifest-checksums/rhel_9.8-aarch64-minimal_raw-jq_only +++ /dev/null @@ -1 +0,0 @@ -7e563d2db05f3eb4b683810f8a3e39fe3e66ee4c diff --git a/test/data/manifest-checksums/rhel_9.8-aarch64-openstack-empty b/test/data/manifest-checksums/rhel_9.8-aarch64-openstack-empty new file mode 100644 index 0000000000..4a9005e617 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.8-aarch64-openstack-empty @@ -0,0 +1 @@ +ce843444c6c9334b43f4431eaf4c6835c85cf992 diff --git a/test/data/manifest-checksums/rhel_9.8-aarch64-openstack-jq_only b/test/data/manifest-checksums/rhel_9.8-aarch64-openstack-jq_only deleted file mode 100644 index 3b2e173b73..0000000000 --- a/test/data/manifest-checksums/rhel_9.8-aarch64-openstack-jq_only +++ /dev/null @@ -1 +0,0 @@ -1cf626fcc9b004ffdc77b7a4211d077c617cba38 diff --git a/test/data/manifest-checksums/rhel_9.8-aarch64-pxe_tar_xz-empty b/test/data/manifest-checksums/rhel_9.8-aarch64-pxe_tar_xz-empty new file mode 100644 index 0000000000..89c217aed1 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.8-aarch64-pxe_tar_xz-empty @@ -0,0 +1 @@ +7b1b1f5ec0d296c45d33b6ee54ad4cfcc3a8e6b9 diff --git a/test/data/manifest-checksums/rhel_9.8-aarch64-pxe_tar_xz-jq_only b/test/data/manifest-checksums/rhel_9.8-aarch64-pxe_tar_xz-jq_only deleted file mode 100644 index 8f6545b110..0000000000 --- a/test/data/manifest-checksums/rhel_9.8-aarch64-pxe_tar_xz-jq_only +++ /dev/null @@ -1 +0,0 @@ -d3c34c73afa70f827d8537ef9a9b840e221b8b37 diff --git a/test/data/manifest-checksums/rhel_9.8-aarch64-qcow2-empty b/test/data/manifest-checksums/rhel_9.8-aarch64-qcow2-empty new file mode 100644 index 0000000000..4641a4ea90 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.8-aarch64-qcow2-empty @@ -0,0 +1 @@ +d8d9400467d6a9cfc7ae1fb7ab1c2ac6bfb6aa28 diff --git a/test/data/manifest-checksums/rhel_9.8-aarch64-qcow2-jq_only b/test/data/manifest-checksums/rhel_9.8-aarch64-qcow2-jq_only deleted file mode 100644 index 7d719f7d36..0000000000 --- a/test/data/manifest-checksums/rhel_9.8-aarch64-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -544b21fe005aa44340dfb3cfce60b60bae10affd diff --git a/test/data/manifest-checksums/rhel_9.8-aarch64-tar-empty b/test/data/manifest-checksums/rhel_9.8-aarch64-tar-empty new file mode 100644 index 0000000000..cfb3a6044b --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.8-aarch64-tar-empty @@ -0,0 +1 @@ +76189f8f809755616e67fcd2da82f50a459b43da diff --git a/test/data/manifest-checksums/rhel_9.8-aarch64-tar-jq_only b/test/data/manifest-checksums/rhel_9.8-aarch64-tar-jq_only deleted file mode 100644 index 0c4bef92d3..0000000000 --- a/test/data/manifest-checksums/rhel_9.8-aarch64-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -f86b6a226e73423b50fc516eb2789a06f508588b diff --git a/test/data/manifest-checksums/rhel_9.8-aarch64-vagrant_libvirt-empty b/test/data/manifest-checksums/rhel_9.8-aarch64-vagrant_libvirt-empty new file mode 100644 index 0000000000..a4af25ae1a --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.8-aarch64-vagrant_libvirt-empty @@ -0,0 +1 @@ +8fd27ff1063dd8c56dce78d8a917f04f74d90d22 diff --git a/test/data/manifest-checksums/rhel_9.8-aarch64-vagrant_libvirt-jq_only b/test/data/manifest-checksums/rhel_9.8-aarch64-vagrant_libvirt-jq_only deleted file mode 100644 index 338a285af7..0000000000 --- a/test/data/manifest-checksums/rhel_9.8-aarch64-vagrant_libvirt-jq_only +++ /dev/null @@ -1 +0,0 @@ -4d1dcb9876dcd81a95da279c5499e81dffed8a83 diff --git a/test/data/manifest-checksums/rhel_9.8-aarch64-vhd-empty b/test/data/manifest-checksums/rhel_9.8-aarch64-vhd-empty new file mode 100644 index 0000000000..480d3c7952 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.8-aarch64-vhd-empty @@ -0,0 +1 @@ +551c4f2abe4a36b90ffd4bb3a600ca4486027f33 diff --git a/test/data/manifest-checksums/rhel_9.8-aarch64-vhd-jq_only b/test/data/manifest-checksums/rhel_9.8-aarch64-vhd-jq_only deleted file mode 100644 index f9f7ad4f95..0000000000 --- a/test/data/manifest-checksums/rhel_9.8-aarch64-vhd-jq_only +++ /dev/null @@ -1 +0,0 @@ -376ddc9e2c9c934c07a80bd89ef94b027580b5b9 diff --git a/test/data/manifest-checksums/rhel_9.8-aarch64-wsl-empty b/test/data/manifest-checksums/rhel_9.8-aarch64-wsl-empty new file mode 100644 index 0000000000..9aad597e80 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.8-aarch64-wsl-empty @@ -0,0 +1 @@ +091946c279b4af43cb63e4b60ea30449ebea1516 diff --git a/test/data/manifest-checksums/rhel_9.8-aarch64-wsl-jq_only b/test/data/manifest-checksums/rhel_9.8-aarch64-wsl-jq_only deleted file mode 100644 index c22152290f..0000000000 --- a/test/data/manifest-checksums/rhel_9.8-aarch64-wsl-jq_only +++ /dev/null @@ -1 +0,0 @@ -4df30615dac0bbc7d082a2f791325f66feef855d diff --git a/test/data/manifest-checksums/rhel_9.8-ppc64le-qcow2-empty b/test/data/manifest-checksums/rhel_9.8-ppc64le-qcow2-empty new file mode 100644 index 0000000000..388380b1dc --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.8-ppc64le-qcow2-empty @@ -0,0 +1 @@ +a2bb5f3d92abffe79d0ce8448b0ce6c4e1a6ad9e diff --git a/test/data/manifest-checksums/rhel_9.8-ppc64le-qcow2-jq_only b/test/data/manifest-checksums/rhel_9.8-ppc64le-qcow2-jq_only deleted file mode 100644 index 7e56053975..0000000000 --- a/test/data/manifest-checksums/rhel_9.8-ppc64le-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -0a7f994398caafd6b8f179db6d62a15c1449dcd4 diff --git a/test/data/manifest-checksums/rhel_9.8-ppc64le-tar-empty b/test/data/manifest-checksums/rhel_9.8-ppc64le-tar-empty new file mode 100644 index 0000000000..b67383b6c4 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.8-ppc64le-tar-empty @@ -0,0 +1 @@ +eaf3f066f94faeb21a7070d1b8bd491fd10bcf13 diff --git a/test/data/manifest-checksums/rhel_9.8-ppc64le-tar-jq_only b/test/data/manifest-checksums/rhel_9.8-ppc64le-tar-jq_only deleted file mode 100644 index f185a3a799..0000000000 --- a/test/data/manifest-checksums/rhel_9.8-ppc64le-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -a10696c26285910e27af5c35dec80442bebaba24 diff --git a/test/data/manifest-checksums/rhel_9.8-s390x-qcow2-empty b/test/data/manifest-checksums/rhel_9.8-s390x-qcow2-empty new file mode 100644 index 0000000000..0b47fab234 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.8-s390x-qcow2-empty @@ -0,0 +1 @@ +368b524e75f1497d58fdb07c05ed22f0aff68428 diff --git a/test/data/manifest-checksums/rhel_9.8-s390x-qcow2-jq_only b/test/data/manifest-checksums/rhel_9.8-s390x-qcow2-jq_only deleted file mode 100644 index ae2d0538d3..0000000000 --- a/test/data/manifest-checksums/rhel_9.8-s390x-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -8034ce699b23ba1a3788b1d38a552dc847682afa diff --git a/test/data/manifest-checksums/rhel_9.8-s390x-tar-empty b/test/data/manifest-checksums/rhel_9.8-s390x-tar-empty new file mode 100644 index 0000000000..997f9189fd --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.8-s390x-tar-empty @@ -0,0 +1 @@ +873a57450c27811a37ac4f9a714fe1b1901c80b5 diff --git a/test/data/manifest-checksums/rhel_9.8-s390x-tar-jq_only b/test/data/manifest-checksums/rhel_9.8-s390x-tar-jq_only deleted file mode 100644 index 5bf505d154..0000000000 --- a/test/data/manifest-checksums/rhel_9.8-s390x-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -535c91871f224bb805e67c16fb9481fe7898c0e7 diff --git a/test/data/manifest-checksums/rhel_9.8-x86_64-ami-all_customizations b/test/data/manifest-checksums/rhel_9.8-x86_64-ami-all_customizations index 26b98166c2..f995eda129 100644 --- a/test/data/manifest-checksums/rhel_9.8-x86_64-ami-all_customizations +++ b/test/data/manifest-checksums/rhel_9.8-x86_64-ami-all_customizations @@ -1 +1 @@ -37a90f16dac46884527e5760449549d1e70cada1 +8c827adfea4d70ce039718ef67ff941886fd2883 diff --git a/test/data/manifest-checksums/rhel_9.8-x86_64-ami-empty b/test/data/manifest-checksums/rhel_9.8-x86_64-ami-empty new file mode 100644 index 0000000000..e5b5e7c935 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.8-x86_64-ami-empty @@ -0,0 +1 @@ +2425158d9af7e5314fcb8aed70a20febb69cbd4c diff --git a/test/data/manifest-checksums/rhel_9.8-x86_64-ami-jq_only b/test/data/manifest-checksums/rhel_9.8-x86_64-ami-jq_only deleted file mode 100644 index db5f52cf9e..0000000000 --- a/test/data/manifest-checksums/rhel_9.8-x86_64-ami-jq_only +++ /dev/null @@ -1 +0,0 @@ -36e655c5a8af4cf44e7257f4bb9d7b21ad28dd7b diff --git a/test/data/manifest-checksums/rhel_9.8-x86_64-ami-partitioning_lvm b/test/data/manifest-checksums/rhel_9.8-x86_64-ami-partitioning_lvm index c89b9d2fa0..ccda1887a7 100644 --- a/test/data/manifest-checksums/rhel_9.8-x86_64-ami-partitioning_lvm +++ b/test/data/manifest-checksums/rhel_9.8-x86_64-ami-partitioning_lvm @@ -1 +1 @@ -925f1dce9a5b035f0ba9df7ff86529a53d6b6ddd +6765fcd1bfbeb00a9565a72968498e6ea4a40504 diff --git a/test/data/manifest-checksums/rhel_9.8-x86_64-ami-partitioning_plain b/test/data/manifest-checksums/rhel_9.8-x86_64-ami-partitioning_plain index d16657c26a..c51479f662 100644 --- a/test/data/manifest-checksums/rhel_9.8-x86_64-ami-partitioning_plain +++ b/test/data/manifest-checksums/rhel_9.8-x86_64-ami-partitioning_plain @@ -1 +1 @@ -f22d3075e9ae3456f78e85901519a67ed2060d6e +f138fbf3aa65267d20f0ff51c1c13609651696c8 diff --git a/test/data/manifest-checksums/rhel_9.8-x86_64-azure_cvm-empty b/test/data/manifest-checksums/rhel_9.8-x86_64-azure_cvm-empty new file mode 100644 index 0000000000..23f8cb5ea8 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.8-x86_64-azure_cvm-empty @@ -0,0 +1 @@ +b3f7e37023acadeed1cb55838380fb2e2df2a4e3 diff --git a/test/data/manifest-checksums/rhel_9.8-x86_64-azure_cvm-jq_only b/test/data/manifest-checksums/rhel_9.8-x86_64-azure_cvm-jq_only deleted file mode 100644 index 7b0daa2f67..0000000000 --- a/test/data/manifest-checksums/rhel_9.8-x86_64-azure_cvm-jq_only +++ /dev/null @@ -1 +0,0 @@ -e28f3a47078ad4aa4aa64b16272ee0fad5270952 diff --git a/test/data/manifest-checksums/rhel_9.8-x86_64-azure_rhui-empty b/test/data/manifest-checksums/rhel_9.8-x86_64-azure_rhui-empty new file mode 100644 index 0000000000..0eb317a4ed --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.8-x86_64-azure_rhui-empty @@ -0,0 +1 @@ +b50751026bbe8f058329f20eeb14556e066504bd diff --git a/test/data/manifest-checksums/rhel_9.8-x86_64-azure_rhui-jq_only b/test/data/manifest-checksums/rhel_9.8-x86_64-azure_rhui-jq_only deleted file mode 100644 index 809790a8a1..0000000000 --- a/test/data/manifest-checksums/rhel_9.8-x86_64-azure_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -24581f34a1d381374e002e52c4182410099474ff diff --git a/test/data/manifest-checksums/rhel_9.8-x86_64-azure_sap_rhui-empty b/test/data/manifest-checksums/rhel_9.8-x86_64-azure_sap_rhui-empty new file mode 100644 index 0000000000..bcc89ea7c9 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.8-x86_64-azure_sap_rhui-empty @@ -0,0 +1 @@ +1f37008cf1f1b54e0b22cc644fcb5a460b469f15 diff --git a/test/data/manifest-checksums/rhel_9.8-x86_64-azure_sap_rhui-jq_only b/test/data/manifest-checksums/rhel_9.8-x86_64-azure_sap_rhui-jq_only deleted file mode 100644 index 0c0720eaa7..0000000000 --- a/test/data/manifest-checksums/rhel_9.8-x86_64-azure_sap_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -8580c958d9cd3d5543b68e40c539c802ad3b5651 diff --git a/test/data/manifest-checksums/rhel_9.8-x86_64-azure_sapapps_rhui-empty b/test/data/manifest-checksums/rhel_9.8-x86_64-azure_sapapps_rhui-empty new file mode 100644 index 0000000000..06daa36485 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.8-x86_64-azure_sapapps_rhui-empty @@ -0,0 +1 @@ +8ec6fa596034e42cfd9317e96521eed34cc942e2 diff --git a/test/data/manifest-checksums/rhel_9.8-x86_64-azure_sapapps_rhui-jq_only b/test/data/manifest-checksums/rhel_9.8-x86_64-azure_sapapps_rhui-jq_only deleted file mode 100644 index 9ce1a19166..0000000000 --- a/test/data/manifest-checksums/rhel_9.8-x86_64-azure_sapapps_rhui-jq_only +++ /dev/null @@ -1 +0,0 @@ -04fbc77591939144e45a138ccc8e2b28811e4add diff --git a/test/data/manifest-checksums/rhel_9.8-x86_64-ec2-empty b/test/data/manifest-checksums/rhel_9.8-x86_64-ec2-empty new file mode 100644 index 0000000000..093c87ad85 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.8-x86_64-ec2-empty @@ -0,0 +1 @@ +d33c1fa2f3c3f85a8a6583eaa2f593017536f2bc diff --git a/test/data/manifest-checksums/rhel_9.8-x86_64-ec2-jq_only b/test/data/manifest-checksums/rhel_9.8-x86_64-ec2-jq_only deleted file mode 100644 index 941e56d274..0000000000 --- a/test/data/manifest-checksums/rhel_9.8-x86_64-ec2-jq_only +++ /dev/null @@ -1 +0,0 @@ -0a5ff40237faf5db9309b2b7c34c441debcf921f diff --git a/test/data/manifest-checksums/rhel_9.8-x86_64-ec2_ha-empty b/test/data/manifest-checksums/rhel_9.8-x86_64-ec2_ha-empty new file mode 100644 index 0000000000..d360c1b6e0 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.8-x86_64-ec2_ha-empty @@ -0,0 +1 @@ +742bcfa69739bd0494b8d5a65ab7b8fc310002c0 diff --git a/test/data/manifest-checksums/rhel_9.8-x86_64-ec2_ha-jq_only b/test/data/manifest-checksums/rhel_9.8-x86_64-ec2_ha-jq_only deleted file mode 100644 index b18cc95a2f..0000000000 --- a/test/data/manifest-checksums/rhel_9.8-x86_64-ec2_ha-jq_only +++ /dev/null @@ -1 +0,0 @@ -a37c59c522d6526f25d234c8f3e0bb2be94e8e93 diff --git a/test/data/manifest-checksums/rhel_9.8-x86_64-edge_container-empty b/test/data/manifest-checksums/rhel_9.8-x86_64-edge_container-empty new file mode 100644 index 0000000000..0622c1b46f --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.8-x86_64-edge_container-empty @@ -0,0 +1 @@ +0ada6caded48b94ab642fe16cfa964fdcb3366b7 diff --git a/test/data/manifest-checksums/rhel_9.8-x86_64-edge_container-jq_only b/test/data/manifest-checksums/rhel_9.8-x86_64-edge_container-jq_only deleted file mode 100644 index 35779b1222..0000000000 --- a/test/data/manifest-checksums/rhel_9.8-x86_64-edge_container-jq_only +++ /dev/null @@ -1 +0,0 @@ -10e1ef65df68d4dfecaf381dc80c159975159ea5 diff --git a/test/data/manifest-checksums/rhel_9.8-x86_64-gce-empty b/test/data/manifest-checksums/rhel_9.8-x86_64-gce-empty new file mode 100644 index 0000000000..6c0147cee9 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.8-x86_64-gce-empty @@ -0,0 +1 @@ +81b04c0eb160c4b3e3e596b7d2ad42c449055ffd diff --git a/test/data/manifest-checksums/rhel_9.8-x86_64-gce-jq_only b/test/data/manifest-checksums/rhel_9.8-x86_64-gce-jq_only deleted file mode 100644 index db1fd7505e..0000000000 --- a/test/data/manifest-checksums/rhel_9.8-x86_64-gce-jq_only +++ /dev/null @@ -1 +0,0 @@ -5e1a139094173f99b1e4ad25a4cddd99dcc9a648 diff --git a/test/data/manifest-checksums/rhel_9.8-x86_64-image_installer-empty b/test/data/manifest-checksums/rhel_9.8-x86_64-image_installer-empty new file mode 100644 index 0000000000..746f7ba42d --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.8-x86_64-image_installer-empty @@ -0,0 +1 @@ +9b98a5d41269238a4c2616f8156671412ea35d23 diff --git a/test/data/manifest-checksums/rhel_9.8-x86_64-image_installer-jq_only b/test/data/manifest-checksums/rhel_9.8-x86_64-image_installer-jq_only deleted file mode 100644 index af66e3caae..0000000000 --- a/test/data/manifest-checksums/rhel_9.8-x86_64-image_installer-jq_only +++ /dev/null @@ -1 +0,0 @@ -c08521d0b55e4c1c8ec212a48eb378c860896f5d diff --git a/test/data/manifest-checksums/rhel_9.8-x86_64-minimal_raw-empty b/test/data/manifest-checksums/rhel_9.8-x86_64-minimal_raw-empty new file mode 100644 index 0000000000..ee4dad6a31 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.8-x86_64-minimal_raw-empty @@ -0,0 +1 @@ +18f2773a5fb2d9a967774c309874418828042311 diff --git a/test/data/manifest-checksums/rhel_9.8-x86_64-minimal_raw-jq_only b/test/data/manifest-checksums/rhel_9.8-x86_64-minimal_raw-jq_only deleted file mode 100644 index 0261796c30..0000000000 --- a/test/data/manifest-checksums/rhel_9.8-x86_64-minimal_raw-jq_only +++ /dev/null @@ -1 +0,0 @@ -f0f67695a97aecd4a0e3adb0f36a79403fa65ba4 diff --git a/test/data/manifest-checksums/rhel_9.8-x86_64-oci-empty b/test/data/manifest-checksums/rhel_9.8-x86_64-oci-empty new file mode 100644 index 0000000000..f11b9aa53b --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.8-x86_64-oci-empty @@ -0,0 +1 @@ +5b73d18acdfd22def6c9f7f09d80a869699e4da7 diff --git a/test/data/manifest-checksums/rhel_9.8-x86_64-oci-jq_only b/test/data/manifest-checksums/rhel_9.8-x86_64-oci-jq_only deleted file mode 100644 index a89867bd58..0000000000 --- a/test/data/manifest-checksums/rhel_9.8-x86_64-oci-jq_only +++ /dev/null @@ -1 +0,0 @@ -f5674c3b5ca86d02c9ea8c8a5b01561190a34bcb diff --git a/test/data/manifest-checksums/rhel_9.8-x86_64-openstack-empty b/test/data/manifest-checksums/rhel_9.8-x86_64-openstack-empty new file mode 100644 index 0000000000..45924e5cfd --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.8-x86_64-openstack-empty @@ -0,0 +1 @@ +f0177c046076f891d340b443e27db444815115c5 diff --git a/test/data/manifest-checksums/rhel_9.8-x86_64-openstack-jq_only b/test/data/manifest-checksums/rhel_9.8-x86_64-openstack-jq_only deleted file mode 100644 index aabd1c8674..0000000000 --- a/test/data/manifest-checksums/rhel_9.8-x86_64-openstack-jq_only +++ /dev/null @@ -1 +0,0 @@ -437cec58d7fb1e03e002bc45dadf271b2c75c841 diff --git a/test/data/manifest-checksums/rhel_9.8-x86_64-ova-empty b/test/data/manifest-checksums/rhel_9.8-x86_64-ova-empty new file mode 100644 index 0000000000..d519567634 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.8-x86_64-ova-empty @@ -0,0 +1 @@ +7f912b1e9ef4d34a04f32569d036d06291636ea5 diff --git a/test/data/manifest-checksums/rhel_9.8-x86_64-ova-jq_only b/test/data/manifest-checksums/rhel_9.8-x86_64-ova-jq_only deleted file mode 100644 index c5de62647b..0000000000 --- a/test/data/manifest-checksums/rhel_9.8-x86_64-ova-jq_only +++ /dev/null @@ -1 +0,0 @@ -a8a4d8dec9721b573395633366909a665d39fa51 diff --git a/test/data/manifest-checksums/rhel_9.8-x86_64-pxe_tar_xz-empty b/test/data/manifest-checksums/rhel_9.8-x86_64-pxe_tar_xz-empty new file mode 100644 index 0000000000..cc20bef1fb --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.8-x86_64-pxe_tar_xz-empty @@ -0,0 +1 @@ +3dd72bcbd9acb4ae910b0e7e6de8b4d937f76872 diff --git a/test/data/manifest-checksums/rhel_9.8-x86_64-pxe_tar_xz-jq_only b/test/data/manifest-checksums/rhel_9.8-x86_64-pxe_tar_xz-jq_only deleted file mode 100644 index 7bf0a35f4b..0000000000 --- a/test/data/manifest-checksums/rhel_9.8-x86_64-pxe_tar_xz-jq_only +++ /dev/null @@ -1 +0,0 @@ -0fba41785cede8d4610c870cdd9b80051ca32002 diff --git a/test/data/manifest-checksums/rhel_9.8-x86_64-qcow2-empty b/test/data/manifest-checksums/rhel_9.8-x86_64-qcow2-empty new file mode 100644 index 0000000000..f11b9aa53b --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.8-x86_64-qcow2-empty @@ -0,0 +1 @@ +5b73d18acdfd22def6c9f7f09d80a869699e4da7 diff --git a/test/data/manifest-checksums/rhel_9.8-x86_64-qcow2-jq_only b/test/data/manifest-checksums/rhel_9.8-x86_64-qcow2-jq_only deleted file mode 100644 index a89867bd58..0000000000 --- a/test/data/manifest-checksums/rhel_9.8-x86_64-qcow2-jq_only +++ /dev/null @@ -1 +0,0 @@ -f5674c3b5ca86d02c9ea8c8a5b01561190a34bcb diff --git a/test/data/manifest-checksums/rhel_9.8-x86_64-tar-empty b/test/data/manifest-checksums/rhel_9.8-x86_64-tar-empty new file mode 100644 index 0000000000..bcbfbc5149 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.8-x86_64-tar-empty @@ -0,0 +1 @@ +6256d0cd8ce16cb29eb67fb22eb1b76388331c65 diff --git a/test/data/manifest-checksums/rhel_9.8-x86_64-tar-jq_only b/test/data/manifest-checksums/rhel_9.8-x86_64-tar-jq_only deleted file mode 100644 index 581b076c32..0000000000 --- a/test/data/manifest-checksums/rhel_9.8-x86_64-tar-jq_only +++ /dev/null @@ -1 +0,0 @@ -086e40da47e1ec1d545cbf4b9f414fcfb192d0c2 diff --git a/test/data/manifest-checksums/rhel_9.8-x86_64-vagrant_libvirt-empty b/test/data/manifest-checksums/rhel_9.8-x86_64-vagrant_libvirt-empty new file mode 100644 index 0000000000..526911f61a --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.8-x86_64-vagrant_libvirt-empty @@ -0,0 +1 @@ +e87ca30e791c099f451c51853885f6f8d2505635 diff --git a/test/data/manifest-checksums/rhel_9.8-x86_64-vagrant_libvirt-jq_only b/test/data/manifest-checksums/rhel_9.8-x86_64-vagrant_libvirt-jq_only deleted file mode 100644 index 1cbd2fbb3f..0000000000 --- a/test/data/manifest-checksums/rhel_9.8-x86_64-vagrant_libvirt-jq_only +++ /dev/null @@ -1 +0,0 @@ -29823337d8741981a4c53240aed7289786f6abc6 diff --git a/test/data/manifest-checksums/rhel_9.8-x86_64-vagrant_virtualbox-empty b/test/data/manifest-checksums/rhel_9.8-x86_64-vagrant_virtualbox-empty new file mode 100644 index 0000000000..2a8758e6e5 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.8-x86_64-vagrant_virtualbox-empty @@ -0,0 +1 @@ +39112b8ed1253e1e98925b34dbd2c5aa08e97f20 diff --git a/test/data/manifest-checksums/rhel_9.8-x86_64-vagrant_virtualbox-jq_only b/test/data/manifest-checksums/rhel_9.8-x86_64-vagrant_virtualbox-jq_only deleted file mode 100644 index 9f2d06843b..0000000000 --- a/test/data/manifest-checksums/rhel_9.8-x86_64-vagrant_virtualbox-jq_only +++ /dev/null @@ -1 +0,0 @@ -37d6e328c1476d882ce590f50b14eea9b49716f0 diff --git a/test/data/manifest-checksums/rhel_9.8-x86_64-vhd-empty b/test/data/manifest-checksums/rhel_9.8-x86_64-vhd-empty new file mode 100644 index 0000000000..2e88c49524 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.8-x86_64-vhd-empty @@ -0,0 +1 @@ +7d1f90c0452cb64db25991ec927de71a3a2bf2ff diff --git a/test/data/manifest-checksums/rhel_9.8-x86_64-vhd-jq_only b/test/data/manifest-checksums/rhel_9.8-x86_64-vhd-jq_only deleted file mode 100644 index 843413b4a5..0000000000 --- a/test/data/manifest-checksums/rhel_9.8-x86_64-vhd-jq_only +++ /dev/null @@ -1 +0,0 @@ -b754cd1ad00f37c79c4ddf3b7bcc16bae8740bd7 diff --git a/test/data/manifest-checksums/rhel_9.8-x86_64-vmdk-empty b/test/data/manifest-checksums/rhel_9.8-x86_64-vmdk-empty new file mode 100644 index 0000000000..4a3c8ceb70 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.8-x86_64-vmdk-empty @@ -0,0 +1 @@ +0e0675105c4e7ad26de35527768a68a85ce0f44e diff --git a/test/data/manifest-checksums/rhel_9.8-x86_64-vmdk-jq_only b/test/data/manifest-checksums/rhel_9.8-x86_64-vmdk-jq_only deleted file mode 100644 index 4f059e98b1..0000000000 --- a/test/data/manifest-checksums/rhel_9.8-x86_64-vmdk-jq_only +++ /dev/null @@ -1 +0,0 @@ -a13008904b46148b273e2734f6d5268462990171 diff --git a/test/data/manifest-checksums/rhel_9.8-x86_64-wsl-empty b/test/data/manifest-checksums/rhel_9.8-x86_64-wsl-empty new file mode 100644 index 0000000000..54a0990e50 --- /dev/null +++ b/test/data/manifest-checksums/rhel_9.8-x86_64-wsl-empty @@ -0,0 +1 @@ +2f0a31e8d981c10d64d1bbaef000e8a294db4077 diff --git a/test/data/manifest-checksums/rhel_9.8-x86_64-wsl-jq_only b/test/data/manifest-checksums/rhel_9.8-x86_64-wsl-jq_only deleted file mode 100644 index 661fbf4e75..0000000000 --- a/test/data/manifest-checksums/rhel_9.8-x86_64-wsl-jq_only +++ /dev/null @@ -1 +0,0 @@ -e93c12c953fce4d4715f312e74ec6a3c6b6e9819 diff --git a/test/scripts/boot-image b/test/scripts/boot-image index fb4854719d..51b2400b24 100755 --- a/test/scripts/boot-image +++ b/test/scripts/boot-image @@ -1,4 +1,5 @@ #!/usr/bin/env python3 +# pylint: disable=line-too-long,too-many-arguments,too-many-positional-arguments import argparse import contextlib import json @@ -18,7 +19,8 @@ import imgtestlib as testlib from vmtest.util import get_free_port from vmtest.vm import QEMU -BASE_TEST_SCRIPT = "test/scripts/check-host-config.sh" + +BASE_TEST_EXEC = "check-host-config-" # + arch WSL_TEST_SCRIPT = "test/scripts/wsl-entrypoint.bat" @@ -127,6 +129,41 @@ def make_cloud_init_iso(pubkey_path) -> pathlib.Path: yield iso_path +def arch_to_goarch(arch): + """ + Convert architecture string to GOARCH format. + """ + mapping = { + "x86_64": "amd64", + "aarch64": "arm64", + } + goarch = mapping.get(arch.lower()) + if goarch is None: + return arch + return goarch + + +def make_check_host_config(arch): + goarch = arch_to_goarch(arch) + # build without CGO so no dependencies are needed + cmd = ["go", "build", "-o", "check-host-config-" + arch, + "./cmd/check-host-config"] + tags = [ + "containers_image_openpgp", + "exclude_graphdriver_btrfs", + "exclude_graphdriver_devicemapper", + "exclude_graphdriver_overlay", + ] + testlib.runcmd_nc( + cmd, + extra_env={ + "GOARCH": goarch, + "CGO_ENABLED": "0", + "GOFLAGS": "-tags=" + ",".join(tags), + }, + ) + + class CannotRunQemuTest(Exception): def __init__(self, skip_reason): super().__init__(skip_reason) @@ -152,7 +189,8 @@ def qemu_cmd_scp_and_run(vm, cmd, privkey_path): def boot_qemu(arch, image_path, config_file, keep_booted=False): - cmd = [BASE_TEST_SCRIPT, config_file] + cmd = [BASE_TEST_EXEC+arch, config_file] + make_check_host_config(arch) with contextlib.ExitStack() as cm: uncompressed_image_path = cm.enter_context(ensure_uncompressed(image_path)) (privkey_path, pubkey_path) = cm.enter_context(create_ssh_key()) @@ -245,7 +283,8 @@ def boot_qemu_iso(arch, installer_iso_path, config_file): def _boot_qemu_iso(arch, installer_iso_path, config_file, privkey_path): - cmd = [BASE_TEST_SCRIPT, config_file] + cmd = [BASE_TEST_EXEC+arch, config_file] + make_check_host_config(arch) # we should pass console=ttyS0 to instaler os that we see install # progress on the serial console, in the meantime for interactive use # one cans set the OSBUILD_TEST_QEMU_GUI=1 environment @@ -336,7 +375,6 @@ def boot_qemu_pxe(arch, pxe_tar_path): def cmd_boot_aws(arch, image_name, privkey, pubkey, image_path, script_cmd): - # pylint: disable=too-many-arguments,too-many-positional-arguments aws_config = get_aws_config() cmd = ["go", "run", "./cmd/boot-aws", "run", "--access-key-id", aws_config["key_id"], @@ -354,14 +392,15 @@ def cmd_boot_aws(arch, image_name, privkey, pubkey, image_path, script_cmd): def boot_ami(distro, arch, image_type, image_path, config): - cmd = [BASE_TEST_SCRIPT, config] + cmd = [BASE_TEST_EXEC+arch, config] + make_check_host_config(arch) with ensure_uncompressed(image_path) as raw_image_path: with create_ssh_key() as (privkey, pubkey): image_name = f"image-boot-test-{distro}-{arch}-{image_type}-" + str(uuid.uuid4()) cmd_boot_aws(arch, image_name, privkey, pubkey, raw_image_path, cmd) -def boot_container(distro, arch, image_type, image_path, manifest_id): +def boot_container(distro, arch, image_type, image_path, manifest_id, host_config): """ Use bootc-image-builder to build an AMI and boot it. """ @@ -417,17 +456,17 @@ def boot_container(distro, arch, image_type, image_path, manifest_id): # Build artifacts are owned by root. Make them world accessible. testlib.runcmd(["sudo", "chmod", "a+rwX", "-R", tmpdir]) raw_image_path = f"{tmpdir}/image/disk.raw" - cmd_boot_aws(arch, image_name, privkey_file, pubkey_file, raw_image_path, [BASE_TEST_SCRIPT]) + cmd_boot_aws(arch, image_name, privkey_file, pubkey_file, raw_image_path, [BASE_TEST_EXEC+arch, host_config]) def boot_vhd(distro, arch, image_path, config): - cmd = [BASE_TEST_SCRIPT, config] + cmd = [BASE_TEST_EXEC+arch, config] + make_check_host_config(arch) with ensure_uncompressed(image_path) as raw_image_path: with create_ssh_key(key_type="rsa") as (privkey, pubkey): # a lot of resources have <=64 character naming constraint name = f"{distro}-" + str(uuid.uuid4()) - # pylint: disable=too-many-arguments,too-many-positional-arguments az_config = get_azure_config() cmd = ["go", "run", "./cmd/boot-azure", "run", "--subscription", az_config["subscription"], @@ -447,8 +486,8 @@ def boot_vhd(distro, arch, image_path, config): def boot_wsl(distro, arch, image_path, config): with ensure_uncompressed(image_path) as raw_image_path: - cmd = [WSL_TEST_SCRIPT, raw_image_path, BASE_TEST_SCRIPT, config] - # pylint: disable=too-many-arguments,too-many-positional-arguments + cmd = [WSL_TEST_SCRIPT, raw_image_path, BASE_TEST_EXEC+arch, config] + make_check_host_config(arch) az_config = get_azure_config() with create_ssh_key(privkey_file = az_config["windows_ssh_privkey"]) as (privkey, pubkey): # a lot of resources have <=64 character naming constraint @@ -515,7 +554,7 @@ def main(): boot_vhd(distro, arch, image_path, build_config_path) case "iot-bootable-container": manifest_id = build_info["manifest-checksum"] - boot_container(distro, arch, image_type, image_path, manifest_id) + boot_container(distro, arch, image_type, image_path, manifest_id, build_config_path) bib_ref = testlib.get_bib_ref() bib_image_id = testlib.skopeo_inspect_id(f"docker://{bib_ref}", testlib.host_container_arch()) case "wsl" | "generic-wsl": diff --git a/test/scripts/check-host-config.sh b/test/scripts/check-host-config.sh deleted file mode 100755 index d7fcd47826..0000000000 --- a/test/scripts/check-host-config.sh +++ /dev/null @@ -1,396 +0,0 @@ -#!/usr/bin/env bash -# vim: sw=4:et -set -euxo pipefail - -running_wait() { - # simple implementation of 'systemctl is-system-running --wait' for older - # versions of systemd that don't support the option (EL8) - # - # From SYSTEMCTL(1) - # If --wait is in use, states initializing or starting will not be - # reported, instead the command will block until a later state (such as - # running or degraded) is reached. - while true; do - state=$(systemctl is-system-running) - echo "${state}" - - # keep iterating on initializing and starting - case "${state}" in - "initializing" | "starting") - sleep 3 - continue - ;; - - # the only good state - "running") - return 0 - ;; - - # fail on anything else - *) - return 1 - esac - done -} - -get_oscap_score() { - config_file="$1" - baseline_score=0.8 - echo "🔒 Running oscap scanner" - # NOTE: sudo works here without password because we test this only on images - # initialised with cloud-init, which sets sudo NOPASSWD for the user - profile=$(jq -r .blueprint.customizations.openscap.profile_id "${config_file}") - datastream=$(jq -r .blueprint.customizations.openscap.datastream "${config_file}") - if [ "$datastream" = "null" ]; then - # we could do a datastream=$(find /usr/share/xml/scap/ssg/content -name "*.xml") here - # but for that we would have to build a lookup to match e.g. /etc/os-release centos-9 - # to cs9 and similar for rhel, fedora etc - echo "SKIPPING oscap score as there is no datastream defined" - return - fi - sudo oscap xccdf eval \ - --results results.xml \ - --profile "${profile}_osbuild_tailoring" \ - --tailoring-file "/oscap_data/tailoring.xml" \ - "${datastream}" || true # oscap returns exit code 2 for any failed rules - - echo "📄 Saving results" - sudo chown "$UID" results.xml - - echo "📗 Checking oscap score" - hardened_score=$(xmlstarlet sel -N x="http://checklists.nist.gov/xccdf/1.2" -t -v "//x:score" results.xml) - echo "Hardened score: ${hardened_score}%" - - echo "📗 Checking for failed rules" - high_severity=$(xmlstarlet sel -N x="http://checklists.nist.gov/xccdf/1.2" -t -v "//x:rule-result[@severity='high']" results.xml) - severity_count=$(echo "${high_severity}" | grep -c "fail" || true) - echo "Severity count: ${severity_count}" - - echo "🎏 Checking for test result" - echo "Baseline score: ${baseline_score}%" - echo "Hardened score: ${hardened_score}%" - - # compare floating point numbers - if (( hardened_score < baseline_score )); then - echo "❌ Failed" - echo "Hardened image score (${hardened_score}) did not improve baseline score (${baseline_score})" - exit 1 - fi - - if (( severity_count > 0 )); then - echo "❌ Failed" - echo "One or more oscap rules with high severity failed" - # add a line to print the failed rules - echo "${high_severity}" | grep -B 5 "fail" - exit 1 - fi -} - -check_ca_cert() { - serial=$(jq -r '.blueprint.customizations.cacerts.pem_certs[0]' "${config}" | openssl x509 -noout -serial | cut -d= -f 2- | tr '[:upper:]' '[:lower:]') - cn=$(jq -r '.blueprint.customizations.cacerts.pem_certs[0]' "${config}" | openssl x509 -noout -subject | sed -E 's/.*CN ?= ?//') - - echo "📗 Checking CA cert anchor file serial '${serial}'" - if ! [ -e "/etc/pki/ca-trust/source/anchors/${serial}.pem" ]; then - echo "Anchor CA file does not exist, directory contents:" - find /etc/pki/ca-trust/source/anchors - exit 1 - fi - - echo "📗 Checking extracted CA cert file named '${cn}'" - if ! grep -q "${cn}" /etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem; then - echo "Extracted CA cert not found in the bundle, tls-ca-bundle.pem contents:" - grep '^#' /etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem - exit 1 - fi -} - -check_modularity() { - echo "📗 Checking enabled modules" - - # Verify modules that are enabled on a system, if any. Modules can either be enabled separately - # or they can be installed through packages directly. We test both cases here. - # - # Caveat is that when a module is enabled yet _no_ packages are installed from it this breaks. - # Let's not do that in the test? - - modules_expected_0=$(jq -rc '.blueprint.enabled_modules[]? | .name + ":" + .stream' "${config}") - modules_expected_1=$(jq -rc '.blueprint.packages[]? | select(.name | startswith("@") and contains(":")) | .name' "${config}" | cut -c2-) - - modules_expected="${modules_expected_0}\n${modules_expected_1}" - modules_enabled=$(dnf module list --enabled 2>&1 | tail -n+4 | head -n -2 | tr -s ' ' | cut -d' ' -f1,2 | tr ' ' ':') - - # Go over the expected modules and check if each of them is installed - echo "$modules_expected" | while read -r module_expected; do - echo "📗 Module expected: ${module_expected}" - if [[ $module_expected != *$modules_enabled* ]]; then - echo "❌ Module was not enabled: ${module_expected}" - exit 1 - else - echo "Module was enabled" - fi - done -} - -check_hostname() { - echo "📗 Checking hostname" - - # Verify that the hostname is set by running `hostname` - expected_hostname=$(jq -r '.blueprint.customizations.hostname' "${config}") - actual_hostname=$(hostname) - - # we only emit a warning here since the hostname gets reset by cloud-init and we're not - # entirely sure how to deal with it yet on the service level - if [[ $actual_hostname != "${expected_hostname}" ]]; then - echo "🟡 Hostname was not set: hostname=${actual_hostname} expected=${expected_hostname}" - else - echo "Hostname was set" - fi -} - -# Note that this test only checks for the existance of the filesystem -# customizatons target path not the content. For the simple case when -# "data" is provided we could check but for the "uri" case we do not -# know the content as the file usually comes from the host. The -# existing testing framework makes the content check difficult, so we -# settle for this for now. There is an alternative approach in -# https://github.com/osbuild/images/pull/1157/commits/7784f3dc6b435fa03951263e48ea7cfca84c2ebd -# that may eventually be considered that is more direct and runs -# runs locally but different from the existing paradigm so it -# needs further discussion. -check_files_customizations() { - echo "📗 Checking files customization (basic check only)" - - expected_paths=$(jq -r '.blueprint.customizations.files | .[] | .path' "${config}") - - for path in $expected_paths; do - if [ ! -e "$path" ]; then - echo "❌ Expected path from filesystem customization is not there: $path" - exit 1 - fi - done -} - -check_services_enabled() { - echo "📗 Checking enabled services" - - services_expected=$(jq -rc '.blueprint.customizations.services.enabled[]' "${config}") - - echo "$services_expected" | while read -r service_expected; do - state=$(systemctl is-enabled "${service_expected}") - if [[ "${state}" == "enabled" ]]; then - echo "Service was enabled service=${service_expected} state=${state}" - else - echo "❌ Service was not enabled service=${service_expected} state=${state}" - exit 1 - fi - done -} - -check_services_disabled() { - echo "📗 Checking disabled services" - - services_expected=$(jq -rc '.blueprint.customizations.services.disabled[]' "${config}") - - echo "$services_expected" | while read -r service_expected; do - state=$(systemctl is-enabled "${service_expected}" || true) - if [[ "${state}" == "disabled" ]]; then - echo "Service was disabled service=${service_expected} state=${state}" - else - echo "❌ Service was not disabled service=${service_expected} state=${state}" - exit 1 - fi - done -} - -check_services_masked() { - echo "📗 Checking masked services" - - services_expected=$(jq -rc '.blueprint.customizations.services.masked[]' "${config}") - - echo "$services_expected" | while read -r service_expected; do - states=$(systemctl list-unit-files --state=masked) - if echo "${states}" | grep -q "${service_expected}"; then - echo "Service was masked service=${service_expected}" - else - echo "❌ Service was not masked service=${service_expected} output=${states}" - exit 1 - fi - done -} - -check_firewall_services_enabled() { - echo "📗 Checking enabled firewall services" - - services_expected=$(jq -rc '.blueprint.customizations.firewall.services.enabled[]' "${config}") - - echo "$services_expected" | while read -r service_expected; do - # NOTE: sudo works here without password because we test this only on ami - # initialised with cloud-init, which sets sudo NOPASSWD for the user - state=$(sudo firewall-cmd --query-service="${service_expected}") - if [[ "${state}" == "yes" ]]; then - echo "Firewall service was enabled service=${service_expected} state=${state}" - else - echo "❌ Firewall service was not enabled service=${service_expected} state=${state}" - exit 1 - fi - done -} - -check_firewall_ports() { - echo "📗 Checking enabled firewall ports" - - ports_expected=$(jq -rc '.blueprint.customizations.firewall.ports[]' "${config}") - - echo "$ports_expected" | while read -r port_expected; do - # NOTE: sudo works here without password because we test this only on ami - # initialised with cloud-init, which sets sudo NOPASSWD for the user - # firewall-cmd --query-port uses / as the port/protocol separator, but - # in the blueprint we use :. - port_expected="${port_expected//:/\/}" - state=$(sudo firewall-cmd --query-port="${port_expected}") - if [[ "${state}" == "yes" ]]; then - echo "Firewall port was enabled port=${port_expected} state=${state}" - else - echo "❌ Firewall port was not enabled port=${port_expected} state=${state}" - exit 1 - fi - done -} - - -check_firewall_services_disabled() { - echo "📗 Checking disabled firewall services" - - services_expected=$(jq -rc '.blueprint.customizations.firewall.services.disabled[]' "${config}") - - echo "$services_expected" | while read -r service_expected; do - # NOTE: sudo works here without password because we test this only on ami - # initialised with cloud-init, which sets sudo NOPASSWD for the user - state=$(sudo firewall-cmd --query-service="${service_expected}" || true) - if [[ "${state}" == "no" ]]; then - echo "Firewall service was disabled service=${service_expected} state=${state}" - else - echo "❌ Firewall service was not disabled service=${service_expected} state=${state}" - exit 1 - fi - done -} - -check_users() { - echo "📗 Checking users" - - users_expected=$(jq -rc '.blueprint.customizations.user[]' "$config") - - echo "$users_expected" | while read -r user_expected; do - username=$(echo "$user_expected" | jq -rc .name) - if ! id "$username"; then - echo "❌ User did not exist: username=${username}" - exit 1 - else - echo "User ${username} exists" - fi - done -} - -echo "❓ Checking system status" -if ! running_wait; then - - echo "❌ Listing units" - # system is not fully operational - # (try to) list units so we can troubleshoot any failures - systemctl --no-pager list-units - - echo "❌ Status for all failed units" - # the default 10 lines might be a bit too short for troubleshooting some - # units, 100 should be more than enough - systemctl --no-pager status --failed --full --lines=100 - - # exit with failure; we don't care about the exact exit code from the - # failed condition - exit 1 -fi - -echo "đŸ“Ļ Listing packages" -rpm -qa - -echo "â„šī¸ os-release" -cat /etc/os-release - -echo "â„šī¸ system information" -uname -a - -echo "đŸ•°ī¸ uptime" -uptime - - -# RHEL 7 does not include iq, so we skip it unconditionally -source /etc/os-release -if [[ "$ID" == "rhel" && "$VERSION_ID" == "7.9" ]]; then - echo "RHEL 7.9 host: skipping checks" - exit 0 -fi - -# NOTE: we should do a lot more here -if (( $# > 0 )); then - - if ! command -v jq; then - echo "jq not installed. Exiting" - exit 1 - fi - - config="$1" - - if [[ ! -e "${config}" ]]; then - echo "Error: config file does not exist" - exit 1 - fi - - if jq -e .blueprint.customizations.openscap "${config}"; then - get_oscap_score "${config}" - fi - - if jq -e '.blueprint.customizations.cacerts.pem_certs[0]' "${config}"; then - check_ca_cert "${config}" - fi - - if jq -e '.blueprint.enabled_modules' "${config}" || jq -e '.blueprint.packages[] | select(.name | startswith("@") and contains(":")) | .name' "${config}"; then - check_modularity "${config}" - fi - - if jq -e '.blueprint.customizations.user' "${config}"; then - check_users "${config}" - fi - - if jq -e '.blueprint.customizations.services.enabled' "${config}"; then - check_services_enabled "${config}" - fi - - if jq -e '.blueprint.customizations.services.disabled' "${config}"; then - check_services_disabled "${config}" - fi - - if jq -e '.blueprint.customizations.services.masked' "${config}"; then - check_services_masked "${config}" - fi - - if jq -e '.blueprint.customizations.firewall.services.enabled' "${config}"; then - check_firewall_services_enabled "${config}" - fi - - if jq -e '.blueprint.customizations.firewall.services.disabled' "${config}"; then - check_firewall_services_disabled "${config}" - fi - - if jq -e '.blueprint.customizations.firewall.ports' "${config}"; then - check_firewall_ports "${config}" - fi - - if jq -e '.blueprint.customizations.hostname' "${config}"; then - check_hostname "${config}" - fi - - if jq -e '.blueprint.customizations.files' "${config}"; then - check_files_customizations "${config}" - fi -fi