Unverified Commit f45bee3f authored by Pol Dellaiera's avatar Pol Dellaiera Committed by GitHub
Browse files

Merge pull request #237003 from pacien/ddclient-remove-ipv6-opt

nixos/ddclient: remove obsolete ipv6 option
parents afa8ae28 76cabe16
Loading
Loading
Loading
Loading
+1 −10
Original line number Diff line number Diff line
@@ -20,7 +20,6 @@ let
    ${lib.optionalString (cfg.zone != "")   "zone=${cfg.zone}"}
    ssl=${boolToStr cfg.ssl}
    wildcard=YES
    ipv6=${boolToStr cfg.ipv6}
    quiet=${boolToStr cfg.quiet}
    verbose=${boolToStr cfg.verbose}
    ${cfg.extraConfig}
@@ -52,6 +51,7 @@ with lib;
        in if value != "" then [ value ] else []))
    (mkRemovedOptionModule [ "services" "ddclient" "homeDir" ] "")
    (mkRemovedOptionModule [ "services" "ddclient" "password" ] "Use services.ddclient.passwordFile instead.")
    (mkRemovedOptionModule [ "services" "ddclient" "ipv6" ] "")
  ];

  ###### interface
@@ -146,15 +146,6 @@ with lib;
        '';
      };

      ipv6 = mkOption {
        default = false;
        type = bool;
        description = lib.mdDoc ''
          Whether to use IPv6.
        '';
      };


      quiet = mkOption {
        default = false;
        type = bool;