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

@ -21,7 +21,7 @@ func NewTestServer() *testRepoServer {
Name: "cs9-baseos",
BaseURLs: []string{server.URL},
CheckGPG: common.ToPtr(false),
IgnoreSSL: true,
IgnoreSSL: common.ToPtr(true),
RHSM: false,
}
return &testRepoServer{Server: server, RepoConfig: testrepo}