1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-10-27 18:55:19 +03:00
lvm2/tools/lvremove.c

108 lines
2.5 KiB
C
Raw Normal View History

2001-10-03 16:34:08 +04:00
/*
2004-03-30 23:35:44 +04:00
* Copyright (C) 2001-2004 Sistina Software, Inc. All rights reserved.
* Copyright (C) 2004 Red Hat, Inc. All rights reserved.
2001-10-03 16:34:08 +04:00
*
2004-03-30 23:35:44 +04:00
* This file is part of LVM2.
2001-10-03 16:34:08 +04:00
*
2004-03-30 23:35:44 +04:00
* This copyrighted material is made available to anyone wishing to use,
* modify, copy, or redistribute it subject to the terms and conditions
* of the GNU General Public License v.2.
2001-10-03 16:34:08 +04:00
*
* You should have received a copy of the GNU General Public License
2004-03-30 23:35:44 +04:00
* along with this program; if not, write to the Free Software Foundation,
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
2001-10-03 16:34:08 +04:00
*/
#include "tools.h"
2002-11-18 17:04:08 +03:00
static int lvremove_single(struct cmd_context *cmd, struct logical_volume *lv,
void *handle)
2001-10-03 16:34:08 +04:00
{
2001-11-19 18:20:50 +03:00
struct volume_group *vg;
struct lvinfo info;
2001-11-19 18:20:50 +03:00
vg = lv->vg;
if (!(vg->status & LVM_WRITE)) {
2002-01-30 18:04:48 +03:00
log_error("Volume group \"%s\" is read-only", vg->name);
return ECMD_FAILED;
}
if (lv_is_origin(lv)) {
2002-01-30 18:04:48 +03:00
log_error("Can't remove logical volume \"%s\" under snapshot",
lv->name);
return ECMD_FAILED;
2001-10-03 16:34:08 +04:00
}
2003-05-06 16:10:18 +04:00
if (lv->status & LOCKED) {
log_error("Can't remove locked LV %s", lv->name);
return ECMD_FAILED;
}
/* FIXME Ensure not referred to by another existing LVs */
if (lv_info(lv, &info, 1)) {
if (info.open_count) {
log_error("Can't remove open logical volume \"%s\"",
lv->name);
return ECMD_FAILED;
}
if (info.exists && !arg_count(cmd, force_ARG)) {
if (yes_no_prompt("Do you really want to remove active "
"logical volume \"%s\"? [y/n]: ",
lv->name) == 'n') {
log_print("Logical volume \"%s\" not removed",
lv->name);
2003-10-22 02:06:07 +04:00
return ECMD_FAILED;
}
2001-10-03 16:34:08 +04:00
}
}
2002-01-09 16:17:14 +03:00
if (!archive(vg))
return ECMD_FAILED;
2004-05-05 16:03:07 +04:00
if (!deactivate_lv(cmd, lv->lvid.s)) {
log_error("Unable to deactivate logical volume \"%s\"",
lv->name);
return ECMD_FAILED;
}
if (lv_is_cow(lv)) {
log_verbose("Removing snapshot %s", lv->name);
if (!vg_remove_snapshot(lv->vg, lv)) {
stack;
return ECMD_FAILED;
}
2002-02-21 13:15:54 +03:00
}
2002-01-30 18:04:48 +03:00
log_verbose("Releasing logical volume \"%s\"", lv->name);
if (!lv_remove(vg, lv)) {
2002-01-30 18:04:48 +03:00
log_error("Error releasing logical volume \"%s\"", lv->name);
return ECMD_FAILED;
2001-10-03 16:34:08 +04:00
}
/* store it on disks */
2002-11-18 17:04:08 +03:00
if (!vg_write(vg))
return ECMD_FAILED;
2001-10-03 16:34:08 +04:00
2002-01-07 14:12:11 +03:00
backup(vg);
2001-10-03 16:34:08 +04:00
if (!vg_commit(vg))
return ECMD_FAILED;
log_print("Logical volume \"%s\" successfully removed", lv->name);
2003-10-22 02:06:07 +04:00
return ECMD_PROCESSED;
2001-10-03 16:34:08 +04:00
}
2002-11-18 17:04:08 +03:00
int lvremove(struct cmd_context *cmd, int argc, char **argv)
{
if (!argc) {
log_error("Please enter one or more logical volume paths");
return EINVALID_CMD_LINE;
}
return process_each_lv(cmd, argc, argv, LCK_VG_WRITE, NULL,
2002-11-18 17:04:08 +03:00
&lvremove_single);
}