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

This commit is contained in:
Astro 2021-05-06 15:46:16 +02:00
부모 3e2d8ef2fc
커밋 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" ]}
'';
});