Skip to content

Instantly share code, notes, and snippets.

@yradunchev
Created February 24, 2013 17:02
Show Gist options
  • Save yradunchev/5024577 to your computer and use it in GitHub Desktop.
Save yradunchev/5024577 to your computer and use it in GitHub Desktop.
Workaround for curl error "60" when activating SLES over YaST2 control center... "Execute curl command failed with '60': curl: (60) SSL certificate problem, verify that the CA cert is OK"
# mv /usr/bin/curl /usr/bin/curl.bin
# cat > /usr/bin/curl
#!/bin/bash
curl.bin -k $*
[CTRL+D]
# chmod 755 /usr/bin/curl
Fire YaST2, activate SLES, then:
# mv /usr/bin/curl.bin /usr/bin/curl
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment