migrations

package
v0.16.4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 4, 2024 License: BSD-2-Clause Imports: 11 Imported by: 0

Documentation

Overview

Package migrations contains migrations that can be applied to a repository and/or backend.

Index

Constants

This section is empty.

Variables

All contains all migrations.

Functions

This section is empty.

Types

type Migration

type Migration interface {
	// Check returns true if the migration can be applied to a repo. If the option is not applicable it can return a specific reason.
	Check(context.Context, restic.Repository) (bool, string, error)

	RepoCheck() bool

	// Apply runs the migration.
	Apply(context.Context, restic.Repository) error

	// Name returns a short name.
	Name() string

	// Descr returns a description what the migration does.
	Desc() string
}

Migration implements a data migration.

type S3Layout

type S3Layout struct{}

S3Layout migrates a repository on an S3 backend from the "s3legacy" to the "default" layout.

func (*S3Layout) Apply

func (m *S3Layout) Apply(ctx context.Context, repo restic.Repository) error

Apply runs the migration.

func (*S3Layout) Check

func (m *S3Layout) Check(_ context.Context, repo restic.Repository) (bool, string, error)

Check tests whether the migration can be applied.

func (*S3Layout) Desc

func (m *S3Layout) Desc() string

Desc returns a short description what the migration does.

func (*S3Layout) Name

func (m *S3Layout) Name() string

Name returns the name for this migration.

func (*S3Layout) RepoCheck added in v0.14.0

func (m *S3Layout) RepoCheck() bool

type UpgradeRepoV2 added in v0.14.0

type UpgradeRepoV2 struct{}

func (*UpgradeRepoV2) Apply added in v0.14.0

func (m *UpgradeRepoV2) Apply(ctx context.Context, repo restic.Repository) error

func (*UpgradeRepoV2) Check added in v0.14.0

func (*UpgradeRepoV2) Desc added in v0.14.0

func (*UpgradeRepoV2) Desc() string

func (*UpgradeRepoV2) Name added in v0.14.0

func (*UpgradeRepoV2) Name() string

func (*UpgradeRepoV2) RepoCheck added in v0.14.0

func (*UpgradeRepoV2) RepoCheck() bool

type UpgradeRepoV2Error added in v0.14.0

type UpgradeRepoV2Error struct {
	UploadNewConfigError   error
	ReuploadOldConfigError error

	BackupFilePath string
}

func (*UpgradeRepoV2Error) Error added in v0.14.0

func (err *UpgradeRepoV2Error) Error() string

func (*UpgradeRepoV2Error) Unwrap added in v0.14.0

func (err *UpgradeRepoV2Error) Unwrap() error

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL