From eae75ff26517dfabd373e6c695f5ba13b64f8705 Mon Sep 17 00:00:00 2001 From: Paul Cioanca Date: Fri, 29 May 2026 13:33:30 +0300 Subject: [PATCH] fix: increase data volume timeout in /etc/fstab --- ansible/vars.yml | 6 +++--- ebssurrogate/scripts/surrogate-bootstrap-nix.sh | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ansible/vars.yml b/ansible/vars.yml index 241fb8710..aca4f67ac 100644 --- a/ansible/vars.yml +++ b/ansible/vars.yml @@ -10,9 +10,9 @@ postgres_major: # Full version strings for each major version postgres_release: - postgresorioledb-17: "17.6.0.088-orioledb" - postgres17: "17.6.1.131" - postgres15: "15.14.1.131" + postgresorioledb-17: "17.6.0.089-orioledb" + postgres17: "17.6.1.132" + postgres15: "15.14.1.132" # Non Postgres Extensions pgbouncer_release: 1.25.1 diff --git a/ebssurrogate/scripts/surrogate-bootstrap-nix.sh b/ebssurrogate/scripts/surrogate-bootstrap-nix.sh index cf804bf57..e3b82187f 100755 --- a/ebssurrogate/scripts/surrogate-bootstrap-nix.sh +++ b/ebssurrogate/scripts/surrogate-bootstrap-nix.sh @@ -234,7 +234,7 @@ function pull_docker { function create_fstab { FMT="%-42s %-11s %-5s %-17s %-5s %s" local ROOT_LINE=$(findmnt -no SOURCE /mnt | xargs blkid -o export | awk -v FMT="${FMT}" '/^UUID=/ { printf(FMT, $0, "/", "ext4", "defaults,discard", "0", "1" ) }') - local DATA_LINE=$(findmnt -no SOURCE /mnt/data | xargs blkid -o export | awk -v FMT="${FMT}" '/^UUID=/ { printf(FMT, $0, "/data", "ext4", "defaults,discard,nofail,x-systemd.device-timeout=5s", "0", "2" ) }') + local DATA_LINE=$(findmnt -no SOURCE /mnt/data | xargs blkid -o export | awk -v FMT="${FMT}" '/^UUID=/ { printf(FMT, $0, "/data", "ext4", "defaults,discard,nofail,x-systemd.device-timeout=15s", "0", "2" ) }') local SWAP_LINE=$(printf "$FMT" "/swapfile" "none" "swap" "sw" "0" "0") local EFI_LINE=""