diff options
Diffstat (limited to 'web/input/doc/faq/compilation.md')
-rw-r--r-- | web/input/doc/faq/compilation.md | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/web/input/doc/faq/compilation.md b/web/input/doc/faq/compilation.md new file mode 100644 index 0000000..b58566a --- /dev/null +++ b/web/input/doc/faq/compilation.md | |||
@@ -0,0 +1,18 @@ | |||
1 | title: Building Nagios Plugins | ||
2 | parent: FAQ | ||
3 | --- | ||
4 | |||
5 | # How do I compile the plugins? | ||
6 | |||
7 | To compile version `1.x` of the plugins, you run: | ||
8 | |||
9 | gzip -dc nagios-plugins-1.x.tar.gz | tar -xf - | ||
10 | cd nagios-plugins-1.x | ||
11 | ./configure | ||
12 | make | ||
13 | |||
14 | You can then [install the plugins][installation]. | ||
15 | |||
16 | [installation]: doc/faq/installation.html "Installation" | ||
17 | |||
18 | <!--% # vim:set filetype=markdown textwidth=78 joinspaces: # %--> | ||