From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26238 invoked by alias); 15 Feb 2012 12:30:47 -0000 Received: (qmail 26221 invoked by uid 9699); 15 Feb 2012 12:30:47 -0000 Date: Wed, 15 Feb 2012 12:30:00 -0000 Message-ID: <20120215123047.26219.qmail@sourceware.org> From: mornfall@sourceware.org To: lvm-devel@redhat.com, lvm2-cvs@sourceware.org Subject: LVM2/tools vgreduce.c Mailing-List: contact lvm2-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: lvm2-cvs-owner@sourceware.org X-SW-Source: 2012-02/txt/msg00109.txt.bz2 CVSROOT: /cvs/lvm2 Module name: LVM2 Changes by: mornfall@sourceware.org 2012-02-15 12:30:46 Modified files: tools : vgreduce.c Log message: Turn a warning to an error in vgreduce --removemissing, since we exit with a failure status there. Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/tools/vgreduce.c.diff?cvsroot=lvm2&r1=1.114&r2=1.115 --- LVM2/tools/vgreduce.c 2012/02/08 11:41:18 1.114 +++ LVM2/tools/vgreduce.c 2012/02/15 12:30:46 1.115 @@ -60,8 +60,8 @@ if (!r) { cmd->handles_missing_pvs = 1; - log_warn("WARNING: There are still partial LVs in VG %s.", vg->name); - log_warn("To remove them unconditionally use: vgreduce --removemissing --force."); + log_error("There are still partial LVs in VG %s.", vg->name); + log_error("To remove them unconditionally use: vgreduce --removemissing --force."); log_warn("Proceeding to remove empty missing PVs."); }