From b29bc8d41c2b2e4013fe7528cc8db9ee38847d8c Mon Sep 17 00:00:00 2001 From: Michael Walker Date: Sun, 19 Mar 2017 01:52:06 +0000 Subject: [PATCH] vsftpd: Expose the no_anon_password flag. --- nixos/modules/services/networking/vsftpd.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nixos/modules/services/networking/vsftpd.nix b/nixos/modules/services/networking/vsftpd.nix index deff645d9bfd..6b3d658bd852 100644 --- a/nixos/modules/services/networking/vsftpd.nix +++ b/nixos/modules/services/networking/vsftpd.nix @@ -37,6 +37,9 @@ let (yesNoOption "anonymousUser" "anonymous_enable" false '' Whether to enable the anonymous FTP user. '') + (yesNoOption "anonymousUserNoPassword" "no_anon_password" false '' + Whether to disable the password for the anonymous FTP user. + '') (yesNoOption "localUsers" "local_enable" false '' Whether to enable FTP for local users. '')