~ubuntu-branches/debian/sid/lvm2/sid

1 by Patrick Caulfield
Import upstream version 2.00.25
1
/*
2
 * Copyright (C) 2001-2004 Sistina Software, Inc. All rights reserved.  
1.1.3 by Bastian Blank
Import upstream version 2.02.44
3
 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
1 by Patrick Caulfield
Import upstream version 2.00.25
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
1.1.3 by Bastian Blank
Import upstream version 2.02.44
9
 * of the GNU Lesser General Public License v.2.1.
1 by Patrick Caulfield
Import upstream version 2.00.25
10
 *
1.1.3 by Bastian Blank
Import upstream version 2.02.44
11
 * You should have received a copy of the GNU Lesser General Public License
1 by Patrick Caulfield
Import upstream version 2.00.25
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 \
1.1.3 by Bastian Blank
Import upstream version 2.02.44
17
	log_error("Command not implemented yet."); return ECMD_FAILED
1 by Patrick Caulfield
Import upstream version 2.00.25
18
19
/*int e2fsadm(struct cmd_context *cmd, int argc, char **argv) unimplemented*/
1.1.11 by Bastian Blank
Import upstream version 2.02.84
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)))
1.1.3 by Bastian Blank
Import upstream version 2.02.44
37
{
1 by Patrick Caulfield
Import upstream version 2.00.25
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