2014-04-14 16:26:48 +02:00
|
|
|
|
{ config, lib, pkgs, ... }:
|
2009-12-03 13:20:24 +01:00
|
|
|
|
|
2014-04-14 16:26:48 +02:00
|
|
|
|
with lib;
|
2009-03-06 13:27:02 +01:00
|
|
|
|
|
2007-12-03 05:48:31 +01:00
|
|
|
|
let
|
|
|
|
|
|
2008-02-18 12:56:43 +01:00
|
|
|
|
cfg = config.services.postgresql;
|
|
|
|
|
|
2019-07-21 21:05:41 +02:00
|
|
|
|
postgresql =
|
|
|
|
|
if cfg.extraPlugins == []
|
|
|
|
|
then cfg.package
|
|
|
|
|
else cfg.package.withPackages (_: cfg.extraPlugins);
|
2008-02-18 12:56:43 +01:00
|
|
|
|
|
2009-12-02 18:18:25 +01:00
|
|
|
|
# The main PostgreSQL configuration file.
|
|
|
|
|
configFile = pkgs.writeText "postgresql.conf"
|
|
|
|
|
''
|
|
|
|
|
hba_file = '${pkgs.writeText "pg_hba.conf" cfg.authentication}'
|
|
|
|
|
ident_file = '${pkgs.writeText "pg_ident.conf" cfg.identMap}'
|
2013-07-14 04:57:50 +02:00
|
|
|
|
log_destination = 'stderr'
|
2020-05-07 23:11:38 +02:00
|
|
|
|
log_line_prefix = '${cfg.logLinePrefix}'
|
2017-05-12 20:54:13 +02:00
|
|
|
|
listen_addresses = '${if cfg.enableTCPIP then "*" else "localhost"}'
|
2013-11-27 12:36:32 +01:00
|
|
|
|
port = ${toString cfg.port}
|
2011-06-27 12:15:26 +02:00
|
|
|
|
${cfg.extraConfig}
|
2020-02-14 18:16:34 +01:00
|
|
|
|
'';
|
2009-12-02 18:18:25 +01:00
|
|
|
|
|
2020-02-14 18:16:34 +01:00
|
|
|
|
groupAccessAvailable = versionAtLeast postgresql.version "11.0";
|
2019-07-22 01:57:16 +02:00
|
|
|
|
|
2007-12-03 05:48:31 +01:00
|
|
|
|
in
|
2008-02-18 12:56:43 +01:00
|
|
|
|
|
2009-07-15 13:19:11 +02:00
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
###### interface
|
2011-09-14 20:20:50 +02:00
|
|
|
|
|
2009-07-15 13:19:11 +02:00
|
|
|
|
options = {
|
2011-09-14 20:20:50 +02:00
|
|
|
|
|
2009-07-15 13:19:11 +02:00
|
|
|
|
services.postgresql = {
|
2011-09-14 20:20:50 +02:00
|
|
|
|
|
2020-05-07 10:59:07 +02:00
|
|
|
|
enable = mkEnableOption "PostgreSQL Server";
|
2011-09-14 20:20:50 +02:00
|
|
|
|
|
2012-08-15 23:01:19 +02:00
|
|
|
|
package = mkOption {
|
2014-02-27 13:22:04 +01:00
|
|
|
|
type = types.package;
|
2019-07-21 21:05:41 +02:00
|
|
|
|
example = literalExample "pkgs.postgresql_11";
|
2012-08-15 23:01:19 +02:00
|
|
|
|
description = ''
|
|
|
|
|
PostgreSQL package to use.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2009-07-15 13:19:11 +02:00
|
|
|
|
port = mkOption {
|
2013-10-30 17:37:45 +01:00
|
|
|
|
type = types.int;
|
2013-11-27 12:36:32 +01:00
|
|
|
|
default = 5432;
|
2009-07-15 13:19:11 +02:00
|
|
|
|
description = ''
|
2013-11-27 12:36:32 +01:00
|
|
|
|
The port on which PostgreSQL listens.
|
2009-07-15 13:19:11 +02:00
|
|
|
|
'';
|
|
|
|
|
};
|
2011-09-14 20:20:50 +02:00
|
|
|
|
|
2009-07-15 13:19:11 +02:00
|
|
|
|
dataDir = mkOption {
|
2013-10-30 17:37:45 +01:00
|
|
|
|
type = types.path;
|
2019-07-21 21:05:41 +02:00
|
|
|
|
example = "/var/lib/postgresql/11";
|
2009-07-15 13:19:11 +02:00
|
|
|
|
description = ''
|
|
|
|
|
Data directory for PostgreSQL.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2011-09-14 20:20:50 +02:00
|
|
|
|
|
2009-07-15 13:19:11 +02:00
|
|
|
|
authentication = mkOption {
|
2013-10-30 17:37:45 +01:00
|
|
|
|
type = types.lines;
|
2012-03-19 17:49:13 +01:00
|
|
|
|
default = "";
|
2009-07-15 13:19:11 +02:00
|
|
|
|
description = ''
|
2014-01-11 23:01:21 +01:00
|
|
|
|
Defines how users authenticate themselves to the server. By
|
|
|
|
|
default, "trust" access to local users will always be granted
|
|
|
|
|
along with any other custom options. If you do not want this,
|
2014-05-05 20:58:51 +02:00
|
|
|
|
set this option using "lib.mkForce" to override this
|
2014-01-11 23:01:21 +01:00
|
|
|
|
behaviour.
|
2009-07-15 13:19:11 +02:00
|
|
|
|
'';
|
|
|
|
|
};
|
2011-09-14 20:20:50 +02:00
|
|
|
|
|
2009-12-02 18:18:25 +01:00
|
|
|
|
identMap = mkOption {
|
2013-10-30 17:37:45 +01:00
|
|
|
|
type = types.lines;
|
2009-12-02 18:18:25 +01:00
|
|
|
|
default = "";
|
2009-07-15 13:19:11 +02:00
|
|
|
|
description = ''
|
2009-12-02 18:18:25 +01:00
|
|
|
|
Defines the mapping from system users to database users.
|
2019-09-05 03:36:19 +02:00
|
|
|
|
|
|
|
|
|
The general form is:
|
|
|
|
|
|
|
|
|
|
map-name system-username database-username
|
2009-07-15 13:19:11 +02:00
|
|
|
|
'';
|
|
|
|
|
};
|
2011-09-14 20:20:50 +02:00
|
|
|
|
|
2019-07-24 22:34:21 +02:00
|
|
|
|
initdbArgs = mkOption {
|
2019-07-23 20:53:59 +02:00
|
|
|
|
type = with types; listOf str;
|
|
|
|
|
default = [];
|
2020-02-14 18:16:34 +01:00
|
|
|
|
example = [ "--data-checksums" "--allow-group-access" ];
|
2019-07-23 20:53:59 +02:00
|
|
|
|
description = ''
|
2020-02-15 19:16:41 +01:00
|
|
|
|
Additional arguments passed to <literal>initdb</literal> during data dir
|
2019-07-23 20:53:59 +02:00
|
|
|
|
initialisation.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2013-07-14 05:01:48 +02:00
|
|
|
|
initialScript = mkOption {
|
|
|
|
|
type = types.nullOr types.path;
|
2013-10-30 17:37:45 +01:00
|
|
|
|
default = null;
|
2013-07-14 05:01:48 +02:00
|
|
|
|
description = ''
|
|
|
|
|
A file containing SQL statements to execute on first startup.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2019-02-25 03:33:16 +01:00
|
|
|
|
ensureDatabases = mkOption {
|
|
|
|
|
type = types.listOf types.str;
|
|
|
|
|
default = [];
|
|
|
|
|
description = ''
|
|
|
|
|
Ensures that the specified databases exist.
|
|
|
|
|
This option will never delete existing databases, especially not when the value of this
|
|
|
|
|
option is changed. This means that databases created once through this option or
|
|
|
|
|
otherwise have to be removed manually.
|
|
|
|
|
'';
|
|
|
|
|
example = [
|
|
|
|
|
"gitea"
|
|
|
|
|
"nextcloud"
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
ensureUsers = mkOption {
|
|
|
|
|
type = types.listOf (types.submodule {
|
|
|
|
|
options = {
|
|
|
|
|
name = mkOption {
|
|
|
|
|
type = types.str;
|
|
|
|
|
description = ''
|
|
|
|
|
Name of the user to ensure.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
ensurePermissions = mkOption {
|
|
|
|
|
type = types.attrsOf types.str;
|
|
|
|
|
default = {};
|
|
|
|
|
description = ''
|
|
|
|
|
Permissions to ensure for the user, specified as an attribute set.
|
|
|
|
|
The attribute names specify the database and tables to grant the permissions for.
|
|
|
|
|
The attribute values specify the permissions to grant. You may specify one or
|
|
|
|
|
multiple comma-separated SQL privileges here.
|
|
|
|
|
|
|
|
|
|
For more information on how to specify the target
|
|
|
|
|
and on which privileges exist, see the
|
|
|
|
|
<link xlink:href="https://www.postgresql.org/docs/current/sql-grant.html">GRANT syntax</link>.
|
|
|
|
|
The attributes are used as <code>GRANT ''${attrName} ON ''${attrValue}</code>.
|
|
|
|
|
'';
|
|
|
|
|
example = literalExample ''
|
|
|
|
|
{
|
|
|
|
|
"DATABASE nextcloud" = "ALL PRIVILEGES";
|
|
|
|
|
"ALL TABLES IN SCHEMA public" = "ALL PRIVILEGES";
|
|
|
|
|
}
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
});
|
|
|
|
|
default = [];
|
|
|
|
|
description = ''
|
|
|
|
|
Ensures that the specified users exist and have at least the ensured permissions.
|
|
|
|
|
The PostgreSQL users will be identified using peer authentication. This authenticates the Unix user with the
|
|
|
|
|
same name only, and that without the need for a password.
|
|
|
|
|
This option will never delete existing users or remove permissions, especially not when the value of this
|
|
|
|
|
option is changed. This means that users created and permissions assigned once through this option or
|
|
|
|
|
otherwise have to be removed manually.
|
|
|
|
|
'';
|
|
|
|
|
example = literalExample ''
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
name = "nextcloud";
|
|
|
|
|
ensurePermissions = {
|
|
|
|
|
"DATABASE nextcloud" = "ALL PRIVILEGES";
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
name = "superuser";
|
|
|
|
|
ensurePermissions = {
|
|
|
|
|
"ALL TABLES IN SCHEMA public" = "ALL PRIVILEGES";
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2009-07-15 13:19:11 +02:00
|
|
|
|
enableTCPIP = mkOption {
|
2013-10-30 17:37:45 +01:00
|
|
|
|
type = types.bool;
|
2009-07-15 13:19:11 +02:00
|
|
|
|
default = false;
|
|
|
|
|
description = ''
|
2013-11-27 12:36:32 +01:00
|
|
|
|
Whether PostgreSQL should listen on all network interfaces.
|
|
|
|
|
If disabled, the database can only be accessed via its Unix
|
|
|
|
|
domain socket or via TCP connections to localhost.
|
2009-07-15 13:19:11 +02:00
|
|
|
|
'';
|
|
|
|
|
};
|
2010-05-09 22:42:00 +02:00
|
|
|
|
|
2020-05-07 23:11:38 +02:00
|
|
|
|
logLinePrefix = mkOption {
|
|
|
|
|
type = types.str;
|
|
|
|
|
default = "[%p] ";
|
|
|
|
|
example = "%m [%p] ";
|
|
|
|
|
description = ''
|
|
|
|
|
A printf-style string that is output at the beginning of each log line.
|
2020-05-13 22:33:08 +02:00
|
|
|
|
Upstream default is <literal>'%m [%p] '</literal>, i.e. it includes the timestamp. We do
|
2020-05-07 23:11:38 +02:00
|
|
|
|
not include the timestamp, because journal has it anyway.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2010-05-09 22:42:00 +02:00
|
|
|
|
extraPlugins = mkOption {
|
2013-10-30 17:37:45 +01:00
|
|
|
|
type = types.listOf types.path;
|
2010-05-09 22:42:00 +02:00
|
|
|
|
default = [];
|
2019-07-21 21:05:41 +02:00
|
|
|
|
example = literalExample "with pkgs.postgresql_11.pkgs; [ postgis pg_repack ]";
|
2010-05-09 22:42:00 +02:00
|
|
|
|
description = ''
|
2019-07-21 21:05:41 +02:00
|
|
|
|
List of PostgreSQL plugins. PostgreSQL version for each plugin should
|
|
|
|
|
match version for <literal>services.postgresql.package</literal> value.
|
2010-05-09 22:42:00 +02:00
|
|
|
|
'';
|
|
|
|
|
};
|
2011-09-14 20:20:50 +02:00
|
|
|
|
|
2011-06-27 12:15:26 +02:00
|
|
|
|
extraConfig = mkOption {
|
2013-10-30 17:37:45 +01:00
|
|
|
|
type = types.lines;
|
2011-06-27 12:15:26 +02:00
|
|
|
|
default = "";
|
|
|
|
|
description = "Additional text to be appended to <filename>postgresql.conf</filename>.";
|
|
|
|
|
};
|
2013-07-14 05:04:10 +02:00
|
|
|
|
|
|
|
|
|
recoveryConfig = mkOption {
|
2013-10-30 17:37:45 +01:00
|
|
|
|
type = types.nullOr types.lines;
|
2013-07-14 05:04:10 +02:00
|
|
|
|
default = null;
|
|
|
|
|
description = ''
|
2013-10-30 17:37:45 +01:00
|
|
|
|
Contents of the <filename>recovery.conf</filename> file.
|
2013-07-14 05:04:10 +02:00
|
|
|
|
'';
|
|
|
|
|
};
|
2017-09-02 21:23:56 +02:00
|
|
|
|
superUser = mkOption {
|
|
|
|
|
type = types.str;
|
2018-07-25 22:22:54 +02:00
|
|
|
|
default= if versionAtLeast config.system.stateVersion "17.09" then "postgres" else "root";
|
2017-09-02 21:23:56 +02:00
|
|
|
|
internal = true;
|
|
|
|
|
description = ''
|
2017-11-13 22:22:35 +01:00
|
|
|
|
NixOS traditionally used 'root' as superuser, most other distros use 'postgres'.
|
2017-09-02 21:23:56 +02:00
|
|
|
|
From 17.09 we also try to follow this standard. Internal since changing this value
|
|
|
|
|
would lead to breakage while setting up databases.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2009-07-15 13:19:11 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
};
|
2008-02-18 12:56:43 +01:00
|
|
|
|
|
|
|
|
|
|
2009-07-15 13:19:11 +02:00
|
|
|
|
###### implementation
|
2011-09-14 20:20:50 +02:00
|
|
|
|
|
2019-07-23 20:53:59 +02:00
|
|
|
|
config = mkIf cfg.enable {
|
2009-07-15 13:19:11 +02:00
|
|
|
|
|
2015-07-27 20:26:19 +02:00
|
|
|
|
services.postgresql.package =
|
|
|
|
|
# Note: when changing the default, make it conditional on
|
2018-07-25 22:22:54 +02:00
|
|
|
|
# ‘system.stateVersion’ to maintain compatibility with existing
|
2015-07-27 20:26:19 +02:00
|
|
|
|
# systems!
|
2019-09-22 11:27:39 +02:00
|
|
|
|
mkDefault (if versionAtLeast config.system.stateVersion "20.03" then pkgs.postgresql_11
|
2019-09-21 09:09:58 +02:00
|
|
|
|
else if versionAtLeast config.system.stateVersion "17.09" then pkgs.postgresql_9_6
|
2018-10-23 18:22:14 +02:00
|
|
|
|
else if versionAtLeast config.system.stateVersion "16.03" then pkgs.postgresql_9_5
|
2019-09-07 16:31:27 +02:00
|
|
|
|
else throw "postgresql_9_4 was removed, please upgrade your postgresql version.");
|
2017-05-30 22:05:39 +02:00
|
|
|
|
|
|
|
|
|
services.postgresql.dataDir =
|
2019-07-23 20:53:59 +02:00
|
|
|
|
mkDefault (if versionAtLeast config.system.stateVersion "17.09"
|
|
|
|
|
then "/var/lib/postgresql/${cfg.package.psqlSchema}"
|
|
|
|
|
else "/var/db/postgresql");
|
|
|
|
|
|
2015-07-01 13:46:38 +02:00
|
|
|
|
services.postgresql.authentication = mkAfter
|
2012-03-19 17:49:13 +01:00
|
|
|
|
''
|
|
|
|
|
# Generated file; do not edit!
|
2020-02-15 22:55:35 +01:00
|
|
|
|
local all all peer
|
2012-03-19 17:49:13 +01:00
|
|
|
|
host all all 127.0.0.1/32 md5
|
|
|
|
|
host all all ::1/128 md5
|
|
|
|
|
'';
|
2012-08-06 17:45:59 +02:00
|
|
|
|
|
2018-06-30 01:58:35 +02:00
|
|
|
|
users.users.postgres =
|
2009-03-06 13:27:02 +01:00
|
|
|
|
{ name = "postgres";
|
2013-08-23 11:33:24 +02:00
|
|
|
|
uid = config.ids.uids.postgres;
|
|
|
|
|
group = "postgres";
|
2009-03-06 13:27:02 +01:00
|
|
|
|
description = "PostgreSQL server user";
|
2018-09-26 13:11:28 +02:00
|
|
|
|
home = "${cfg.dataDir}";
|
|
|
|
|
useDefaultShell = true;
|
2009-07-15 13:19:11 +02:00
|
|
|
|
};
|
2009-03-06 13:27:02 +01:00
|
|
|
|
|
2018-06-30 01:58:35 +02:00
|
|
|
|
users.groups.postgres.gid = config.ids.gids.postgres;
|
2009-03-06 13:27:02 +01:00
|
|
|
|
|
2016-02-09 01:07:23 +01:00
|
|
|
|
environment.systemPackages = [ postgresql ];
|
2009-03-06 13:27:02 +01:00
|
|
|
|
|
2019-08-07 13:17:36 +02:00
|
|
|
|
environment.pathsToLink = [
|
|
|
|
|
"/share/postgresql"
|
|
|
|
|
];
|
|
|
|
|
|
2013-01-16 12:33:18 +01:00
|
|
|
|
systemd.services.postgresql =
|
2012-12-18 13:40:04 +01:00
|
|
|
|
{ description = "PostgreSQL Server";
|
2009-03-06 13:27:02 +01:00
|
|
|
|
|
2012-08-15 00:15:37 +02:00
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
2012-12-18 13:40:04 +01:00
|
|
|
|
after = [ "network.target" ];
|
2009-03-06 13:27:02 +01:00
|
|
|
|
|
2013-04-22 18:56:19 +02:00
|
|
|
|
environment.PGDATA = cfg.dataDir;
|
2009-11-06 23:56:47 +01:00
|
|
|
|
|
2016-02-09 01:07:23 +01:00
|
|
|
|
path = [ postgresql ];
|
2012-03-19 17:49:13 +01:00
|
|
|
|
|
2009-10-12 19:09:38 +02:00
|
|
|
|
preStart =
|
|
|
|
|
''
|
2016-02-09 01:07:23 +01:00
|
|
|
|
# Create data directory.
|
2015-07-02 09:08:02 +02:00
|
|
|
|
if ! test -e ${cfg.dataDir}/PG_VERSION; then
|
2020-02-14 18:16:34 +01:00
|
|
|
|
mkdir -m 0700 -p ${cfg.dataDir}
|
2016-02-09 01:07:23 +01:00
|
|
|
|
rm -f ${cfg.dataDir}/*.conf
|
2019-07-24 22:34:21 +02:00
|
|
|
|
chown -R postgres:postgres ${cfg.dataDir}
|
2009-03-06 13:27:02 +01:00
|
|
|
|
fi
|
2016-02-09 01:07:23 +01:00
|
|
|
|
''; # */
|
2009-12-02 18:18:25 +01:00
|
|
|
|
|
2016-02-09 01:07:23 +01:00
|
|
|
|
script =
|
|
|
|
|
''
|
|
|
|
|
# Initialise the database.
|
|
|
|
|
if ! test -e ${cfg.dataDir}/PG_VERSION; then
|
2019-07-24 22:34:21 +02:00
|
|
|
|
initdb -U ${cfg.superUser} ${concatStringsSep " " cfg.initdbArgs}
|
2016-02-09 01:07:23 +01:00
|
|
|
|
# See postStart!
|
|
|
|
|
touch "${cfg.dataDir}/.first_startup"
|
|
|
|
|
fi
|
2013-07-14 05:04:10 +02:00
|
|
|
|
ln -sfn "${configFile}" "${cfg.dataDir}/postgresql.conf"
|
|
|
|
|
${optionalString (cfg.recoveryConfig != null) ''
|
|
|
|
|
ln -sfn "${pkgs.writeText "recovery.conf" cfg.recoveryConfig}" \
|
|
|
|
|
"${cfg.dataDir}/recovery.conf"
|
|
|
|
|
''}
|
2020-02-14 18:16:34 +01:00
|
|
|
|
${optionalString (!groupAccessAvailable) ''
|
|
|
|
|
# postgresql pre 11.0 doesn't start if state directory mode is group accessible
|
|
|
|
|
chmod 0700 "${cfg.dataDir}"
|
2019-07-25 00:00:26 +02:00
|
|
|
|
''}
|
2016-02-09 01:07:23 +01:00
|
|
|
|
|
2019-07-22 01:57:16 +02:00
|
|
|
|
exec postgres
|
2016-02-09 01:07:23 +01:00
|
|
|
|
'';
|
2009-11-07 00:37:31 +01:00
|
|
|
|
|
2012-08-06 17:45:59 +02:00
|
|
|
|
serviceConfig =
|
2016-02-09 01:07:23 +01:00
|
|
|
|
{ ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
|
2012-10-01 22:47:54 +02:00
|
|
|
|
User = "postgres";
|
|
|
|
|
Group = "postgres";
|
|
|
|
|
PermissionsStartOnly = true;
|
2019-03-15 04:52:35 +01:00
|
|
|
|
RuntimeDirectory = "postgresql";
|
2019-07-24 22:34:21 +02:00
|
|
|
|
Type = if versionAtLeast cfg.package.version "9.6"
|
2018-11-27 20:16:21 +01:00
|
|
|
|
then "notify"
|
|
|
|
|
else "simple";
|
2012-10-01 22:47:54 +02:00
|
|
|
|
|
|
|
|
|
# Shut down Postgres using SIGINT ("Fast Shutdown mode"). See
|
2012-04-30 20:15:32 +02:00
|
|
|
|
# http://www.postgresql.org/docs/current/static/server-shutdown.html
|
2012-10-01 22:27:42 +02:00
|
|
|
|
KillSignal = "SIGINT";
|
2014-04-18 17:32:24 +02:00
|
|
|
|
KillMode = "mixed";
|
2012-04-30 20:15:32 +02:00
|
|
|
|
|
2012-03-19 17:49:13 +01:00
|
|
|
|
# Give Postgres a decent amount of time to clean up after
|
2012-08-06 17:45:59 +02:00
|
|
|
|
# receiving systemd's SIGINT.
|
2013-05-07 14:59:08 +02:00
|
|
|
|
TimeoutSec = 120;
|
2012-10-01 22:27:42 +02:00
|
|
|
|
};
|
2012-10-01 22:47:54 +02:00
|
|
|
|
|
|
|
|
|
# Wait for PostgreSQL to be ready to accept connections.
|
|
|
|
|
postStart =
|
|
|
|
|
''
|
2020-05-15 00:23:28 +02:00
|
|
|
|
PSQL="${pkgs.utillinux}/bin/runuser -u ${cfg.superUser} -- psql --port=${toString cfg.port}"
|
2019-02-25 03:33:16 +01:00
|
|
|
|
|
|
|
|
|
while ! $PSQL -d postgres -c "" 2> /dev/null; do
|
2012-12-19 12:59:28 +01:00
|
|
|
|
if ! kill -0 "$MAINPID"; then exit 1; fi
|
2012-10-01 23:32:03 +02:00
|
|
|
|
sleep 0.1
|
2012-10-01 22:47:54 +02:00
|
|
|
|
done
|
2013-07-14 05:01:48 +02:00
|
|
|
|
|
|
|
|
|
if test -e "${cfg.dataDir}/.first_startup"; then
|
|
|
|
|
${optionalString (cfg.initialScript != null) ''
|
2019-02-25 03:33:16 +01:00
|
|
|
|
$PSQL -f "${cfg.initialScript}" -d postgres
|
2013-07-14 05:01:48 +02:00
|
|
|
|
''}
|
|
|
|
|
rm -f "${cfg.dataDir}/.first_startup"
|
|
|
|
|
fi
|
2019-02-25 03:33:16 +01:00
|
|
|
|
'' + optionalString (cfg.ensureDatabases != []) ''
|
|
|
|
|
${concatMapStrings (database: ''
|
2019-08-09 21:08:42 +02:00
|
|
|
|
$PSQL -tAc "SELECT 1 FROM pg_database WHERE datname = '${database}'" | grep -q 1 || $PSQL -tAc 'CREATE DATABASE "${database}"'
|
2019-02-25 03:33:16 +01:00
|
|
|
|
'') cfg.ensureDatabases}
|
|
|
|
|
'' + ''
|
|
|
|
|
${concatMapStrings (user: ''
|
2019-12-08 21:33:07 +01:00
|
|
|
|
$PSQL -tAc "SELECT 1 FROM pg_roles WHERE rolname='${user.name}'" | grep -q 1 || $PSQL -tAc 'CREATE USER "${user.name}"'
|
2019-02-25 03:33:16 +01:00
|
|
|
|
${concatStringsSep "\n" (mapAttrsToList (database: permission: ''
|
2019-12-08 21:33:07 +01:00
|
|
|
|
$PSQL -tAc 'GRANT ${permission} ON ${database} TO "${user.name}"'
|
2019-02-25 03:33:16 +01:00
|
|
|
|
'') user.ensurePermissions)}
|
|
|
|
|
'') cfg.ensureUsers}
|
2012-10-01 22:47:54 +02:00
|
|
|
|
'';
|
2012-10-01 22:53:13 +02:00
|
|
|
|
|
|
|
|
|
unitConfig.RequiresMountsFor = "${cfg.dataDir}";
|
2009-10-12 19:09:38 +02:00
|
|
|
|
};
|
2009-07-15 13:19:11 +02:00
|
|
|
|
|
2009-03-06 13:27:02 +01:00
|
|
|
|
};
|
2011-09-14 20:20:50 +02:00
|
|
|
|
|
2016-05-09 07:53:27 +02:00
|
|
|
|
meta.doc = ./postgresql.xml;
|
2019-07-22 01:57:16 +02:00
|
|
|
|
meta.maintainers = with lib.maintainers; [ thoughtpolice danbst ];
|
2007-12-03 05:48:31 +01:00
|
|
|
|
}
|