Skip to content

Commit 8ca4ab0

Browse files
committed
chore: cleanup + bump version for test
1 parent 0fc1623 commit 8ca4ab0

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

ansible/files/admin_api_scripts/pg_upgrade_scripts/initiate.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,8 @@ EOF
482482
# Additional check to ensure postgres is really stopped
483483
if [ -f "${PGDATAOLD}/postmaster.pid" ]; then
484484
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
486487
rm -f "${PGDATAOLD}/postmaster.pid"
487488
fi
488489
else

ansible/vars.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,9 @@ postgres_major:
99

1010
# Full version strings for each major version
1111
postgres_release:
12-
<<<<<<< HEAD
1312
postgresorioledb-17: "17.0.1.079-orioledb-pgup-1"
1413
postgres17: "17.4.1.029-pgup-1"
1514
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)
2115

2216
# Non Postgres Extensions
2317
pgbouncer_release: "1.19.0"

0 commit comments

Comments
 (0)