Files
zulip/puppet/zulip_ops/files/postgresql/setup_disks.sh
Alex Vandiver b33aa8da7f 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.
2020-05-30 12:14:24 -07:00

15 lines
244 B
Bash
Executable File

#!/bin/sh
LOCALDISK=/dev/nvme0n1
mkfs.xfs $LOCALDISK
echo "$LOCALDISK /srv xfs nofail,noatime 1 1" >> /etc/fstab
mount /srv
service postgresql stop
mv /var/lib/postgresql /srv
ln -s /srv/postgresql/ /var/lib
service postgresql start