From 7e6ec04d964b03e836c3c19b5601e889b6634f05 Mon Sep 17 00:00:00 2001 From: Magnus Hagander Date: Thu, 9 Jun 2011 18:18:45 +0200 Subject: [PATCH] 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 --- doc/src/sgml/ref/pg_ctl-ref.sgml | 1 + src/bin/pg_ctl/pg_ctl.c | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/doc/src/sgml/ref/pg_ctl-ref.sgml b/doc/src/sgml/ref/pg_ctl-ref.sgml index ba2646c4c4..10105e2524 100644 --- a/doc/src/sgml/ref/pg_ctl-ref.sgml +++ b/doc/src/sgml/ref/pg_ctl-ref.sgml @@ -117,6 +117,7 @@ PostgreSQL documentation -w -t seconds + -s -o options diff --git a/src/bin/pg_ctl/pg_ctl.c b/src/bin/pg_ctl/pg_ctl.c index e203c1299d..78f4cd3e54 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, " "); -- GitLab