1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-04 09:18:36 +03:00
lvm2/lib/format_text/format-text.h

35 lines
865 B
C
Raw Normal View History

2001-11-21 12:20:05 +03:00
/*
* Copyright (C) 2001 Sistina Software (UK) Limited.
*
* This file is released under the LGPL.
*/
#ifndef _LVM_FORMAT_TEXT_H
#define _LVM_FORMAT_TEXT_H
2001-12-20 14:52:54 +03:00
#include "lvm-types.h"
#include "metadata.h"
2002-01-07 12:05:31 +03:00
/*
* The backup format is used to maintain a set of backup files.
* 'retain_days' gives the minimum number of days that a backup must
* be held for.
*
* 'min_backups' is the minimum number of backups required for each volume
* group.
*/
2001-12-20 14:52:54 +03:00
struct format_instance *backup_format_create(struct cmd_context *cmd,
2001-12-17 22:46:10 +03:00
const char *dir,
uint32_t retain_days,
uint32_t min_backups);
void backup_expire(struct format_instance *fi);
2001-11-21 12:20:05 +03:00
2002-01-07 12:05:31 +03:00
/*
* The text format can read and write a volume_group to a file.
*/
struct format_instance *text_format_create(struct cmd_context *cmd,
const char *file);
2001-11-21 12:20:05 +03:00
#endif