mirror of
https://git.freebsd.org/ports.git
synced 2025-06-08 22:30:38 -04:00
- Move the generation of the host key (if not present) from the package/ port installation to the startup script in order to be in line with what the base OpenSSH and the OpenSSH-portable port do. - Flush stdout when updating the transfer progress bar of sftp2 and scp2 so the info displayed is up to date. [1] - Remove obsolete USE_REINPLACE, remove trailing white space in Makefile. PR: 91262 [1] Approved by: netchild
26 lines
885 B
Text
26 lines
885 B
Text
--- apps/ssh/sshd2_config.orig Wed Dec 3 14:17:28 2003
|
|
+++ apps/ssh/sshd2_config Thu Jan 1 19:33:35 2004
|
|
@@ -22,9 +22,8 @@
|
|
|
|
## Network
|
|
|
|
-# Port is not commented out, as it is needed by the example startup
|
|
-# scripts. Well, the default won't likely change.
|
|
- Port 22
|
|
+# Port is commented out as it is specified by the startup script.
|
|
+# Port 22
|
|
# ListenAddress any
|
|
# ResolveClientHostName yes
|
|
# RequireReverseMapping no
|
|
@@ -188,9 +187,9 @@
|
|
## subsystem definitions
|
|
|
|
# Subsystems don't have defaults, so this is needed here (uncommented).
|
|
- subsystem-sftp sftp-server
|
|
+# subsystem-sftp sftp-server
|
|
# Also internal sftp-server subsystem can be used.
|
|
-# subsystem-sftp internal://sftp-server
|
|
+ subsystem-sftp internal://sftp-server
|
|
|
|
## Subconfiguration
|
|
# There are no default subconfiguration files. When specified the last
|