0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

nixos/hadoop: disable openFirewall by default

This commit is contained in:
illustris 2022-01-08 16:19:15 +05:30
parent f6cf1ced33
commit 0f97c9ae82
5 changed files with 56 additions and 16 deletions

View file

@ -21,7 +21,7 @@ in
inherit restartIfChanged;
openFirewall = mkOption {
type = types.bool;
default = true;
default = false;
description = ''
Open firewall ports for resourcemanager
'';
@ -39,7 +39,7 @@ in
};
openFirewall = mkOption {
type = types.bool;
default = true;
default = false;
description = ''
Open firewall ports for nodemanager.
Because containers can listen on any ephemeral port, TCP ports 102465535 will be opened.