Adrian Dvergsdal

Results 22 comments of Adrian Dvergsdal

Looking good, I will have a closer look at it soon! I may have to improve tests as well.

I want to limit the number of branches that I have to maintain. If hub.docker.com does not support automated builds for ARM and there is just one line difference from...

Still busy at the moment. If someone has the time, suggestions for build instructions/script (or something else) would be appreciated.

Please provide any configuration files (docker-compose.yml etc.) with relevant parts. Also do a `ls -l` of all files so we can see file permissions as well. Also try to generate...

Tests are now using host keys (f735906) and it's working in both debian and alpine: https://github.com/atmoz/sftp/runs/1005016889?check_suite_focus=true#step:9:1 So there must be something related to your setup that is different. Which operating...

Seems to be related to newer OpenSSH version has changed format outputted by `ssh-keygen`: https://www.openssh.com/txt/release-7.8 ``` * ssh-keygen(1): write OpenSSH format private keys by default instead of using OpenSSL's PEM...

`~/.ssh/authorized_keys` (`userKeysAllowedFile`) is in fact overwritten each time: https://github.com/atmoz/sftp/blob/302390e67cdd589702f887ddbf0ea7b2d9a877aa/files/create-sftp-user#L94 because `userKeysAllowedFileTmp` is always a new file: https://github.com/atmoz/sftp/blob/302390e67cdd589702f887ddbf0ea7b2d9a877aa/files/create-sftp-user#L86 Do you create a new container each time or just restart?

The problem is that `internal-sftp` is spawned as a child process and do not respect the `-e` argument given to `sshd` to send logs to stderr (`internal-sftp` also support `-e`,...

Just that it's more complexity and processes running. Haven't had the time to look more into this, yet. BTW, what is the use case for this?

From the authorized_keys man page: https://manpages.debian.org/experimental/openssh-server/authorized_keys.5.en.html#AUTHORIZED_KEYS_FILE_FORMAT > Each line of the file contains one key (empty lines and lines starting with a ‘#’ are ignored as comments). We sort the...