Unverified Commit 3bbaab61 authored by Marcel's avatar Marcel
Browse files

ifstate: 2.0.0 -> 2.0.1

parent 72f6935a
Loading
Loading
Loading
Loading
+2 −6
Original line number Diff line number Diff line
@@ -137,12 +137,8 @@ in

      cleanupSettings = lib.mkOption {
        inherit (settingsFormat) type;
        default = {
        # required by json schema
          interfaces = { };
          # https://codeberg.org/liske/ifstate/issues/118
          namespaces = { };
        };
        default.interfaces = { };
        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.";
      };
    };
+2 −2
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@
let
  self = python3Packages.buildPythonApplication rec {
    pname = "ifstate";
    version = "2.0.0";
    version = "2.0.1";
    pyproject = true;

    src = fetchFromGitea {
@@ -22,7 +22,7 @@ let
      owner = "liske";
      repo = "ifstate";
      tag = version;
      hash = "sha256-YxLyiTVLN4nxc2ppqGGnYCGudbdPLSLV8EwDURtpO0U=";
      hash = "sha256-QxjziDlkbTxAVd3qA8u4+JT8NWJxBMVAp7G5Zma9d10=";
    };

    postPatch = ''