Skip Menu |

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

Report information
The Basics
Id: 69367
Status: resolved
Priority: 0/
Queue: App-perlbrew

People
Owner: Nobody in particular
Requestors: njh [...] bandsman.co.uk
Cc:
AdminCc:

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



Subject: Fails to install on Solaris
curl -L http://xrl.us/perlbrewinstall gives: curl: (77) error setting certificate verify locations: CAfile: /etc/ssl/certs/ca-certificates.crt CApath: none
On Fri Jul 08 12:44:59 2011, njh@bandsman.co.uk wrote: Show quoted text
> curl -L http://xrl.us/perlbrewinstall gives: > > > curl: (77) error setting certificate verify locations: > CAfile: /etc/ssl/certs/ca-certificates.crt > CApath: none
I am not a Solaris user so errors like this needs help. Can you try "curl -k -L http://xrl.us/perlbrewinstall" ?
From: njh [...] bandsman.co.uk
On Sat Jul 09 00:15:02 2011, GUGOD wrote: Show quoted text
> On Fri Jul 08 12:44:59 2011, njh@bandsman.co.uk wrote:
> > curl -L http://xrl.us/perlbrewinstall gives: > > > > > > curl: (77) error setting certificate verify locations: > > CAfile: /etc/ssl/certs/ca-certificates.crt > > CApath: none
> > > I am not a Solaris user so errors like this needs help. > > Can you try "curl -k -L http://xrl.us/perlbrewinstall" ?\\
That seemed to fix it, thanks: njh@nexenta-i386-qemu:~$ curl -k -L http://xrl.us/perlbrewinstall #!/usr/bin/env bash cd /tmp echo echo "## Download the latest perlbrew" curl -Lo perlbrew https://raw.github.com/gugod/App-perlbrew/master/perlbrew >/dev/null 2>&1 echo "## Download the packed patchperl" curl -Lo patchperl https://raw.github.com/gist/962406/5aa30dd2ec33cd9cea42ed2125154dcc1406edbc Show quoted text
>/dev/null 2>&1
echo echo "## Installing perlbrew" chmod +x perlbrew ./perlbrew install echo "## Installing patchperl" if [ "X${PERLBREW_ROOT}" == "X" ]; then PERLBREW_ROOT="${HOME}/perl5/perlbrew" fi mkdir -p "$PERLBREW_ROOT" chmod +x patchperl cp patchperl "${PERLBREW_ROOT}/bin" echo echo "## Done." rm ./perlbrew rm ./patchperl njh@nexenta-i386-qemu:~$ curl -L http://xrl.us/perlbrewinstall curl: (77) error setting certificate verify locations: CAfile: /etc/ssl/certs/ca-certificates.crt CApath: none njh@nexenta-i386-qemu:~$
On Mon Jul 11 09:24:26 2011, njh@bandsman.co.uk wrote: Show quoted text
> On Sat Jul 09 00:15:02 2011, GUGOD wrote:
> > On Fri Jul 08 12:44:59 2011, njh@bandsman.co.uk wrote:
> > > curl -L http://xrl.us/perlbrewinstall gives: > > > > > > > > > curl: (77) error setting certificate verify locations: > > > CAfile: /etc/ssl/certs/ca-certificates.crt > > > CApath: none
> > > > > > I am not a Solaris user so errors like this needs help. > > > > Can you try "curl -k -L http://xrl.us/perlbrewinstall" ?\\
> > That seemed to fix it, thanks: >
I see. I'll start reviewing the code and doc to add -k here and there. I believe this has something to do with default curl setting on different OS. Thanks for the report :)