tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
vsftpd: Expose the no_anon_password flag.
Michael Walker
9 years ago
b29bc8d4
203e8fa2
+3
1 changed file
expand all
collapse all
unified
split
nixos
modules
services
networking
vsftpd.nix
+3
nixos/modules/services/networking/vsftpd.nix
···
37
(yesNoOption "anonymousUser" "anonymous_enable" false ''
38
Whether to enable the anonymous FTP user.
39
'')
0
0
0
40
(yesNoOption "localUsers" "local_enable" false ''
41
Whether to enable FTP for local users.
42
'')
···
37
(yesNoOption "anonymousUser" "anonymous_enable" false ''
38
Whether to enable the anonymous FTP user.
39
'')
40
+
(yesNoOption "anonymousUserNoPassword" "no_anon_password" false ''
41
+
Whether to disable the password for the anonymous FTP user.
42
+
'')
43
(yesNoOption "localUsers" "local_enable" false ''
44
Whether to enable FTP for local users.
45
'')