nixos-module/container/dns: allow underscores in dynamic hostnames

このコミットが含まれているのは:
Astro 2021-05-06 15:46:16 +02:00
コミット 8bc0ce6e15
1個のファイルの変更5行の追加0行の削除

ファイルの表示

@ -324,6 +324,11 @@ in
algorithm hmac-sha256;
secret "${inputs.zentralwerk-network-key.lib.dyndnsKey}";
};
# allow underscores in dynamic hostnames
${lib.concatMapStringsSep "\n" (type: ''
check-names ${type} ignore;
'') [ "master" "slave" "response" ]}
'';
});