summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2005-05-09 23:48:17 +1000
committerDarren Tucker <dtucker@zip.com.au>2005-05-09 23:48:17 +1000
commitfa2211d93d3ad66ec16e4d23a14e5730a105c559 (patch)
tree2876fb36491a69f22e64d3955fa0035a90f835ef
parent4f10e25684fdbe00b9e563b510e03f9c2aa7a192 (diff)
downloadopenssh-git-fa2211d93d3ad66ec16e4d23a14e5730a105c559.tar.gz
- (dtucker) [contrib/cygwin/ssh-host-config] Add a test and warning for a
user-mode mounts in Cygwin installation. Patch from vinschen at redhat.com.
-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 bee07796..a8443529 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+20050509
+ - (dtucker) [contrib/cygwin/ssh-host-config] Add a test and warning for a
+ user-mode mounts in Cygwin installation. Patch from vinschen at redhat.com.
+
20050504
- (djm) [ssh.c] some systems return EADDRINUSE on a bind to an already-used
unix domain socket, so catch that too; from jakob@ ok dtucker@
@@ -2474,4 +2478,4 @@
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
-$Id: ChangeLog,v 1.3753 2005/05/04 05:33:09 djm Exp $
+$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 b41a2e49..fbfb5c19 100644
--- a/contrib/cygwin/ssh-host-config
+++ b/contrib/cygwin/ssh-host-config
@@ -583,6 +583,16 @@ then
chown "${_user}".544 ${LOCALSTATEDIR}/log/sshd.log
fi
fi
+ if ! ( mount | egrep -q 'on /(|usr/(bin|lib)) type system' )
+ then
+ echo
+ echo "Warning: It appears that you have user mode mounts (\"Just me\""
+ echo "chosen during install.) Any daemons installed as services will"
+ echo "fail to function unless system mounts are used. To change this,"
+ echo "re-run setup.exe and choose \"All users\"."
+ echo
+ echo "For more information, see http://cygwin.com/faq/faq0.html#TOC33"
+ fi
fi
fi