From c789793e142f9a5bc181c36e0b9241b5e219e74c Mon Sep 17 00:00:00 2001
From: Mark Huang <mlhuang@cs.princeton.edu>
Date: Thu, 18 Jan 2007 22:09:14 +0000
Subject: [PATCH] /etc/init.d/postgresql fails if it is not running

---
 plc.d/postgresql | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/plc.d/postgresql b/plc.d/postgresql
index bd5ca7a..d2dbda3 100755
--- a/plc.d/postgresql
+++ b/plc.d/postgresql
@@ -7,7 +7,7 @@
 # Mark Huang <mlhuang@cs.princeton.edu>
 # Copyright (C) 2006 The Trustees of Princeton University
 #
-# $Id: postgresql,v 1.6 2006/10/27 20:29:20 mlhuang Exp $
+# $Id: postgresql,v 1.7 2006/11/16 18:50:32 mlhuang Exp $
 #
 
 # Source function library and configuration
@@ -147,7 +147,9 @@ case "$1" in
 
 	# Shut down the server
 	service postgresql stop
-	check
+
+	# /etc/init.d/postgresql fails if it is not running
+	[ "$PLC_DB_ENABLED" = 1 ] && check
 
 	result "$MESSAGE"
 	;;
-- 
2.47.0