X-Original-To: pgsql-docs-postgresql.org@localhost.postgresql.org Received: from localhost (unknown [200.46.204.2]) by svr1.postgresql.org (Postfix) with ESMTP id 75307D1B55E for ; Thu, 16 Oct 2003 17:38:17 +0000 (GMT) Received: from svr1.postgresql.org ([200.46.204.71]) by localhost (neptune.hub.org [200.46.204.2]) (amavisd-new, port 10024) with ESMTP id 50198-09 for ; Thu, 16 Oct 2003 14:37:47 -0300 (ADT) Received: from candle.pha.pa.us (momjian.navpoint.com [207.106.42.251]) by svr1.postgresql.org (Postfix) with ESMTP id 1A0D5D1B508 for ; Thu, 16 Oct 2003 14:37:45 -0300 (ADT) Received: (from pgman@localhost) by candle.pha.pa.us (8.11.6/8.11.6) id h9GHbjY21072 for pgsql-docs@postgresql.org; Thu, 16 Oct 2003 13:37:45 -0400 (EDT) From: Bruce Momjian Message-Id: <200310161737.h9GHbjY21072@candle.pha.pa.us> Subject: Missing documention on SIGHUP To: PostgreSQL-documentation Date: Thu, 16 Oct 2003 13:37:45 -0400 (EDT) X-Mailer: ELM [version 2.4ME+ PL106 (25)] MIME-Version: 1.0 Content-Type: multipart/mixed; boundary=ELM1066325865-8740-0_ Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at postgresql.org X-Archive-Number: 200310/23 X-Sequence-Number: 2043 --ELM1066325865-8740-0_ Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII I see there is no mention of SIGHUP in the postmaster manual page. It is mentioned in the postgres manual page, though. This patch adds the mention. -- Bruce Momjian | http://candle.pha.pa.us pgman@candle.pha.pa.us | (610) 359-1001 + If your life is a hard drive, | 13 Roberts Road + Christ can be your backup. | Newtown Square, Pennsylvania 19073 --ELM1066325865-8740-0_ Content-Transfer-Encoding: 7bit Content-Type: text/plain Content-Disposition: inline; filename="/bjm/diff" Index: doc/src/sgml/ref/postgres-ref.sgml =================================================================== RCS file: /cvsroot/pgsql-server/doc/src/sgml/ref/postgres-ref.sgml,v retrieving revision 1.37 diff -c -c -r1.37 postgres-ref.sgml *** doc/src/sgml/ref/postgres-ref.sgml 24 Sep 2003 18:54:01 -0000 1.37 --- doc/src/sgml/ref/postgres-ref.sgml 16 Oct 2003 17:30:52 -0000 *************** *** 370,381 **** ! To tell postgres to reread the configuration file, send a SIGHUP signal. Normally it's best to SIGHUP the postmaster instead; the postmaster will in turn SIGHUP each of its children. But in some cases it might be desirable to have only ! one postgres process reread the configuration file. --- 370,381 ---- ! To tell postgres to reload the configuration files, send a SIGHUP signal. Normally it's best to SIGHUP the postmaster instead; the postmaster will in turn SIGHUP each of its children. But in some cases it might be desirable to have only ! one postgres process reload the configuration files. Index: doc/src/sgml/ref/postmaster.sgml =================================================================== RCS file: /cvsroot/pgsql-server/doc/src/sgml/ref/postmaster.sgml,v retrieving revision 1.40 diff -c -c -r1.40 postmaster.sgml *** doc/src/sgml/ref/postmaster.sgml 18 Sep 2003 20:30:15 -0000 1.40 --- doc/src/sgml/ref/postmaster.sgml 16 Oct 2003 17:30:52 -0000 *************** *** 487,493 **** all clients to terminate before quitting, the second will forcefully disconnect all clients, and the third will quit immediately without proper shutdown, resulting in a recovery run ! during restart. --- 487,494 ---- all clients to terminate before quitting, the second will forcefully disconnect all clients, and the third will quit immediately without proper shutdown, resulting in a recovery run ! during restart. The SIGHUP signal will ! reload the server configuration files. --ELM1066325865-8740-0_--