]> sourceware.org Git - lvm2.git/blob - tools/stub.h
Reinstate accidentally-deleted line.
[lvm2.git] / tools / stub.h
1 /*
2 * Copyright (C) 2001-2004 Sistina Software, Inc. All rights reserved.
3 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
4 *
5 * This file is part of LVM2.
6 *
7 * This copyrighted material is made available to anyone wishing to use,
8 * modify, copy, or redistribute it subject to the terms and conditions
9 * of the GNU Lesser General Public License v.2.1.
10 *
11 * You should have received a copy of the GNU Lesser General Public License
12 * along with this program; if not, write to the Free Software Foundation,
13 * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
14 */
15
16 #define unimplemented \
17 log_error("Command not implemented yet."); return ECMD_FAILED
18
19 /*int e2fsadm(struct cmd_context *cmd, int argc, char **argv) unimplemented*/
20 int lvmsadc(struct cmd_context *cmd __attribute__((unused)),
21 int argc __attribute__((unused)),
22 char **argv __attribute__((unused)))
23 {
24 unimplemented;
25 }
26
27 int lvmsar(struct cmd_context *cmd __attribute__((unused)),
28 int argc __attribute__((unused)),
29 char **argv __attribute__((unused)))
30 {
31 unimplemented;
32 }
33
34 int pvdata(struct cmd_context *cmd __attribute__((unused)),
35 int argc __attribute__((unused)),
36 char **argv __attribute__((unused)))
37 {
38 log_error("There's no 'pvdata' command in LVM2.");
39 log_error("Use lvs, pvs, vgs instead; or use vgcfgbackup and read the text file backup.");
40 log_error("Metadata in LVM1 format can still be displayed using LVM1's pvdata command.");
41 return ECMD_FAILED;
42 }
43
This page took 0.039084 seconds and 5 git commands to generate.