Skip to content
Open
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.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
Expand Down
2 changes: 1 addition & 1 deletion ebssurrogate/scripts/surrogate-bootstrap-nix.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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=""
Expand Down
Loading