diff options
author | punk <punk@libernaut> | 2021-04-29 16:10:16 +0100 |
---|---|---|
committer | punk <punk@libernaut> | 2021-04-29 16:10:16 +0100 |
commit | 5e601f7ee14830ef645ee3d3b1bcdce7450a5ce3 (patch) | |
tree | fd61f912b509c9056e79b9f0ee6b700584c85b57 /tools/conf/etc/rc.d/postgresql | |
parent | 3790c6ecd836d25815f7cb8deef62a77d4f3ac9f (diff) | |
download | doc-5e601f7ee14830ef645ee3d3b1bcdce7450a5ce3.tar.gz |
linux tools configs moved to linux folder
Diffstat (limited to 'tools/conf/etc/rc.d/postgresql')
-rwxr-xr-x | tools/conf/etc/rc.d/postgresql | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/tools/conf/etc/rc.d/postgresql b/tools/conf/etc/rc.d/postgresql deleted file mode 100755 index 5f0762a..0000000 --- a/tools/conf/etc/rc.d/postgresql +++ /dev/null @@ -1,16 +0,0 @@ -# -# /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 |