-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
services: postgres: add upgrade script
- Loading branch information
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,40 @@ | ||
{ | ||
config, | ||
pkgs, | ||
lib, | ||
... | ||
}: { | ||
# set postgresql version so we don't get any bad surprise | ||
config.services.postgresql = { | ||
package = pkgs.postgresql_15; | ||
}; | ||
|
||
environment.systemPackages = [ | ||
(let | ||
# XXX specify the postgresql package you'd like to upgrade to. | ||
# Do not forget to list the extensions you need. | ||
newPostgres = pkgs.postgresql_16; | ||
cfg = config.services.postgresql; | ||
in pkgs.writeScriptBin "upgrade-pg-cluster" '' | ||
set -eux | ||
# XXX it's perhaps advisable to stop all services that depend on postgresql | ||
systemctl stop postgresql | ||
export NEWDATA="/var/lib/postgresql/${newPostgres.psqlSchema}" | ||
export NEWBIN="${newPostgres}/bin" | ||
export OLDDATA="${cfg.dataDir}" | ||
export OLDBIN="${cfg.package}/bin" | ||
install -d -m 0700 -o postgres -g postgres "$NEWDATA" | ||
cd "$NEWDATA" | ||
sudo -u postgres $NEWBIN/initdb -D "$NEWDATA" ${lib.escapeShellArgs cfg.initdbArgs} | ||
sudo -u postgres $NEWBIN/pg_upgrade \ | ||
--old-datadir "$OLDDATA" --new-datadir "$NEWDATA" \ | ||
--old-bindir $OLDBIN --new-bindir $NEWBIN \ | ||
"$@" | ||
'') | ||
]; | ||
} |