Revert "Pass ssl certificate options to anaconda"

This reverts commit 8814231a09.

Fedora 29 version of pykickstart doesn't support this.
This commit is contained in:
Brian C. Lane 2019-05-09 13:18:36 -07:00
parent 46e5c3717f
commit 89c590dc13
2 changed files with 1 additions and 8 deletions

View File

@ -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

View File

@ -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