From 7a245bfe76125e32bb26f63893ee9f9fb0fa3ce2 Mon Sep 17 00:00:00 2001 From: Fujii Masao Date: Wed, 1 Apr 2015 02:10:24 +0900 Subject: [PATCH] Make pg_ctl use SIGINT as a default shutdown signal. The commit 0badb06 changed the default shutdown mode from smart to fast, but forgot to change the default shutdown signal from SIGTERM to SIGINT. --- src/bin/pg_ctl/pg_ctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/pg_ctl/pg_ctl.c b/src/bin/pg_ctl/pg_ctl.c index ea6db8c26b..80d7bc7ba6 100644 --- a/src/bin/pg_ctl/pg_ctl.c +++ b/src/bin/pg_ctl/pg_ctl.c @@ -80,7 +80,7 @@ static bool wait_set = false; static int wait_seconds = DEFAULT_WAIT; static bool silent_mode = false; static ShutdownMode shutdown_mode = FAST_MODE; -static int sig = SIGTERM; /* default */ +static int sig = SIGINT; /* default */ static CtlCommand ctl_command = NO_COMMAND; static char *pg_data = NULL; static char *pg_config = NULL; -- 2.40.0