mirror of
https://github.com/octoleo/restic.git
synced 2024-11-26 23:06:32 +00:00
parent
699f39e3cf
commit
16cef3b4c6
@ -354,7 +354,13 @@ func runBackup(opts BackupOptions, gopts GlobalOptions, args []string) error {
|
|||||||
|
|
||||||
// Find last snapshot to set it as parent, if not already set
|
// Find last snapshot to set it as parent, if not already set
|
||||||
if !opts.Force && parentSnapshotID == nil {
|
if !opts.Force && parentSnapshotID == nil {
|
||||||
id, err := restic.FindLatestSnapshot(repo, target, "")
|
hostname, err := os.Hostname()
|
||||||
|
if err != nil {
|
||||||
|
debug.Log("os.Hostname() returned err: %v", err)
|
||||||
|
hostname = ""
|
||||||
|
}
|
||||||
|
|
||||||
|
id, err := restic.FindLatestSnapshot(repo, target, hostname)
|
||||||
if err == nil {
|
if err == nil {
|
||||||
parentSnapshotID = &id
|
parentSnapshotID = &id
|
||||||
} else if err != restic.ErrNoSnapshotFound {
|
} else if err != restic.ErrNoSnapshotFound {
|
||||||
|
Loading…
Reference in New Issue
Block a user