| www.delorie.com/archives/browse.cgi | search |
| X-Recipient: | archive-cygwin AT delorie DOT com |
| X-SWARE-Spam-Status: | No, hits=-0.8 required=5.0 tests=AWL,BAYES_00,SARE_MSGID_LONG40,SPF_PASS |
| X-Spam-Check-By: | sourceware.org |
| MIME-Version: | 1.0 |
| Date: | Tue, 18 Aug 2009 17:05:40 +0800 |
| Message-ID: | <f4d6f44b0908180205t333f9f25la723bb550d522382@mail.gmail.com> |
| Subject: | PostgerSQL startup script bug |
| From: | Huang Bambo <bambo DOT huang AT gmail DOT com> |
| To: | The Cygwin Mailing List <cygwin AT cygwin DOT com> |
| X-IsSubscribed: | yes |
| Mailing-List: | contact cygwin-help AT cygwin DOT com; run by ezmlm |
| List-Id: | <cygwin.cygwin.com> |
| List-Subscribe: | <mailto:cygwin-subscribe AT cygwin DOT com> |
| List-Archive: | <http://sourceware.org/ml/cygwin/> |
| List-Post: | <mailto:cygwin AT cygwin DOT com> |
| List-Help: | <mailto:cygwin-help AT cygwin DOT com>, <http://sourceware.org/ml/#faqs> |
| Sender: | cygwin-owner AT cygwin DOT com |
| Mail-Followup-To: | cygwin AT cygwin DOT com |
| Delivered-To: | mailing list cygwin AT cygwin DOT com |
The cygwin 1.7 don't need =93server=94 tag in CYGWIN environment but the
start up of postgresql 8.2.11 checked this tag.
code:
131 check_cygserver() {
132 # Check for running cygserver processes first.
133 if ps -ef | grep -v grep | grep -q cygserver
134 then
135 echo -n "- cygserver OK - "
136 # echo "OK cygserver running"
137 else
138 echo "ERROR cygserver must be started"
139 echo cygrunsrv -S cygserver
140 exit 1
141 fi
142 # check for CYGWIN containing server
143 if [ -n "${CYGWIN%server}" ]
144 then
145 echo "ERROR CYGWIN must contain server for cygserver to work proper=
ly"
146 exit 1
147 fi
148 }
149
from 142 to 147 is not needed in cygwin 1.7
--
Problem reports: http://cygwin.com/problems.html
FAQ: http://cygwin.com/faq/
Documentation: http://cygwin.com/docs.html
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
| webmaster | delorie software privacy |
| Copyright © 2019 by DJ Delorie | Updated Jul 2019 |