summaryrefslogtreecommitdiffstats
path: root/tools/vgremove.c
Commit message (Collapse)AuthorAgeFilesLines
...
* o Basic support for exporting (but importing not completed yet).Alasdair Kergon2002-01-291-0/+10
| | | | | o When volume group does not have write flag set, prevent changes to it. o Preparation for partial activation (not completed yet).
* o ChangedJoe Thornber2002-01-211-1/+1
| | | | | | | | | | | | | | | | | | | | struct pv_list { struct list list; struct physical_volume pv; }; to struct pv_list { struct list list; struct physical_volume *pv; }; o New function in toollib 'create_pv_list', which creates a list of pv's from a given command line array of pv's. o Changed lvcreate/extend to use this (fixes lvextend [pv list] bug).
* o ACTIVE is no longer a status flag - lv_active() used to check if an LVAlasdair Kergon2002-01-101-7/+0
| | | | | | | | | | is active in the device-mapper. o Many operations can be carried out regardless of whether the VG is active or not. o vgscan does not activate anything - use vgchange. o Change lvrename to support renaming of active LVs. o Remove '//' appearing in some pathnames. o Dummy lv_check_segments() for compilation.
* o Rename many occurrences of 'backup' to 'archive' to reduce confusion.Alasdair Kergon2002-01-091-1/+1
| | | | | | | o Extract file creation/renaming code into a library and change backup code to use it too. o Support umask. o Bring lvm.conf man page up-to-date.
* Add archiving.Alasdair Kergon2002-01-091-0/+3
|
* o sync tool changes for backup stuff.Joe Thornber2002-01-071-1/+1
|
* o Add autobackup support to tools (follows most vg_write calls).Alasdair Kergon2001-12-311-0/+2
| | | | | | o Skip autobackup when in test mode. o Set test mode from config file. o Create system/backup dirs if not present (unless LVM_SYSTEM_DIR holds "").
* o activation & active status testsAlasdair Kergon2001-11-211-0/+2
| | | | | o lvdisplay fields from kernel o update lv->size on resize
* iospace restructuredAlasdair Kergon2001-11-121-2/+2
|
* o LGPL list implementationJoe Thornber2001-10-311-3/+3
|
* o use dev_name(dev) to get the name of a device, this operation is cheapJoe Thornber2001-10-251-2/+3
| | | | since it just get's the first alias.
* vgreduce, vgremove, vgrename & vgscanAlasdair Kergon2001-10-111-13/+17
|
* o vgremove.Alasdair Kergon2001-10-091-0/+76
o filter devices by major.