summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--contrib/cygwin/ssh-host-config10
2 files changed, 15 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index bee07796c..a84435296 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
120050509
2 - (dtucker) [contrib/cygwin/ssh-host-config] Add a test and warning for a
3 user-mode mounts in Cygwin installation. Patch from vinschen at redhat.com.
4
120050504 520050504
2 - (djm) [ssh.c] some systems return EADDRINUSE on a bind to an already-used 6 - (djm) [ssh.c] some systems return EADDRINUSE on a bind to an already-used
3 unix domain socket, so catch that too; from jakob@ ok dtucker@ 7 unix domain socket, so catch that too; from jakob@ ok dtucker@
@@ -2474,4 +2478,4 @@
2474 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 2478 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
2475 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 2479 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
2476 2480
2477$Id: ChangeLog,v 1.3753 2005/05/04 05:33:09 djm Exp $ 2481$Id: ChangeLog,v 1.3754 2005/05/09 13:48:17 dtucker Exp $
diff --git a/contrib/cygwin/ssh-host-config b/contrib/cygwin/ssh-host-config
index b41a2e49b..fbfb5c195 100644
--- a/contrib/cygwin/ssh-host-config
+++ b/contrib/cygwin/ssh-host-config
@@ -583,6 +583,16 @@ then
583 chown "${_user}".544 ${LOCALSTATEDIR}/log/sshd.log 583 chown "${_user}".544 ${LOCALSTATEDIR}/log/sshd.log
584 fi 584 fi
585 fi 585 fi
586 if ! ( mount | egrep -q 'on /(|usr/(bin|lib)) type system' )
587 then
588 echo
589 echo "Warning: It appears that you have user mode mounts (\"Just me\""
590 echo "chosen during install.) Any daemons installed as services will"
591 echo "fail to function unless system mounts are used. To change this,"
592 echo "re-run setup.exe and choose \"All users\"."
593 echo
594 echo "For more information, see http://cygwin.com/faq/faq0.html#TOC33"
595 fi
586 fi 596 fi
587fi 597fi
588 598