1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-05 13:18:20 +03:00
lvm2/tools/stub.h

23 lines
893 B
C
Raw Normal View History

2001-09-25 16:49:28 +04:00
/*
2002-01-10 17:27:47 +03:00
* Copyright (C) 2001 Sistina Software (UK) Limited.
2001-09-25 16:49:28 +04:00
*
2002-01-10 17:27:47 +03:00
* This file is released under the GPL.
2001-09-25 16:49:28 +04:00
*/
#define unimplemented \
{ log_error("Command not implemented yet."); return ECMD_FAILED;}
2002-11-18 17:04:08 +03:00
/*int e2fsadm(struct cmd_context *cmd, int argc, char **argv) unimplemented*/
int lvmsadc(struct cmd_context *cmd, int argc, char **argv) unimplemented
int lvmsar(struct cmd_context *cmd, int argc, char **argv) unimplemented
2002-02-25 18:32:58 +03:00
int pvresize(struct cmd_context *cmd, int argc, char **argv) unimplemented
int vgmknodes(struct cmd_context *cmd, int argc, char **argv) unimplemented
int pvdata(struct cmd_context *cmd, int argc, char **argv) {
log_error("There's no 'pvdata' command in LVM2.");
log_error("Use lvs, pvs, vgs instead; or use vgcfgbackup and read the text file backup.");
log_error("Metadata in LVM1 format can still be displayed using LVM1's pvdata command.");
return ECMD_FAILED;
}