fix a few bugs and update readme.md

master
GouveaHeitor 2020-01-02 08:37:26 -03:00
parent 720cf3451d
commit 58481157c7
4 changed files with 12 additions and 49 deletions

47
.gitignore vendored
View File

@ -1,46 +1 @@
*.DS_Store
# Created by https://www.gitignore.io/api/perl
# Edit at https://www.gitignore.io/?templates=perl
### Perl ###
!Build/
.last_cover_stats
/META.yml
/META.json
/MYMETA.*
*.o
*.pm.tdy
*.bs
# Devel::Cover
cover_db/
# Devel::NYTProf
nytprof.out
# Dizt::Zilla
/.build/
# Module::Build
_build/
Build
Build.bat
# Module::Install
inc/
# ExtUtils::MakeMaker
/blib/
/_eumm/
/*.gz
/Makefile
/Makefile.old
/MANIFEST.bak
/pm_to_blib
/*.zip
# Carton
/local
# End of https://www.gitignore.io/api/perl
*.DS_Store

View File

@ -64,9 +64,9 @@
### Contribution
- Your contributions and suggestions are heartily♥ welcome. [**See here the contribution guidelines.**](/.github/CONTRIBUTING.md) Please, report bugs via [**issues page.**](https://github.com/GouveaHeitor/nipe/issues)(✿◕‿◕)
- Your contributions and suggestions are heartily ♥ welcome. [**See here the contribution guidelines.**](/.github/CONTRIBUTING.md) Please, report bugs via [**issues page.**](https://github.com/GouveaHeitor/nipe/issues) See here the [**Security Policy.**](./github/SECURITY.md) (✿ ◕‿◕)
- Interested in better understanding how the Nipe really works? Maybe this post can help you: [**A techinical Overview about Nipe**](https://heitorgouvea.me/2019/11/19/Nipe-Overview)
- Interested in better understanding how the Nipe really works? Maybe this post can help you: [**A techinical Overview about Nipe.**](https://heitorgouvea.me/2019/11/19/Nipe-Overview)
### License

View File

@ -48,6 +48,14 @@ sub install {
system ("sudo chmod 644 /etc/tor/torrc");
if (-e "/etc/init.d/tor") {
system ("sudo /etc/init.d/tor stop > /dev/null");
}
else {
system ("sudo systemctl stop tor");
}
return true;
}

View File

@ -1,6 +1,6 @@
#!/usr/bin/env perl
use 5.010;
use 5.018;
use Switch;
use lib "./lib/";
use Nipe::Stop;