This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
description "PostgreSQL 9.1 Server" | |
author "PostgreSQL" | |
start on runlevel [2345] | |
stop on runlevel [016] | |
respawn | |
pre-start script | |
if [ -d /var/run/postgresql ]; then | |
chmod 2775 /var/run/postgresql | |
else | |
install -d -m 2775 -o postgres -g postgres /var/run/postgresql | |
fi | |
end script | |
exec su -c "/usr/lib/postgresql/9.1/bin/postgres -D /var/lib/postgresql/9.1/main -c config_file=/etc/postgresql/9.1/main/postgresql.conf" postgres |
You read my mind! Thanks for posting this.
ReplyDeleteNice, I was looking for this. Only it does not stops postgres properly.
ReplyDeleteHi,
ReplyDeleteThis scripts doesn't work properly and it might even be dangerous to your db(it's doing hard shutdown every time)
this one seems to works much better
https://gist.github.com/haad/6020401
only the exec statement is commented out.
ReplyDeletethat one does not actually use the exec statement at all, it starts and stops in the pre and post tasks inside the looks. HOWEVER, it does not appear to work well around restarting a service that has died.
Delete