From: Peter Rajnoha Date: Fri, 24 Feb 2012 13:11:57 +0000 (+0000) Subject: The daemon as well as the first scan must be both executed properly, otherwise it... X-Git-Tag: v2_02_96~320 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=97c2309e193a8b511b121f4fce5d331dba3f8967;p=lvm2.git The daemon as well as the first scan must be both executed properly, otherwise it's an error! --- diff --git a/scripts/lvm2_lvmetad_init_red_hat.in b/scripts/lvm2_lvmetad_init_red_hat.in index 867391df3..d93bec6e3 100644 --- a/scripts/lvm2_lvmetad_init_red_hat.in +++ b/scripts/lvm2_lvmetad_init_red_hat.in @@ -54,7 +54,7 @@ rh_status_q() { start() { ret=0 - action "Starting LVM metadata daemon:" $DAEMON || ${lvm_vgscan} || ret=$? + action "Starting LVM metadata daemon:" $DAEMON && ${lvm_vgscan} || ret=$? return $ret }