diff options
author | Hans Nilsson <[email protected]> | 2013-11-08 12:10:57 +0100 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2013-11-19 14:39:34 +0100 |
commit | 0ec450535d350a8ccaf10cbe660d2c36c1ed85f0 (patch) | |
tree | 12a43eb3bf65f3a6139a09dff0e64bba93ddf231 /lib/inets/test/ftp_SUITE_data | |
parent | 66164ddcf85071e469c86c0f11912b6a1e2c9c47 (diff) | |
download | otp-0ec450535d350a8ccaf10cbe660d2c36c1ed85f0.tar.gz otp-0ec450535d350a8ccaf10cbe660d2c36c1ed85f0.tar.bz2 otp-0ec450535d350a8ccaf10cbe660d2c36c1ed85f0.zip |
ftp: old ftp_SUITE re-written and works
Diffstat (limited to 'lib/inets/test/ftp_SUITE_data')
-rw-r--r-- | lib/inets/test/ftp_SUITE_data/vsftpd.conf | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/lib/inets/test/ftp_SUITE_data/vsftpd.conf b/lib/inets/test/ftp_SUITE_data/vsftpd.conf index 4763e439a4..a7b260282c 100644 --- a/lib/inets/test/ftp_SUITE_data/vsftpd.conf +++ b/lib/inets/test/ftp_SUITE_data/vsftpd.conf @@ -1,9 +1,18 @@ + listen=YES listen_port=9999 run_as_launching_user=YES #ssl_enable=YES #allow_anon_ssl=YES background=YES + +write_enable=YES anonymous_enable=YES +anon_upload_enable=YES +anon_mkdir_write_enable=YES +anon_other_write_enable=YES +anon_world_readable_only=NO + #rsa_cert_file=cert.pem -#rsa_key_file=key.pem
\ No newline at end of file +#rsa_key_file=key.pem + |