Skip to content

Commit

Permalink
SSL: do not attempt to use the proxy exclusively over IPv6 (#4034)
Browse files Browse the repository at this point in the history
  • Loading branch information
redbluegreenhat authored Oct 15, 2024
1 parent 9030b4b commit a333cd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/ssl/files/ssl-certificate.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def generate_letsencrypt_certificate(self):
if not self.quiet:
print('Pushing LetsEncrypt SSL certificate to GitHub')

os.system('git config --global core.sshCommand "ssh -i /var/lib/nagios/id_ed25519 -F /dev/null -o ProxyCommand=\'nc -6 -X connect -x bastion.wikitide.net:8080 %h %p\'"')
os.system('git config --global core.sshCommand "ssh -i /var/lib/nagios/id_ed25519 -F /dev/null -o ProxyCommand=\'nc -X connect -x bastion.wikitide.net:8080 %h %p\'"')
os.system('git -C /srv/ssl/ssl/ config user.name "WikiTideSSLBot"')
os.system('git -C /srv/ssl/ssl/ config user.email "[email protected]"')
os.system('git -C /srv/ssl/ssl/ reset --hard origin/master')
Expand Down

0 comments on commit a333cd7

Please sign in to comment.