ifstate: 2.0.0 -> 2.0.1 (#443243)

authored by pyrox.dev and committed by GitHub 971d10cf 5980ef78

+4 -8
+2 -6
nixos/modules/services/networking/ifstate.nix
··· 137 138 cleanupSettings = lib.mkOption { 139 inherit (settingsFormat) type; 140 - default = { 141 - # required by json schema 142 - interfaces = { }; 143 - # https://codeberg.org/liske/ifstate/issues/118 144 - namespaces = { }; 145 - }; 146 description = "Content of IfState's initrd cleanup configuration file. See <https://ifstate.net/2.0/schema/> for details. This configuration gets applied before systemd switches to stage two. The goas is to deconfigurate the whole network in order to prevent access to services, before the firewall is configured. The stage two IfState configuration will start after the firewall is configured."; 147 }; 148 };
··· 137 138 cleanupSettings = lib.mkOption { 139 inherit (settingsFormat) type; 140 + # required by json schema 141 + default.interfaces = { }; 142 description = "Content of IfState's initrd cleanup configuration file. See <https://ifstate.net/2.0/schema/> for details. This configuration gets applied before systemd switches to stage two. The goas is to deconfigurate the whole network in order to prevent access to services, before the firewall is configured. The stage two IfState configuration will start after the firewall is configured."; 143 }; 144 };
+2 -2
pkgs/by-name/if/ifstate/package.nix
··· 14 let 15 self = python3Packages.buildPythonApplication rec { 16 pname = "ifstate"; 17 - version = "2.0.0"; 18 pyproject = true; 19 20 src = fetchFromGitea { ··· 22 owner = "liske"; 23 repo = "ifstate"; 24 tag = version; 25 - hash = "sha256-YxLyiTVLN4nxc2ppqGGnYCGudbdPLSLV8EwDURtpO0U="; 26 }; 27 28 postPatch = ''
··· 14 let 15 self = python3Packages.buildPythonApplication rec { 16 pname = "ifstate"; 17 + version = "2.0.1"; 18 pyproject = true; 19 20 src = fetchFromGitea { ··· 22 owner = "liske"; 23 repo = "ifstate"; 24 tag = version; 25 + hash = "sha256-QxjziDlkbTxAVd3qA8u4+JT8NWJxBMVAp7G5Zma9d10="; 26 }; 27 28 postPatch = ''