1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

Add man page for dmeventd

(inspired by patch from Danny Rawlins, monster.romster at gmail dot com)
This commit is contained in:
Zdenek Kabelac 2010-06-17 12:14:43 +00:00
parent 50b906abaa
commit c5782bcf15
3 changed files with 52 additions and 3 deletions

View File

@ -1,5 +1,6 @@
Version 2.02.68 -
===============================
Add dmeventd man page.
Update lvresize/extend/reduce manpages with --nofsck, --resizefs options.
Fix lvm2cmd example in documentation.
Allow use of lvm2app and lvm2cmd headers in C++ mode.

View File

@ -22,6 +22,12 @@ else
FSADMMAN =
endif
ifeq ("@DMEVENTD@", "yes")
DMEVENTDMAN = dmeventd.8
else
DMEVENTDMAN =
endif
MAN5=lvm.conf.5
MAN8=lvchange.8 lvconvert.8 lvcreate.8 lvdisplay.8 lvextend.8 lvm.8 \
lvmchange.8 lvmdiskscan.8 lvmdump.8 \
@ -30,7 +36,7 @@ MAN8=lvchange.8 lvconvert.8 lvcreate.8 lvdisplay.8 lvextend.8 lvm.8 \
pvresize.8 pvs.8 pvscan.8 vgcfgbackup.8 vgcfgrestore.8 vgchange.8 \
vgck.8 vgcreate.8 vgconvert.8 vgdisplay.8 vgexport.8 vgextend.8 \
vgimport.8 vgimportclone.8 vgmerge.8 vgmknodes.8 vgreduce.8 vgremove.8 \
vgrename.8 vgs.8 vgscan.8 vgsplit.8 $(FSADMMAN)
vgrename.8 vgs.8 vgscan.8 vgsplit.8 $(FSADMMAN) $(DMEVENTDMAN)
ifneq ("@CLVMD@", "none")
MAN8CLUSTER=clvmd.8
@ -45,8 +51,8 @@ MAN8DM=dmsetup.8
MAN5DIR=$(mandir)/man5
MAN8DIR=$(mandir)/man8
CLEAN_TARGETS=$(MAN5) $(MAN8) $(MAN8CLUSTER) $(FSADMMAN) $(MAN8DM)
DISTCLEAN_TARGETS=fsadm.8 clvmd.8 cmirrord.8
CLEAN_TARGETS=$(MAN5) $(MAN8) $(MAN8CLUSTER) $(FSADMMAN) $(DMEVENTDMAN) $(MAN8DM)
DISTCLEAN_TARGETS=fsadm.8 clvmd.8 cmirrord.8 dmeventd.8
include $(top_builddir)/make.tmpl

42
man/dmeventd.8.in Normal file
View File

@ -0,0 +1,42 @@
.TH DMEVENTD 8 "DM TOOLS #VERSION#" "Red Hat Inc" \" -*- nroff -*-
.SH NAME
dmeventd \- Device-mapper event daemon
.SH SYNOPSIS
.B dmeventd
[\-V]
[\-d]
[\-f]
[\-h]
[\-?]
.SH DESCRIPTION
dmeventd is the event monitoring daemon for device-mapper devices.
Plugins are supported.
.br
LVM plugins:
.TP
Snapshot: monitor the filling of snapshot and emits a warning through
syslog, when the use of snapshot exceedes 80%.
The warning is repeated when 85%, 90% and 95% of the snapshot are filled.
(see \fBlvm.conf\fP)
.TP
Mirror: attempts to recover from failures (see \fBlvm.conf\fP).
.SH OPTIONS
.TP
.I \-V
Show version of dmeventd.
.TP
.I \-d
Repeat from 1 to 3 times (-d, -dd, -ddd) to increase the detail of
debug messages sent to syslog.
Each extra d adds more debugging information.
.TP
.I \-f
Don't fork, run in the foreground.
.TP
.I \-h, \-?
Show help information.
.SH SEE ALSO
.BR lvm (8),
.BR lvm.conf (5)