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:~$