this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(hetzner): quote rulesFile value so its a string and not treated as a command

dusk 836663d9 7ab965e6

+1 -1
+1 -1
firewall/provider/hetzner/default.nix
··· 49 49 in { 50 50 providers.hetzner.firewall.app = pkgs.writers.writeNu "apply-hetzner" '' 51 51 let firewallId = ${toString cfg.id} 52 - let rulesFile = ${firewallRules} 52 + let rulesFile = "${firewallRules}" 53 53 ${l.fileContents ./app.nu} 54 54 ''; 55 55 };