Skip to content

Commit

Permalink
🐫 added wget with HTTPS
Browse files Browse the repository at this point in the history
  • Loading branch information
HeitorG committed Feb 5, 2016
1 parent 5933db3 commit d641c4b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions nipe.pl
Original file line number Diff line number Diff line change
Expand Up @@ -44,22 +44,22 @@ sub help {
sub install {
if ( ($os =~ /Ubuntu/) || ($os =~ /Debian/) ) {
system ("sudo apt-get install tor");
system ("sudo wget http://heitorgouvea.com/nipe/ubuntu/torrc");
system ("sudo wget https://heitorgouvea.com/nipe/ubuntu/torrc");
}

elsif ($os =~ /Arch/) {
system ("sudo pacman -S tor");
system ("sudo wget http://heitorgouvea.com/nipe/arch/torrc");
system ("sudo wget https://heitorgouvea.com/nipe/arch/torrc");
}

elsif ($os =~ /Fedora/) {
system ("sudo dnf install tor");
system ("sudo wget http://heitorgouvea.com/nipe/fedora/torrc");
system ("sudo wget https://heitorgouvea.com/nipe/fedora/torrc");
}

else {
system ("sudo apt-get install tor");
system ("sudo wget http://heitorgouvea.com/nipe/ubuntu/torrc");
system ("sudo wget https://heitorgouvea.com/nipe/ubuntu/torrc");
}

system ("sudo mkdir -p /etc/tor");
Expand Down

0 comments on commit d641c4b

Please sign in to comment.