Displaying 2 results from an estimated 2 matches for "csih_error".
Did you mean:
cli_error
2008 Nov 07
2
[PATCH/cygwin] Fix cygwin specific Makefile and a bug in the ssh-host-config script
...ygwin/ssh-host-config 7 Nov 2008 10:49:30 -0000
@@ -456,7 +456,7 @@ done
# Check for running ssh/sshd processes first. Refuse to do anything while
# some ssh processes are still running
-if ps -ef | grep -v grep | grep -q ssh
+if ps -ef | grep -v grep | grep -q 'sshd*$'
then
echo
csih_error "There are still ssh processes running. Please shut them down first."
--
Corinna Vinschen
Cygwin Project Co-Leader
Red Hat
2011 Feb 21
1
[PATCH/cygwin]: Revised sshh-host-config script
..._create_unprivileged_user sshd
- then
- csih_warning "Couldn't create user 'sshd'!"
- csih_warning "Privilege separation set to 'no' again!"
- csih_warning "Check your ${SYSCONFDIR}/sshd_config file!"
- privsep_used=no
- fi
- else
+ csih_error_recoverable "Couldn't create user 'sshd'!"
+ csih_error_recoverable "Privilege separation set to 'no' again!"
+ csih_error_recoverable "Check your ${SYSCONFDIR}/sshd_config file!"
+ let ++ret
privsep_used=no
fi
else
- # On 9x don&...