search for: _sys

Displaying 5 results from an estimated 5 matches for "_sys".

Did you mean: s_sys
2005 Apr 15
0
Multi-user databases (DOS application) in WIndows XP and Windows 2k file locking problem
...o hosts allow = 192.168.0., 192.168.5., 192.168.7., 192.168.3., 127. csc policy = disable oplocks = No level2 oplocks = No wide links = No follow symlinks = No dos filemode = Yes dos filetimes = Yes dos filetime resolution = Yes [sys] comment = System volume path = /mnt/raid1/wingz/sys/__sys read only = No create mask = 0770 directory mask = 0770 guest ok = Yes And here is output of smbstatus for some NTX'es and DBF's: this files on the Windows 98 station: 27783 DENY_NONE 0x3 RDWR NONE /mnt/raid1/wingz/sys/__sys/_INFOBUH/2005/ZPL/UVOLNNL.NTX Fr...
2002 Jul 03
1
[PATCH]: Change Cygwin contrib files to better support PrivSep
...:29:16 -0000 @@ -18,6 +18,11 @@ progname=$0 auto_answer="" port_number=22 +privsep_configured=no +privsep_used=yes +sshd_in_passwd=no +sshd_in_sam=no + request() { if [ "${auto_answer}" = "yes" ] @@ -90,6 +95,10 @@ do esac done +# Check if running on NT +_sys="`uname -a`" +_nt=`expr "$_sys" : "CYGWIN_NT"` + # Check for running ssh/sshd processes first. Refuse to do anything while # some ssh processes are still running @@ -126,6 +135,38 @@ then fi fi +# Create /var/log and /var/log/lastlog if not already existing +...
2003 Nov 05
0
[PATCH] contrip/cygwin: Reworking the installation support
...ment var." + echo " --port -p <n> sshd listens on port n." + echo " --pwd -w <passwd> Use \"pwd\" as password for user 'sshd_server'." echo exit 1 ;; @@ -96,8 +107,13 @@ do done # Check if running on NT -_sys="`uname -a`" -_nt=`expr "$_sys" : "CYGWIN_NT"` +_sys="`uname`" +_nt=`expr "${_sys}" : "CYGWIN_NT"` +# If running on NT, check if running under 2003 Server or later +if [ ${_nt} -gt 0 ] +then + _nt2003=`uname | awk -F- '{print ( $2 &gt...
2001 Mar 07
4
[PATCH]: contrib/cygwin/ssh-host-config
...@@ -278,7 +290,7 @@ then cat > ${SYSCONFDIR}/sshd_config << EOF # This is ssh server systemwide configuration file. -Port 22 +Port $port_number # Protocol 2,1 ListenAddress 0.0.0.0 @@ -330,7 +342,7 @@ UseLogin no EOF fi -# Add port 22/tcp to services +# Care for services file _sys="`uname -a`" _nt=`expr "$_sys" : "CYGWIN_NT"` if [ $_nt -gt 0 ] @@ -344,33 +356,86 @@ fi _services=`cygpath -u "${_wservices}"` _serv_tmp=`cygpath -u "${_wserv_tmp}"` -mount -b -f "${_wservices}" "${_services}" -mount -b -f...
2001 Jan 18
1
New configuration scripts for Cygwin
...o install for logon to different user accounts change to "yes" here PasswordAuthentication no PermitEmptyPasswords no CheckMail no UseLogin no #Uncomment if you want to enable sftp #Subsystem sftp /usr/sbin/sftp-server #MaxStartups 10:30:60 EOF fi # Add port 22/tcp to services _sys="`uname -a`" _nt=`expr "$_sys" : "CYGWIN_NT"` if [ $_nt -gt 0 ] then _wservices="${SYSTEMROOT}\\system32\\drivers\\etc\\services" _wserv_tmp="${SYSTEMROOT}\\system32\\drivers\\etc\\srv.out.$$" else _wservices="${WINDIR}\\SERVICES"...