Complete URBM product rename

This commit is contained in:
Mikei386
2026-06-14 23:12:39 +02:00
parent 145e04153e
commit 4e9b6a10f3
35 changed files with 253 additions and 181 deletions
+2 -2
View File
@@ -15,7 +15,7 @@ import (
"sync"
"syscall"
"github.com/backupper-unraid/backupper/internal/model"
"git.casaderoll.de/michael/urbm/internal/model"
)
type SecretGetter interface{ Get(string) (string, error) }
@@ -97,7 +97,7 @@ func (r *Runner) Init(ctx context.Context, repo model.Repository) error {
func (r *Runner) Backup(ctx context.Context, repo model.Repository, job model.Job, sources []string, progress ProgressCallback) (Summary, error) {
args := []string{"backup", "--json", "--compression", job.Compression}
for _, tag := range append([]string{"backupper", "job:" + job.ID}, job.Tags...) {
for _, tag := range append([]string{"urbm", "job:" + job.ID}, job.Tags...) {
args = append(args, "--tag", tag)
}
for _, exclude := range job.Excludes {