2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-12 22:02:23 +00:00
restic/src/cmds/restic
Alexander Neumann b9bddeff39 Normalise the backend API
This makes the following changes, before:

    type backend interface {
        // Test a boolean value whether a File with the name and type exists.
        Test(t FileType, name string) (bool, error)

        // Remove removes a File with type t and name.
        Remove(t FileType, name string) error
    }

After:

    type backend interface {
        // Test a boolean value whether a File with the name and type exists.
        Test(h Handle) (bool, error)

        // Remove removes a File with type t and name.
        Remove(h Handle) error
    }
2017-01-26 22:02:22 +01:00
..
testdata fuse: Add test for same timestamps 2016-09-18 18:30:25 +02:00
.gitignore Move commands to src/cmds 2016-02-23 07:21:28 +01:00
background_linux.go don't print status info if running in the background 2016-10-15 18:12:19 +00:00
background.go don't print status info if running in the background 2016-10-15 18:12:19 +00:00
cleanup.go Make sure cleanup is executed before exiting 2016-12-28 10:53:31 +01:00
cmd_backup.go Avoid duplicate backup paths 2016-12-18 23:23:57 +01:00
cmd_cat.go Make backend.LoadAll() similar to ioutil.ReadAll() 2017-01-23 17:54:12 +01:00
cmd_check.go Use cobra for all commands 2016-09-27 19:53:03 +02:00
cmd_dump.go Use cobra for all commands 2016-09-27 19:53:03 +02:00
cmd_find.go Update calls to debug.Log() 2016-09-28 19:56:03 +02:00
cmd_forget.go Normalise the backend API 2017-01-26 22:02:22 +01:00
cmd_init.go Use cobra for all commands 2016-09-27 19:53:03 +02:00
cmd_key.go Normalise the backend API 2017-01-26 22:02:22 +01:00
cmd_list.go Use cobra for all commands 2016-09-27 19:53:03 +02:00
cmd_ls.go User interface inconsistency fixed 2017-01-14 11:19:47 +08:00
cmd_mount.go Update calls to debug.Log() 2016-09-28 19:56:03 +02:00
cmd_prune.go Normalise the backend API 2017-01-26 22:02:22 +01:00
cmd_rebuild_index.go Use cobra for all commands 2016-09-27 19:53:03 +02:00
cmd_restore.go Improve help text for slice options 2016-09-29 20:39:55 +02:00
cmd_snapshots.go Improve help text for slice options 2016-09-29 20:39:55 +02:00
cmd_unlock.go Use cobra for all commands 2016-09-27 19:53:03 +02:00
cmd_version.go Remove timestamp from version command 2016-12-19 21:14:12 +01:00
doc.go Move commands to src/cmds 2016-02-23 07:21:28 +01:00
format.go Use cobra for all commands 2016-09-27 19:53:03 +02:00
global_debug.go Add options for creating a memory or CPU profile 2017-01-23 17:52:26 +01:00
global_release.go Add options for creating a memory or CPU profile 2017-01-23 17:52:26 +01:00
global.go fix typo 2017-01-18 10:46:04 +01:00
integration_fuse_test.go Use cobra for all commands 2016-09-27 19:53:03 +02:00
integration_helpers_test.go Use cobra for all commands 2016-09-27 19:53:03 +02:00
integration_helpers_unix_test.go Move commands to src/cmds 2016-02-23 07:21:28 +01:00
integration_helpers_windows_test.go Move commands to src/cmds 2016-02-23 07:21:28 +01:00
integration_test.go Add restore test with larger files 2017-01-24 11:51:21 +01:00
lock.go Make sure cleanup is executed before exiting 2016-12-28 10:53:31 +01:00
main.go Add options for creating a memory or CPU profile 2017-01-23 17:52:26 +01:00
table.go Add comments 2016-09-27 20:22:01 +02:00