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:
parent
173de3eba4
commit
ce299dfa0e
13 changed files with 89 additions and 82 deletions
|
|
@ -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}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue