This is an automated email from the ASF dual-hosted git repository.

jfthomps pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/vcl.git


The following commit(s) were added to refs/heads/develop by this push:
     new eb16528  VCL-1127 - Make changes to handle Cygwin's change of sshd 
service name to cygsshd
eb16528 is described below

commit eb16528f6d76406c5f248e913dbe5b19ada355bc
Author: Josh Thompson <jftho...@ncsu.edu>
AuthorDate: Tue May 12 14:50:47 2020 -0400

    VCL-1127 - Make changes to handle Cygwin's change of sshd service name to 
cygsshd
    
    update_cygwin.cmd: modified line that determines name for ssh service - 
added spaces after '=' for arguments, without the spaces, Windows gives a weird 
1060 error
---
 managementnode/tools/Windows/Scripts/update_cygwin.cmd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/managementnode/tools/Windows/Scripts/update_cygwin.cmd 
b/managementnode/tools/Windows/Scripts/update_cygwin.cmd
index 8c0d093..64d854a 100755
--- a/managementnode/tools/Windows/Scripts/update_cygwin.cmd
+++ b/managementnode/tools/Windows/Scripts/update_cygwin.cmd
@@ -172,7 +172,7 @@ echo.
 
 echo ----------------------------------------------------------------------
 
-sc queryex type=service state=all | findstr "cygsshd" > nul && SET 
sshdservice=cygsshd || SET sshdservice=sshd
+sc queryex type= service state= all | findstr "cygsshd" > nul && SET 
sshdservice=cygsshd || SET sshdservice=sshd
 
 echo %TIME%: Setting sshd service startup mode to auto...
 "%SystemRoot%\System32\sc.exe" config %sshdservice% start= auto 2>&1

Reply via email to