Skip Menu |

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

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

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

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



Subject: Unable to access perlbrew URL
Following the instructions on the perlbrew page at search.cpan.org, I attempted to get perlbrew by saying: $ curl -kL http://install.perlbrew.pl | bash The response (and same without the -k option): curl: (7) couldn't connect to host Next I tried: $ ping http://install.perlbrew.pl ping: cannot resolve http://install.perlbrew.pl: Unknown host
On Mon May 27 19:46:28 2013, JKEENAN wrote: Show quoted text
> Following the instructions on the perlbrew page at search.cpan.org, I > attempted to get perlbrew by saying: > > $ curl -kL http://install.perlbrew.pl | bash > > The response (and same without the -k option): > > curl: (7) couldn't connect to host >
It turns out I needed to use a web proxy setting for curl at that location: export https_proxy=http://webproxy:3128 curl -kL http://install.perlbrew.pl | bash