blob: da071164a861023e3a1c1822a7f873f4934c883f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
#!/bin/bash
set -e
## Set the old version that we want to upgrade from.
TO_VERSION=$(pacman -Q postgresql | grep -Po '(?<=postgresql )[0-9]+\.[0-9]')
to_major=${TO_VERSION%%.*}
if (( $to_major != 12 )); then
# NOTE: When this happens you should check the changelog and add any
# necessary changes here. Then bump the version check.
echo "ERROR: major upgrade detected, aborting..."
exit 1
fi
FROM_VERSION="$(cat /var/lib/postgres/data/PG_VERSION)"
if [[ $FROM_VERSION == $TO_VERSION ]]; then
echo "ERROR: from and to versions are equal. Have you already updated?! Aborting..."
exit 1
fi
# free space check
used_space=$(df --local --output=pcent /var/lib/postgres/ | grep -Po '[0-9]{1,3}(?=%)')
if (( $used_space >= 50 )); then
echo "ERROR: not enough free space for upgrade with backup"
echo "hint enter to continue anyways"
read
#exit 2
fi
if [[ -d /var/lib/postgres/data-$FROM_VERSION ]]; then
echo "ERROR: backup data-$FROM_VERSION directory already exists, aborting..."
exit 3
fi
pacman -S --needed postgresql-old-upgrade
chown postgres:postgres /var/lib/postgres/
su - postgres -c "mv /var/lib/postgres/data /var/lib/postgres/data-$FROM_VERSION"
su - postgres -c 'mkdir /var/lib/postgres/data'
su - postgres -c 'chattr -f +C /var/lib/postgres/data' || :
su - postgres -c 'initdb --locale en_US.UTF-8 -E UTF8 -D /var/lib/postgres/data'
vimdiff /var/lib/postgres/{data,data-$FROM_VERSION}/pg_hba.conf
vimdiff /var/lib/postgres/{data,data-$FROM_VERSION}/postgresql.conf
for f in {fullchain,chain,privkey}.pem; do
[[ -e $f ]] || continue
cp -avx /var/lib/postgres/data-$FROM_VERSION/$f /var/lib/postgres/data/$f
done
systemctl stop postgresql.service
su - postgres -c "pg_upgrade -b /opt/pgsql-$FROM_VERSION/bin/ -B /usr/bin/ \
-d /var/lib/postgres/data-$FROM_VERSION -D /var/lib/postgres/data"
systemctl daemon-reload
systemctl start postgresql.service
su - postgres -c /var/lib/postgres/analyze_new_cluster.sh
# We probably want to manually delete things for now in case this script misses
# some stuff
#su - postgres -c /var/lib/postgres/delete_old_cluster.sh
|