pass env of backends to restic

This commit is contained in:
cupcakearmy 2021-04-17 13:04:40 +02:00
parent b314912821
commit 276c424106
No known key found for this signature in database
GPG Key ID: D28129AE5654D9D9
3 changed files with 14 additions and 2 deletions

View File

@ -41,6 +41,9 @@ func (b Backend) getEnv() (map[string]string, error) {
env["RESTIC_PASSWORD"] = b.Key
repo, err := b.generateRepo()
env["RESTIC_REPOSITORY"] = repo
for key, value := range b.Env {
env[strings.ToUpper(key)] = value
}
return env, err
}
@ -88,8 +91,11 @@ func (b Backend) validate() error {
return nil
} else {
// If not initialize
colors.Body.Printf("Initializing backend \"%s\"...\n", b.name)
out, err := ExecuteResticCommand(options, "init")
colors.Faint.Println(out)
if VERBOSE {
colors.Faint.Println(out)
}
return err
}
}

View File

@ -113,7 +113,7 @@ func (c *Config) Describe() {
if len(b.Env) > 0 {
tmp := ""
for option, value := range b.Env {
tmp += fmt.Sprintf("\n\t%s %s %s", colors.Success.Sprint("✧"), option, colors.Faint.Sprint(value))
tmp += fmt.Sprintf("\n\t%s %s %s", colors.Success.Sprint("✧"), strings.ToUpper(option), colors.Faint.Sprint(value))
}
colors.PrintDescription("Env", tmp)
}

View File

@ -6,6 +6,8 @@ import (
"io"
"os"
"os/exec"
"github.com/cupcakearmy/autorestic/internal/colors"
)
func CheckIfCommandIsCallable(cmd string) bool {
@ -32,6 +34,10 @@ func ExecuteCommand(options ExecuteOptions, args ...string) (string, error) {
cmd.Env = env
cmd.Dir = options.Dir
if VERBOSE {
colors.Faint.Printf("> Executing: %s\n", cmd)
}
var out bytes.Buffer
var error bytes.Buffer
cmd.Stdout = &out