Skip to content

Commit 3fdcde1

Browse files
authored
Fixed FreeBSD-Part of README (#33)
* add building prerequisites for FreeBSD * FreeBSD: removed instruction to install SRC-Package Installation of 'net-snmp' is sufficient * remove "$" for compat. reasons
1 parent b9362bd commit 3fdcde1

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

README.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This plugin uses the bulk-get mode of SNMPv2 by default - pass it the option -m
1111
In order to compile this plugin you need the `NET SNMP Development` package
1212
(`libsnmp-dev` for Debian) as well as `autoconf` and the standard compilation tools.
1313

14-
Example for Debian:
14+
#### Example for Debian:
1515

1616
```
1717
apt-get update
@@ -41,6 +41,20 @@ make
4141
make install
4242
```
4343

44+
#### Prerequisites for FreeBSD
45+
46+
```
47+
sudo pkg install automake gcc net-snmp
48+
```
49+
50+
To build:
51+
```
52+
autoreconf
53+
./configure --prefix=/usr/local ## works, but you should have your own plugins-dir
54+
make
55+
sudo make install ## optional
56+
```
57+
4458
### Usage
4559

4660

0 commit comments

Comments
 (0)