internal/rpmmd: change ignoressl to pointer

Change the `IgnoreSSL` field in `rpmmd.RepoConfig`
to a pointer. This will be later used to configure
the `SSLVerify` field in the yum repo stage.
This commit is contained in:
Gianluca Zuccarelli 2023-05-02 17:37:48 +01:00 committed by Achilleas Koutsou
parent 173de3eba4
commit ce299dfa0e
13 changed files with 89 additions and 82 deletions

View file

@ -209,7 +209,7 @@ func convertRepo(r repository) rpmmd.RepoConfig {
GPGKeys: keys,
CheckGPG: &r.CheckGPG,
CheckRepoGPG: &r.CheckRepoGPG,
IgnoreSSL: r.IgnoreSSL,
IgnoreSSL: &r.IgnoreSSL,
MetadataExpire: r.MetadataExpire,
RHSM: r.RHSM,
ImageTypeTags: r.ImageTypeTags,