2001-10-03 16:34:08 +04:00
/*
* Copyright ( C ) 2001 Sistina Software
*
* LVM is free software ; you can redistribute it and / or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation ; either version 2 , or ( at your option )
* any later version .
*
* LVM is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU General Public License for more details .
*
* You should have received a copy of the GNU General Public License
* along with LVM ; see the file COPYING . If not , write to
* the Free Software Foundation , 59 Temple Place - Suite 330 ,
* Boston , MA 02111 - 1307 , USA .
*
*/
# include "tools.h"
2002-02-11 23:50:53 +03:00
static int lvremove_single ( struct cmd_context * cmd , struct logical_volume * lv ) ;
2001-10-03 16:34:08 +04:00
2002-02-11 23:50:53 +03:00
int lvremove ( struct cmd_context * cmd , int argc , char * * argv )
2001-10-03 16:34:08 +04:00
{
2001-10-29 16:52:23 +03:00
if ( ! argc ) {
log_error ( " Please enter one or more logical volume paths " ) ;
2001-10-05 02:53:37 +04:00
return EINVALID_CMD_LINE ;
2001-10-03 16:34:08 +04:00
}
2002-02-11 23:50:53 +03:00
return process_each_lv ( cmd , argc , argv , & lvremove_single ) ;
2001-10-03 16:34:08 +04:00
}
2002-02-11 23:50:53 +03:00
static int lvremove_single ( struct cmd_context * cmd , struct logical_volume * lv )
2001-10-03 16:34:08 +04:00
{
2001-11-19 18:20:50 +03:00
struct volume_group * vg ;
2002-01-22 22:11:12 +03:00
int active ;
2001-11-19 18:20:50 +03:00
vg = lv - > vg ;
2001-11-21 22:32:35 +03:00
2002-01-29 20:23:33 +03:00
if ( ! ( vg - > status & LVM_WRITE ) ) {
2002-01-30 18:04:48 +03:00
log_error ( " Volume group \" %s \" is read-only " , vg - > name ) ;
2002-01-29 20:23:33 +03:00
return ECMD_FAILED ;
}
2001-10-06 01:39:30 +04:00
if ( lv - > status & SNAPSHOT_ORG ) {
2002-01-30 18:04:48 +03:00
log_error ( " Can't remove logical volume \" %s \" under snapshot " ,
2001-11-14 21:38:07 +03:00
lv - > name ) ;
2001-10-05 02:53:37 +04:00
return ECMD_FAILED ;
2001-10-03 16:34:08 +04:00
}
2001-11-28 21:03:11 +03:00
if ( lv_open_count ( lv ) > 0 ) {
2002-01-30 18:04:48 +03:00
log_error ( " Can't remove open logical volume \" %s \" " , lv - > name ) ;
2001-10-05 02:53:37 +04:00
return ECMD_FAILED ;
2001-10-03 16:34:08 +04:00
}
2002-01-22 22:11:12 +03:00
active = lv_active ( lv ) ;
2002-02-11 23:50:53 +03:00
if ( active & & ! arg_count ( cmd , force_ARG ) ) {
2001-10-03 16:34:08 +04:00
if ( yes_no_prompt
2002-01-30 18:04:48 +03:00
( " Do you really want to remove active logical volume \" %s \" ? "
2002-01-22 22:11:12 +03:00
" [y/n]: " , lv - > name ) = = ' n ' ) {
2002-01-30 18:04:48 +03:00
log_print ( " Logical volume \" %s \" not removed " , lv - > name ) ;
2001-10-03 16:34:08 +04:00
return 0 ;
}
}
2002-01-09 16:17:14 +03:00
if ( ! archive ( vg ) )
return ECMD_FAILED ;
2002-01-22 22:11:12 +03:00
if ( active & & ! lv_deactivate ( lv ) ) {
2002-01-30 18:04:48 +03:00
log_error ( " Unable to deactivate logical volume \" %s \" " , lv - > name ) ;
2001-11-21 22:32:35 +03:00
}
2002-01-30 18:04:48 +03:00
log_verbose ( " Releasing logical volume \" %s \" " , lv - > name ) ;
2001-11-14 21:38:07 +03:00
if ( ! lv_remove ( vg , lv ) ) {
2002-01-30 18:04:48 +03:00
log_error ( " Error releasing logical volume \" %s \" " , lv - > name ) ;
2001-10-05 02:53:37 +04:00
return ECMD_FAILED ;
2001-10-03 16:34:08 +04:00
}
/* store it on disks */
2002-02-11 23:50:53 +03:00
if ( ! cmd - > fid - > ops - > vg_write ( cmd - > fid , vg ) )
2001-10-05 02:53:37 +04:00
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
2002-01-30 18:04:48 +03:00
log_print ( " logical volume \" %s \" successfully removed " , lv - > name ) ;
2001-10-03 16:34:08 +04:00
return 0 ;
}