diff options
author | Magnus Hagander <magnus@hagander.net> | 2011-06-09 18:18:45 +0200 |
---|---|---|
committer | Magnus Hagander <magnus@hagander.net> | 2011-06-09 18:24:59 +0200 |
commit | 7e6ec04d964b03e836c3c19b5601e889b6634f05 (patch) | |
tree | fcad479227995d9ec8ace3693d7494590707f8cf /src | |
parent | 1710752a50a37c965c964e362635d9ba3a333dcf (diff) | |
download | postgresql-7e6ec04d964b03e836c3c19b5601e889b6634f05.tar.gz postgresql-7e6ec04d964b03e836c3c19b5601e889b6634f05.zip |
Support silent mode for service registrations on win32
Using -s when registering a service will now suppress
the application eventlog entries stating that the service
is starting and started.
MauMau
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_ctl/pg_ctl.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/bin/pg_ctl/pg_ctl.c b/src/bin/pg_ctl/pg_ctl.c index e203c1299d0..78f4cd3e54f 100644 --- a/src/bin/pg_ctl/pg_ctl.c +++ b/src/bin/pg_ctl/pg_ctl.c @@ -163,6 +163,9 @@ write_eventlog(int level, const char *line) { static HANDLE evtHandle = INVALID_HANDLE_VALUE; + if (silent_mode && level == EVENTLOG_INFORMATION_TYPE) + return; + if (evtHandle == INVALID_HANDLE_VALUE) { evtHandle = RegisterEventSource(NULL, "PostgreSQL"); @@ -1276,6 +1279,9 @@ pgwin32_CommandLine(bool registration) /* concatenate */ sprintf(cmdLine + strlen(cmdLine), " -t %d", wait_seconds); + if (registration && silent_mode) + strcat(cmdLine, " -s"); + if (post_opts) { strcat(cmdLine, " "); |