File tree 2 files changed +2
-7
lines changed
files/admin_api_scripts/pg_upgrade_scripts
2 files changed +2
-7
lines changed Original file line number Diff line number Diff line change 482
482
# Additional check to ensure postgres is really stopped
483
483
if [ -f " ${PGDATAOLD} /postmaster.pid" ]; then
484
484
echo " PostgreSQL still running, forcing stop..."
485
- kill -9 $( head -n 1 " ${PGDATAOLD} /postmaster.pid" ) || true
485
+ pid=$( head -n 1 " ${PGDATAOLD} /postmaster.pid" )
486
+ kill -9 " $pid " || true
486
487
rm -f " ${PGDATAOLD} /postmaster.pid"
487
488
fi
488
489
else
Original file line number Diff line number Diff line change @@ -9,15 +9,9 @@ postgres_major:
9
9
10
10
# Full version strings for each major version
11
11
postgres_release :
12
- <<<<<<< HEAD
13
12
postgresorioledb-17 : " 17.0.1.079-orioledb-pgup-1"
14
13
postgres17 : " 17.4.1.029-pgup-1"
15
14
postgres15 : " 15.8.1.086-pgup-1"
16
- =======
17
- postgresorioledb-17 : " 17.0.1.079-orioledb-upgrade-13"
18
- postgres17 : " 17.4.1.029-upgrade-13"
19
- postgres15 : " 15.8.1.086-upgrade-13"
20
- >>>>>>> c27f9870 (chore: bump version)
21
15
22
16
# Non Postgres Extensions
23
17
pgbouncer_release : " 1.19.0"
You can’t perform that action at this time.
0 commit comments