mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
37 lines
757 B
C
37 lines
757 B
C
/*
|
|
* Copyright (C) 2001 Sistina Software (UK) Limited.
|
|
*
|
|
* This file is released under the GPL.
|
|
*/
|
|
|
|
#include "tools.h"
|
|
|
|
int vgcfgrestore(struct cmd_context *cmd, int argc, char **argv)
|
|
{
|
|
if (argc != 1) {
|
|
log_err("Please specify a *single* volume group to restore.");
|
|
return ECMD_FAILED;
|
|
}
|
|
|
|
/*
|
|
* FIXME: overloading the -l arg for now to display a
|
|
* list of archive files for a particular vg
|
|
*/
|
|
if (arg_count(cmd, list_ARG)) {
|
|
if (!archive_display(cmd, argv[0]))
|
|
return ECMD_FAILED;
|
|
|
|
return 0;
|
|
}
|
|
|
|
if (!(arg_count(cmd, file_ARG) ?
|
|
backup_restore_from_file(cmd, argv[0],
|
|
arg_str_value(cmd, file_ARG, "")) :
|
|
backup_restore(cmd, argv[0]))) {
|
|
log_err("Restore failed.");
|
|
return ECMD_FAILED;
|
|
}
|
|
|
|
return 0;
|
|
}
|