mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-02 16:53:11 +00:00
Prevent SVN checkouts from failing due self signed certs.
This commit is contained in:
@@ -79,7 +79,7 @@ class Subversion(object):
|
||||
self.password = password
|
||||
|
||||
def _exec(self, args):
|
||||
bits = ["svn --non-interactive --no-auth-cache", ]
|
||||
bits = ["svn --non-interactive --trust-server-cert --no-auth-cache", ]
|
||||
if self.username:
|
||||
bits.append("--username '%s'" % self.username)
|
||||
if self.password:
|
||||
|
||||
Reference in New Issue
Block a user