nixos: services: postgres: add post-upgrade advice
All checks were successful
ci/woodpecker/push/check Pipeline was successful
All checks were successful
ci/woodpecker/push/check Pipeline was successful
This commit is contained in:
parent
0745e450b9
commit
f6c476a07f
|
@ -58,6 +58,13 @@ in
|
||||||
--old-datadir "$OLDDATA" --new-datadir "$NEWDATA" \
|
--old-datadir "$OLDDATA" --new-datadir "$NEWDATA" \
|
||||||
--old-bindir "$OLDBIN" --new-bindir "$NEWBIN" \
|
--old-bindir "$OLDBIN" --new-bindir "$NEWBIN" \
|
||||||
"$@"
|
"$@"
|
||||||
|
|
||||||
|
cat << EOF
|
||||||
|
Run the following commands after setting:
|
||||||
|
services.postgresql.package = pkgs.postgresql_${lib.versions.major newPackage.version}
|
||||||
|
sudo -u postgres vacuumdb --all --analyze-in-stages
|
||||||
|
${newData}/delete_old_cluster.sh
|
||||||
|
EOF
|
||||||
'')
|
'')
|
||||||
];
|
];
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue