From 143101d62f81b4b48074b2020fa911bdce5e5891 Mon Sep 17 00:00:00 2001 From: Bel LaPointe Date: Thu, 13 Feb 2020 07:33:20 -0700 Subject: [PATCH] Fix backup args and change to files type --- main.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main.go b/main.go index 68af93b..d76b795 100755 --- a/main.go +++ b/main.go @@ -67,11 +67,11 @@ func EnqueueBackups() { } conf := lastn.Config{ N: 3, - Rclone: realpath + "-backups", + Rclone: "/dev/null", Root: realpath, Ns: "backups", - Store: "rclone", - Conf: "/dev/null", + Store: "files", + Conf: realpath + "-backups", } log.Printf("backups conf: %+v", conf) lastn, err := lastn.New(conf)