I'm in the process of installing postgresql onto a second server
Previously I installed postgresql and then used the supplied script
./contrib/start-scripts/linux
Placed into the correct dir
# cp ./contrib/start-scripts/linux /etc/rc.d/init.d/postgresql92 # chmod 755 /etc/rc.d/init.d/postgresql92
Which I could then execute as expected with
# service postgresql92 start
However the new machine is using Systemd and it looks like there is a completely different way to do this
I don't want to hack at this and ruin something so I was wondering if anyone out there could point me in the right direction of how to achieve the same result