From e61589a419a487d2158507c597335ec5fd7f93ce Mon Sep 17 00:00:00 2001 From: Shaun Davis Date: Thu, 18 Jul 2024 10:30:26 -0500 Subject: [PATCH] Apparently this was on purpose (#246) --- internal/flybarman/node.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/internal/flybarman/node.go b/internal/flybarman/node.go index 2c1fe0d4..0a53796a 100644 --- a/internal/flybarman/node.go +++ b/internal/flybarman/node.go @@ -139,7 +139,8 @@ wal_retention_policy = main return fmt.Errorf("failed to write file %s: %s", n.RootPasswordConfigPath, err) } - barmanCronFileContent := `* * * * * /usr/local/bin/barman_cron` + barmanCronFileContent := `* * * * * /usr/local/bin/barman_cron + ` if err := os.WriteFile(n.BarmanCronFile, []byte(barmanCronFileContent), 0644); err != nil { return fmt.Errorf("failed write %s: %s", n.BarmanCronFile, err)