Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

wireguard: fix depend info and remove use socket as that is not being used #533

Merged
merged 1 commit into from
Jul 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions snmp/wireguard.pl
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ =head1 INSTALL
Install the depends.

# FreeBSD
pkg install p5-JSON p5-TOML p5-MIME-Base64
pkg install p5-JSON p5-File-Slurp p5-MIME-Base64
# Debian
apt-get install libjson-perl libmime-base64-perl
apt-get install libjson-perl libmime-base64-perl libfile-slurp-perl

Then set it up in SNMPD.

Expand Down Expand Up @@ -144,7 +144,6 @@ =head3 first_allowed_use_ip
use IO::Compress::Gzip qw(gzip $GzipError);
use File::Slurp;
use Pod::Usage;
use Socket;

$Getopt::Std::STANDARD_HELP_VERSION = 1;

Expand Down
Loading