From fc880b39c021ea5c9ca53a57f25f4dc54a540ab9 Mon Sep 17 00:00:00 2001 From: Johan Meiring Date: Tue, 2 May 2017 21:04:01 +0200 Subject: [PATCH] Update README --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index ec7024b..596ad72 100644 --- a/README.md +++ b/README.md @@ -27,6 +27,7 @@ The following role variables are relevant: * Values can be plain strings, or dictionaries containing `name` and (optionally) `mode` key/value pairs. * `sftp_allow_passwords`: Whether or not to allow password authentication for SFTP. Defaults to False. * `sftp_enable_selinux_support`: Whether or not to explicitly enable SELinux support. Defaults to False. +* `sftp_enable_logging`: Enable logging. Auth logs will be written to `/var/log/sftp/auth.log`, and SFTP activity logs will be written to `/var/log/sftp/verbose.log`. Defaults to False. * `sftp_users`: A list of users, in map form, containing the following elements: * `name`: The Unix name of the user that requires SFTP access. * `password`: A password hash for the user to login with. Blank passwords can be set with `password: ""`. NOTE: It appears that `UsePAM yes` and `PermitEmptyPassword yes` need to be set in `sshd_config` in order for blank passwords to work properly. Making those changes currently falls outside the scope of this role and will need to be done externally.