Currently the lvm-monitoring script always fails due to a missing ret=0 statement resulting in the script always failing. This also leads to openrc running the script twice. During runlevel boot, and then retry during runlevel default. Please apply the following patch: --- /var/portage/sys-fs/lvm2/files/lvm-monitoring.initd-2.02.67-r2 2010-06-15 00:26:52.000000000 +0200 +++ /etc/init.d/lvm-monitoring 2010-06-18 10:38:59.339739342 +0200 @@ -16,6 +16,7 @@ VGS=/sbin/vgs start() { + ret=0 # TODO do we want to separate out already active groups only? VGSLIST=`$VGS --noheadings -o name 2> /dev/null` for vg in $VGSLIST
InCVS.