summaryrefslogtreecommitdiff
path: root/tools/archive.h
blob: f0f34eb2583f07128d55d2fc8d5ce03b7f0967aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/*
 * Copyright (C) 2001 Sistina Software (UK) Limited.
 *
 * This file is released under the GPL.
 */

#ifndef _LVM_TOOL_ARCHIVE_H
#define _LVM_TOOL_ARCHIVE_H

#include "metadata.h"

/*
 * FIXME: This file is going to merge with the archiving code in
 * lib/format_text at some point.
 */

/*
 * There are two operations that come under the general area of
 * backups.  'Archiving' occurs just before a volume group
 * configuration is changed.  The user may configure when
 * archived files are expired.  Typically archives will be stored
 * in /etc/lvm/archive.
 *
 * A 'backup' is a redundant copy of the *current* volume group
 * configuration.  As such it should be taken just after the
 * volume group is changed.  Only 1 backup file will exist.
 * Typically backups will be stored in /etc/lvm/backups.
 */

int archive_init(const char *dir,
		 unsigned int keep_days, unsigned int keep_min);
void archive_exit(void);

void archive_enable(int flag);
int archive(struct volume_group *vg);
int archive_display(struct cmd_context *cmd, const char *vg_name);

int backup_init(const char *dir);
void backup_exit(void);

void backup_enable(int flag);
int backup(struct volume_group *vg);
int backup_remove(const char *vg_name);

int backup_restore_from_file(struct cmd_context *cmd, const char *vg_name,
			     const char *file);
int backup_restore(struct cmd_context *cmd, const char *vg_name);

#endif