From f88aa227068da5d9db62fea0c0e0d8fe5f14c364 Mon Sep 17 00:00:00 2001
From: Michael Raskin <7c6f434c@mail.ru>
Date: Sun, 20 Oct 2013 21:16:12 +0400
Subject: [PATCH] Allow non-SSL connections to vsftpd by default to let tests
not specify certificate
---
nixos/modules/services/networking/vsftpd.nix | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/nixos/modules/services/networking/vsftpd.nix b/nixos/modules/services/networking/vsftpd.nix
index 088dbc859ec..d9f1e96b1d2 100644
--- a/nixos/modules/services/networking/vsftpd.nix
+++ b/nixos/modules/services/networking/vsftpd.nix
@@ -60,11 +60,11 @@ let
names to allow or deny access.
The default false means whitelist/allow.
'')
- (yesNoOption "forceLocalLoginsSSL" "force_local_logins_ssl" true ''
+ (yesNoOption "forceLocalLoginsSSL" "force_local_logins_ssl" false ''
Only applies if is true. Non anonymous (local) users
must use a secure SSL connection to send a password.
'')
- (yesNoOption "forceLocalDataSSL" "force_local_data_ssl" true ''
+ (yesNoOption "forceLocalDataSSL" "force_local_data_ssl" false ''
Only applies if is true. Non anonymous (local) users
must use a secure SSL connection for sending/receiving data on data connection.
'')