From a7617ea22475546f3c5318c1b560ca01748ab683 Mon Sep 17 00:00:00 2001 From: Alasdair Kergon Date: Mon, 15 Sep 2003 15:05:23 +0000 Subject: [PATCH] Don't install the pvdata stub; update built-in mesg. --- tools/Makefile.in | 2 +- tools/stub.h | 10 +++++++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/tools/Makefile.in b/tools/Makefile.in index 288605300..aa8553fa8 100644 --- a/tools/Makefile.in +++ b/tools/Makefile.in @@ -81,7 +81,7 @@ lvm: $(OBJECTS) $(top_srcdir)/lib/liblvm.a .commands: commands.h cmdnames.h Makefile $(CC) -E -P cmdnames.h 2> /dev/null | \ - egrep -v '^ *(|#.*|help|version) *$$' > .commands + egrep -v '^ *(|#.*|help|pvdata|version) *$$' > .commands install: $(TARGETS) $(INSTALL) -D -o $(OWNER) -g $(GROUP) -m 555 $(STRIP) lvm \ diff --git a/tools/stub.h b/tools/stub.h index bfd587416..4c729d7d7 100644 --- a/tools/stub.h +++ b/tools/stub.h @@ -6,9 +6,17 @@ #define unimplemented \ { log_error("Command not implemented yet."); return ECMD_FAILED;} + /*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 -int pvdata(struct cmd_context *cmd, int argc, char **argv) unimplemented 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; +} +