From 3a54ecf08f7466a7223ffe8860d1578800027e36 Mon Sep 17 00:00:00 2001 From: Grant Slater Date: Sat, 1 Oct 2022 23:49:50 +0100 Subject: [PATCH] oxidized: fix array handling on key --- cookbooks/oxidized/recipes/default.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cookbooks/oxidized/recipes/default.rb b/cookbooks/oxidized/recipes/default.rb index 4dc9bf548..b0f25962c 100644 --- a/cookbooks/oxidized/recipes/default.rb +++ b/cookbooks/oxidized/recipes/default.rb @@ -59,7 +59,7 @@ end # Key is set as a deployment key in github repo file "/opt/oxidized/.ssh/id_rsa" do - content keys["git"] + content keys["git"].join("\n") owner "oxidized" group "oxidized" mode "400" -- 2.39.5