Add scripts to update postgresql (#219)
This commit is contained in:
parent
482b187621
commit
c488bb5bda
2 changed files with 47 additions and 11 deletions
|
@ -1,6 +1,35 @@
|
||||||
{ config, lib, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
let
|
let
|
||||||
cfg = config.shb.postgresql;
|
cfg = config.shb.postgresql;
|
||||||
|
|
||||||
|
upgrade-script = old: new:
|
||||||
|
let
|
||||||
|
oldStr = builtins.toString old;
|
||||||
|
newStr = builtins.toString new;
|
||||||
|
|
||||||
|
oldPkg = pkgs.${"postgresql_${oldStr}"};
|
||||||
|
newPkg = pkgs.${"postgresql_${newStr}"};
|
||||||
|
in
|
||||||
|
pkgs.writeScriptBin "upgrade-pg-cluster-${oldStr}-${newStr}" ''
|
||||||
|
set -eux
|
||||||
|
# XXX it's perhaps advisable to stop all services that depend on postgresql
|
||||||
|
systemctl stop postgresql
|
||||||
|
|
||||||
|
export NEWDATA="/var/lib/postgresql/${newPkg.psqlSchema}"
|
||||||
|
export NEWBIN="${newPkg}/bin"
|
||||||
|
|
||||||
|
export OLDDATA="/var/lib/postgresql/${oldPkg.psqlSchema}"
|
||||||
|
export OLDBIN="${oldPkg}/bin"
|
||||||
|
|
||||||
|
install -d -m 0700 -o postgres -g postgres "$NEWDATA"
|
||||||
|
cd "$NEWDATA"
|
||||||
|
sudo -u postgres $NEWBIN/initdb -D "$NEWDATA"
|
||||||
|
|
||||||
|
sudo -u postgres $NEWBIN/pg_upgrade \
|
||||||
|
--old-datadir "$OLDDATA" --new-datadir "$NEWDATA" \
|
||||||
|
--old-bindir $OLDBIN --new-bindir $NEWBIN \
|
||||||
|
"$@"
|
||||||
|
'';
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
options.shb.postgresql = {
|
options.shb.postgresql = {
|
||||||
|
@ -102,13 +131,18 @@ in
|
||||||
services.postgresql.settings.shared_preload_libraries = "auto_explain, pg_stat_statements";
|
services.postgresql.settings.shared_preload_libraries = "auto_explain, pg_stat_statements";
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
lib.mkMerge (
|
lib.mkMerge ([
|
||||||
[
|
commonConfig
|
||||||
commonConfig
|
(dbConfig cfg.ensures)
|
||||||
(dbConfig cfg.ensures)
|
(pwdConfig cfg.ensures)
|
||||||
(pwdConfig cfg.ensures)
|
(lib.mkIf cfg.enableTCPIP tcpConfig)
|
||||||
(lib.mkIf cfg.enableTCPIP tcpConfig)
|
(debugConfig cfg.debug)
|
||||||
(debugConfig cfg.debug)
|
{
|
||||||
]
|
environment.systemPackages = lib.mkIf config.services.postgresql.enable [
|
||||||
);
|
(upgrade-script 13 14)
|
||||||
|
(upgrade-script 14 15)
|
||||||
|
(upgrade-script 15 16)
|
||||||
|
];
|
||||||
|
}
|
||||||
|
]);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ lib, ... }:
|
{ lib, pkgs, ... }:
|
||||||
let
|
let
|
||||||
anyOpt = default: lib.mkOption {
|
anyOpt = default: lib.mkOption {
|
||||||
type = lib.types.anything;
|
type = lib.types.anything;
|
||||||
|
@ -8,11 +8,13 @@ let
|
||||||
testConfig = m:
|
testConfig = m:
|
||||||
let
|
let
|
||||||
cfg = (lib.evalModules {
|
cfg = (lib.evalModules {
|
||||||
|
specialArgs = { inherit pkgs; };
|
||||||
modules = [
|
modules = [
|
||||||
{
|
{
|
||||||
options = {
|
options = {
|
||||||
services = anyOpt {};
|
services = anyOpt {};
|
||||||
systemd = anyOpt {};
|
systemd = anyOpt {};
|
||||||
|
environment = anyOpt {};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
../../modules/blocks/postgresql.nix
|
../../modules/blocks/postgresql.nix
|
||||||
|
|
Loading…
Reference in a new issue