From 25b733809adcd2f6a8f288c100085068094dcc8a Mon Sep 17 00:00:00 2001 From: Alasdair Kergon Date: Wed, 24 Apr 2002 18:20:51 +0000 Subject: Merge with text format branch. Lots of changes/very little testing so far => there'll be bugs! Use 'vgcreate -M text' to create a volume group with its metadata stored in text files. Text format metadata changes should be reasonably atomic, with a (basic) automatic recovery mechanism if the system crashes while a change is in progress. Add a metadata section to lvm.conf to specify multiple directories if you want (recommended) to keep multiple copies of the metadata (eg on different filesystems). e.g. metadata { dirs = ["/etc/lvm/metadata1","/usr/local/lvm/metadata2"] } Plenty of refinements still in the pipeline. --- tools/vgscan.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'tools/vgscan.c') diff --git a/tools/vgscan.c b/tools/vgscan.c index 938553c4..504f5347 100644 --- a/tools/vgscan.c +++ b/tools/vgscan.c @@ -46,13 +46,14 @@ static int vgscan_single(struct cmd_context *cmd, const char *vg_name) log_verbose("Checking for volume group \"%s\"", vg_name); - if (!(vg = cmd->fid->ops->vg_read(cmd->fid, vg_name))) { + if (!(vg = vg_read(cmd, vg_name))) { log_error("Volume group \"%s\" not found", vg_name); return ECMD_FAILED; } - log_print("Found %svolume group \"%s\"", - (vg->status & EXPORTED_VG) ? "exported " : "", vg_name); + log_print("Found %svolume group \"%s\" using metadata type %s", + (vg->status & EXPORTED_VG) ? "exported " : "", vg_name, + vg->fid->fmt->name); return 0; } -- cgit