From 072e9e9fca474a2110b17decc87a3e39441e1dbe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Fri, 12 Apr 2024 19:07:45 +0200 Subject: [PATCH] add debug --- pkgs/sops-install-secrets/main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/sops-install-secrets/main.go b/pkgs/sops-install-secrets/main.go index 103323d..b4691c7 100644 --- a/pkgs/sops-install-secrets/main.go +++ b/pkgs/sops-install-secrets/main.go @@ -922,6 +922,7 @@ func installSecrets(args []string) error { manifest.SymlinkPath = replaceRuntimeDir(manifest.SymlinkPath, rundir) var newSecrets []secret for _, secret := range manifest.Secrets { + fmt.Printf("Replacing %s with %s\n", secret.Path, replaceRuntimeDir(secret.Path, rundir)) secret.Path = replaceRuntimeDir(secret.Path, rundir) newSecrets = append(newSecrets, secret) }