Re: [pgsql-hackers-win32] Service startup delay
От | Dave Page |
---|---|
Тема | Re: [pgsql-hackers-win32] Service startup delay |
Дата | |
Msg-id | E7F85A1B5FF8D44C8A1AF6885BC9A0E41A78D9@ratbert.vale-housing.co.uk обсуждение исходный текст |
Ответы |
Re: [pgsql-hackers-win32] Service startup delay
|
Список | pgsql-patches |
> -----Original Message----- > From: Bruce Momjian [mailto:pgman@candle.pha.pa.us] > Sent: 26 August 2004 02:44 > To: Max Dunn > Cc: Dave Page; 'Barry Lind'; pgsql-hackers-win32@postgresql.org > Subject: Re: [pgsql-hackers-win32] Service startup delay > > > Another issue is that when installing the Postgres service with > > "pg_ctl register -w ...." the "-w" parameter was not put in > the registry "ImagePath" > > value for the Postgres service. (I added it manually to test.) So I > > suspect that "pg_ctl register" will need to be enhanced to add the > > "-w" parameter to the registry settings. > > Would a Win32 guy look at this? No problem. Regards, Dave. =================================================================== RCS file: /projects/cvsroot/pgsql-server/src/bin/pg_ctl/pg_ctl.c,v retrieving revision 1.25 diff -u -r1.25 pg_ctl.c --- pg_ctl.c 21 Aug 2004 03:12:55 -0000 1.25 +++ pg_ctl.c 26 Aug 2004 14:37:13 -0000 @@ -832,6 +832,9 @@ strcat(cmdLine,"\""); } + if (do_wait) + strcat(cmdLine, " -w"); + if (post_opts) { strcat(cmdLine," "); @@ -1038,7 +1041,7 @@ printf(_(" %s status [-D DATADIR]\n"), progname); printf(_(" %s kill SIGNALNAME PROCESSID\n"), progname); #ifdef WIN32 - printf(_(" %s register [-N servicename] [-U username] [-P password] [-D DATADIR] [-o \"OPTIONS\"]\n"), progname); + printf(_(" %s register [-N servicename] [-U username] [-P password] [-D DATADIR] [-w] [-o \"OPTIONS\"]\n"), progname); printf(_(" %s unregister [-N servicename]\n"), progname); #endif printf(_("Common options:\n"));
В списке pgsql-patches по дате отправления: