Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions ansible/vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ postgres_major:

# Full version strings for each major version
postgres_release:
postgresorioledb-17: "17.6.0.090-orioledb"
postgres17: "17.6.1.133"
postgres15: "15.14.1.133"
postgresorioledb-17: "17.6.0.090-orioledb-mmlb-err123-1"
postgres17: "17.6.1.133-mmlb-err123-1"
postgres15: "15.14.1.133-mmlb-err123-1"

# Non Postgres Extensions
pgbouncer_release: 1.25.1
Expand Down
6 changes: 6 additions & 0 deletions ebssurrogate/scripts/surrogate-bootstrap-nix.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ set -o errexit
set -o pipefail
set -o xtrace

exec 1>&2

if [ $(dpkg --print-architecture) = "amd64" ]; then
ARCH="amd64"
else
Expand Down Expand Up @@ -415,6 +417,10 @@ function upload_ccache {

# Unmount bind mounts
function umount_reset_mappings {
fuser -vm /mnt || true
lsof +f -- /mnt || true
ls -l /proc/*/root | grep /mnt || true

umount -l /mnt/dev
umount -l /mnt/proc
umount -l /mnt/sys
Expand Down
2 changes: 2 additions & 0 deletions scripts/nix-provision.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ set -o errexit
set -o pipefail
set -o xtrace

exec 1>&2

function install_packages {
# Setup Ansible on host VM
sudo apt-get update && sudo apt-get install -y software-properties-common
Expand Down
Loading