Skip to content

Commit

Permalink
Revert "Pass ssl certificate options to anaconda"
Browse files Browse the repository at this point in the history
This reverts commit 8814231.

Fedora 29 version of pykickstart doesn't support this.
  • Loading branch information
bcl committed May 9, 2019
1 parent 46e5c37 commit 89c590d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
2 changes: 1 addition & 1 deletion lorax.spec
Expand Up @@ -46,7 +46,7 @@ Requires: kpartx
# Python modules
Requires: libselinux-python3
Requires: python3-mako
Requires: python3-kickstart >= 3.19
Requires: python3-kickstart
Requires: python3-dnf >= 3.2.0
Requires: python3-librepo

Expand Down
7 changes: 0 additions & 7 deletions src/pylorax/api/compose.py
Expand Up @@ -115,13 +115,6 @@ def repo_to_ks(r, url="url"):
if not r.sslverify:
cmd += '--noverifyssl'

if r.sslcacert:
cmd += ' --sslcacert="%s"' % r.sslcacert
if r.sslclientcert:
cmd += ' --sslclientcert="%s"' % r.sslclientcert
if r.sslclientkey:
cmd += ' --sslclientkey="%s"' % r.sslclientkey

return cmd


Expand Down

0 comments on commit 89c590d

Please sign in to comment.