postgresql: Update setup-disks to use `service postgresql`.

Using `service postgresql` makes it no longer linked to the specific
version/cluster that is on the host.
This commit is contained in:
Alex Vandiver 2020-05-29 16:12:20 -07:00 committed by Tim Abbott
parent 4e370cda75
commit b33aa8da7f
1 changed files with 2 additions and 4 deletions

View File

@ -7,10 +7,8 @@ mkfs.xfs $LOCALDISK
echo "$LOCALDISK /srv xfs nofail,noatime 1 1" >> /etc/fstab
mount /srv
# TODO use systemctl instead of pg_ctlcluster on CentOS
pg_ctlcluster 9.5 main stop
service postgresql stop
mv /var/lib/postgresql /srv
ln -s /srv/postgresql/ /var/lib
# TODO use systemctl instead of pg_ctlcluster on CentOS
pg_ctlcluster 9.5 main start
service postgresql start