From a3628fc49db4d88ff3e4067268650710d1da3f6f Mon Sep 17 00:00:00 2001 From: Silvino Silva Date: Fri, 12 Feb 2021 03:59:34 +0000 Subject: initial openbsd support --- linux/conf/rc.d/postgresql | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 linux/conf/rc.d/postgresql (limited to 'linux/conf/rc.d/postgresql') diff --git a/linux/conf/rc.d/postgresql b/linux/conf/rc.d/postgresql new file mode 100755 index 0000000..5f0762a --- /dev/null +++ b/linux/conf/rc.d/postgresql @@ -0,0 +1,16 @@ +# +# /etc/rc.d/postgresql: start, stop or restart PostgreSQL server postmaster +# + +PG_DATA=/srv/pgsql/data + +case "$1" in + start|stop|status|restart|reload) + sudo -u postgres pg_ctl -D "$PG_DATA" -l /var/log/postgresql "$1" + ;; + *) + echo "usage: $0 start|stop|restart|reload|status" + ;; +esac + +# End of file -- cgit 1.4.1-2-gfad0