Skip Menu |

This queue is for tickets about the App-perlbrew CPAN distribution.

Report information
The Basics
Id: 92380
Status: open
Worked: 30 min
Priority: 0/
Queue: App-perlbrew

People
Owner: Nobody in particular
Requestors: NHORNE [...] cpan.org
Cc: gortan [...] cpan.org
AdminCc:

Bug Information
Severity: Important
Broken in: (no value)
Fixed in: (no value)



Subject: Fails to install on Solaris - certificate error
$ wget -O - http://install.perlbrew.pl | bash --2014-01-22 15:21:54-- http://install.perlbrew.pl/ Resolving install.perlbrew.pl... 217.70.184.38 Connecting to install.perlbrew.pl|217.70.184.38|:80... connected. HTTP request sent, awaiting response... 302 Moved Temporarily Location: https://raw.github.com/gugod/App-perlbrew/master/perlbrew-install [following] --2014-01-22 15:21:55-- https://raw.github.com/gugod/App-perlbrew/master/perlbrew-install Resolving raw.github.com... 199.27.76.133 Connecting to raw.github.com|199.27.76.133|:443... connected. ERROR: cannot verify raw.github.com's certificate, issued by `/C=US/O=DigiCert Inc/OU=www.digicert.com/CN=DigiCert High Assurance CA-3': Unable to locally verify the issuer's authority. To connect to raw.github.com insecurely, use `--no-check-certificate'. $
I forgot to add that using this option made no change. Show quoted text
> To connect to raw.github.com insecurely, use `--no-check-certificate'.
On Wed Jan 22 15:24:36 2014, NHORNE wrote: Show quoted text
> I forgot to add that using this option made no change.
I ran into the same issue on HP-UX. I think the error does not come from the wget command _you_ specify - try to call the wget without the "| bash", and I expect that you see the received shell script. The issue is that the downloaded shell script itself then contains calls to curl/wget without specifying -k/--no-chekc-certificate. You might try this: $ wget --no-check-certificate -O- http://install.perlbrew.pl > install-perlbrew.sh $ vim install-perlbrew.sh (add -k to the curl call, --no-check-certificate to the wget call) $ bash install-perlbrew.sh You'll run into #92379 then, though :(
On Wed Feb 12 16:15:04 2014, GORTAN wrote: $ curl -kL https://raw.github.com/mephinet/App-perlbrew/develop/perlbrew-install | bash Could you try this and let me know if is solves your issue?
On Wed Feb 12 16:32:32 2014, GORTAN wrote: Show quoted text
> On Wed Feb 12 16:15:04 2014, GORTAN wrote: > > $ curl -kL https://raw.github.com/mephinet/App- > perlbrew/develop/perlbrew-install | bash > > Could you try this and let me know if is solves your issue?
Yes, that's much better, thanks.