mirror of
git://sourceware.org/git/lvm2.git
synced 2025-01-03 05:18:29 +03:00
27 lines
500 B
C
27 lines
500 B
C
/*
|
|
* Copyright (C) 2001 Sistina Software (UK) Limited.
|
|
*
|
|
* This file is released under the GPL.
|
|
*/
|
|
|
|
#include "tools.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
int vgcfgrestore(int argc, char **argv)
|
|
{
|
|
if (argc != 1) {
|
|
log_err("Please specify a *single* volume group to restore.");
|
|
return ECMD_FAILED;
|
|
}
|
|
|
|
if (!(arg_count(file_ARG) ?
|
|
backup_restore_from_file(argv[0], arg_str_value(file_ARG, "")) :
|
|
backup_restore(argv[0]))) {
|
|
log_err("Restore failed.");
|
|
return ECMD_FAILED;
|
|
}
|
|
|
|
return 0;
|
|
}
|