diff options
author | makefu <github@syntax-fehler.de> | 2022-01-03 00:47:03 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2022-01-03 00:47:03 +0100 |
commit | 057adcb836ec7deedf0a0b2dd7f7dc7206c3f740 (patch) | |
tree | c3b58aaef82243c70c44931b4f111492204788bb /krebs | |
parent | a5c6d13e66d51f4794e5f4dfcbe3ab1b0ced8313 (diff) |
k 3 ma: removing trace output for ed25519 keys
Diffstat (limited to 'krebs')
-rw-r--r-- | krebs/3modules/makefu/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/krebs/3modules/makefu/default.nix b/krebs/3modules/makefu/default.nix index 51c38b899..62316bfdb 100644 --- a/krebs/3modules/makefu/default.nix +++ b/krebs/3modules/makefu/default.nix @@ -26,7 +26,7 @@ with import <stockholm/lib>; (let pubkey-path = ./retiolum + "/${hostName}_ed25519.pub"; in optionalAttrs (pathExists pubkey-path) { - nets.retiolum.tinc.pubkey_ed25519 = builtins.trace "using ed25519 key for host ${hostName}" (readFile pubkey-path); + nets.retiolum.tinc.pubkey_ed25519 = readFile pubkey-path; }) # Wiregrill defaults (let |