src/rrdd.pod: Add a simple manpage stub for rrdd(1).
authorFlorian Forster <octo@leeloo.home.verplant.org>
Sun, 22 Jun 2008 08:34:24 +0000 (10:34 +0200)
committerFlorian Forster <octo@leeloo.home.verplant.org>
Sun, 22 Jun 2008 08:34:24 +0000 (10:34 +0200)
src/Makefile.am
src/rrdd.pod [new file with mode: 0644]

index 9c670f1..2fce8ad 100644 (file)
@@ -12,3 +12,7 @@ rrdc_LDADD = librrdc.la
 rrdd_SOURCES = rrdd.c rrdd.h
 rrdd_LDADD = -lavl -lrrd_th
 
+all-local: rrdd.1
+
+%.1: %.pod
+       pod2man --release=$(VERSION) --center=rrdd $< >$@
diff --git a/src/rrdd.pod b/src/rrdd.pod
new file mode 100644 (file)
index 0000000..0aa2349
--- /dev/null
@@ -0,0 +1,41 @@
+=pod
+
+=head1 NAME
+
+RRDd - Data caching daemon for rrdtool
+
+=head1 SYNOPSIS
+
+  rrdd
+
+=head1 DESCRIPTION
+
+RRDd is a daemon that receives updates to existing RRD files, accumulates them
+and, if enough have been received or a defined time has passed, writes the
+updates to the RRD file. A I<flush> command may be used to force writing of
+values to disk, so that graphing facilities and similar can work with
+up-to-date data.
+
+=head1 OPTIONS
+
+None at the moment.
+
+=head1 BUGS
+
+=over 4
+
+=item 
+
+Runs into some assertion when the socket is closed by the client before the
+response has been received.
+
+=back
+
+=head1 SEE ALSO
+
+L<rrdtool(1)>, L<rrdgraph(1)>
+
+=head1 AUHOR
+
+RRDd and this manual page have been written by Florian Forster
+E<lt>octoE<nbsp>atE<nbsp>verplant.orgE<gt>.