2021-07-29 12:05:51 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
|
|
cfg = config.my.services.postgresql;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
options.my.services.postgresql = with lib; {
|
|
|
|
enable = my.mkDisableOption "postgres configuration";
|
2021-07-29 12:44:42 +02:00
|
|
|
|
|
|
|
# Transient option to be enabled for migrations
|
|
|
|
upgradeScript = mkEnableOption "postgres upgrade script";
|
2021-07-29 12:05:51 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
config = lib.mkMerge [
|
|
|
|
# Let other services enable postgres when they need it
|
|
|
|
(lib.mkIf cfg.enable {
|
|
|
|
services.postgresql = {
|
2021-07-29 13:03:10 +02:00
|
|
|
package = pkgs.postgresql_13;
|
2021-07-29 12:05:51 +02:00
|
|
|
};
|
|
|
|
})
|
2021-07-29 12:44:42 +02:00
|
|
|
|
|
|
|
# Taken from the manual
|
|
|
|
(lib.mkIf cfg.upgradeScript {
|
|
|
|
containers.temp-pg.config.services.postgresql = {
|
|
|
|
enable = true;
|
|
|
|
package = pkgs.postgresql_13;
|
|
|
|
};
|
|
|
|
|
|
|
|
environment.systemPackages =
|
|
|
|
let
|
|
|
|
newpg = config.containers.temp-pg.config.services.postgresql;
|
|
|
|
in
|
|
|
|
[
|
|
|
|
(pkgs.writeScriptBin "upgrade-pg-cluster" ''
|
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -x
|
|
|
|
export OLDDATA="${config.services.postgresql.dataDir}"
|
|
|
|
export NEWDATA="${newpg.dataDir}"
|
|
|
|
export OLDBIN="${config.services.postgresql.package}/bin"
|
|
|
|
export NEWBIN="${newpg.package}/bin"
|
|
|
|
|
|
|
|
if [ "$OLDDATA" -ef "$NEWDATA" ]; then
|
|
|
|
echo "Cannot migrate to same data directory" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
install -d -m 0700 -o postgres -g postgres "$NEWDATA"
|
|
|
|
cd "$NEWDATA"
|
|
|
|
sudo -u postgres $NEWBIN/initdb -D "$NEWDATA"
|
|
|
|
|
|
|
|
systemctl stop postgresql # old one
|
|
|
|
|
|
|
|
sudo -u postgres $NEWBIN/pg_upgrade \
|
|
|
|
--old-datadir "$OLDDATA" --new-datadir "$NEWDATA" \
|
|
|
|
--old-bindir $OLDBIN --new-bindir $NEWBIN \
|
|
|
|
"$@"
|
|
|
|
'')
|
|
|
|
];
|
|
|
|
})
|
2021-07-29 12:05:51 +02:00
|
|
|
];
|
|
|
|
}
|