We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63ddd30 commit 09335c8Copy full SHA for 09335c8
CHANGELOG.md
@@ -14,6 +14,7 @@ All notable changes to this project will be documented in this file.
14
- Enable hsts and force ssl on v-add-letsencrypt-host.
15
- Prevent login action for webmail in list user view.
16
- Remove hardcoded mail in helo data (cosmetic fix).
17
+- Fix sftp server validation check, thanks to @dbannik!
18
19
## [1.0.4] - 2019-07-09 - Hotfix
20
### Bugfixes
bin/v-add-backup-host
@@ -38,8 +38,7 @@ EOF
38
sftpc() {
39
expect -f "-" <<EOF "$@"
40
set count 0
41
- spawn "/usr/bin/sftp -o StrictHostKeyChecking=no -o \
42
- Port=$port '$user@$host'"
+ spawn /usr/bin/sftp -o StrictHostKeyChecking=no -o Port=$port $user@$host
43
expect {
44
"password:" {
45
send "$password\r"
0 commit comments