2009-03-06 13:27:02 +01:00
|
|
|
{pkgs, config, ...}:
|
|
|
|
|
2007-12-03 05:48:31 +01:00
|
|
|
let
|
2009-07-15 13:19:11 +02:00
|
|
|
inherit (pkgs.lib) mkOption mkIf singleton;
|
2007-12-03 05:48:31 +01:00
|
|
|
|
2008-02-18 12:56:43 +01:00
|
|
|
cfg = config.services.postgresql;
|
|
|
|
|
|
|
|
postgresql = pkgs.postgresql;
|
|
|
|
|
|
|
|
startDependency = if config.services.gw6c.enable then
|
|
|
|
"gw6c" else "network-interfaces";
|
|
|
|
|
2009-07-15 13:19:11 +02:00
|
|
|
run = "${pkgs.su}/bin/su -s ${pkgs.stdenv.shell} postgres";
|
2007-12-03 05:48:31 +01:00
|
|
|
|
2009-05-15 10:00:20 +02:00
|
|
|
flags = if cfg.enableTCPIP then ["-i"] else [];
|
|
|
|
|
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
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
|
|
|
services.postgresql = {
|
|
|
|
|
|
|
|
enable = mkOption {
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Whether to run PostgreSQL.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
port = mkOption {
|
|
|
|
default = "5432";
|
|
|
|
description = ''
|
|
|
|
Port for PostgreSQL.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
logDir = mkOption {
|
|
|
|
default = "/var/log/postgresql";
|
|
|
|
description = ''
|
|
|
|
Log directory for PostgreSQL.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
dataDir = mkOption {
|
|
|
|
default = "/var/db/postgresql";
|
|
|
|
description = ''
|
|
|
|
Data directory for PostgreSQL.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
subServices = mkOption {
|
|
|
|
default = [];
|
|
|
|
description = ''
|
|
|
|
Subservices list. As it is already implememnted,
|
|
|
|
here is an interface...
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
authentication = mkOption {
|
|
|
|
default = ''
|
|
|
|
# Generated file; do not edit!
|
|
|
|
local all all ident sameuser
|
|
|
|
host all all 127.0.0.1/32 md5
|
|
|
|
host all all ::1/128 md5
|
|
|
|
'';
|
|
|
|
description = ''
|
|
|
|
Hosts (except localhost), who you allow to connect.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
allowedHosts = mkOption {
|
|
|
|
default = [];
|
|
|
|
description = ''
|
|
|
|
Hosts (except localhost), who you allow to connect.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
authMethod = mkOption {
|
|
|
|
default = " ident sameuser ";
|
|
|
|
description = ''
|
|
|
|
How to authorize users.
|
|
|
|
Note: ident needs absolute trust to all allowed client hosts.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
enableTCPIP = mkOption {
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Whether to run PostgreSQL with -i flag to enable TCP/IP connections.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
2008-02-18 12:56:43 +01:00
|
|
|
|
|
|
|
|
2009-07-15 13:19:11 +02:00
|
|
|
###### implementation
|
|
|
|
|
|
|
|
config = mkIf config.services.postgresql.enable {
|
|
|
|
|
|
|
|
users.extraUsers = singleton
|
2009-03-06 13:27:02 +01:00
|
|
|
{ name = "postgres";
|
|
|
|
description = "PostgreSQL server user";
|
2009-07-15 13:19:11 +02:00
|
|
|
};
|
2009-03-06 13:27:02 +01:00
|
|
|
|
2009-07-15 13:19:11 +02:00
|
|
|
users.extraGroups = singleton
|
|
|
|
{ name = "postgres"; };
|
2009-03-06 13:27:02 +01:00
|
|
|
|
2009-07-15 13:19:11 +02:00
|
|
|
environment.systemPackages = [postgresql];
|
2009-03-06 13:27:02 +01:00
|
|
|
|
2009-10-12 19:09:38 +02:00
|
|
|
jobAttrs.postgresql =
|
|
|
|
{ description = "PostgreSQL server";
|
2009-03-06 13:27:02 +01:00
|
|
|
|
2009-10-12 19:09:38 +02:00
|
|
|
startOn = "${startDependency}/started";
|
|
|
|
stopOn = "shutdown";
|
2009-03-06 13:27:02 +01:00
|
|
|
|
2009-10-12 19:09:38 +02:00
|
|
|
preStart =
|
|
|
|
''
|
2009-03-06 13:27:02 +01:00
|
|
|
if ! test -e ${cfg.dataDir}; then
|
|
|
|
mkdir -m 0700 -p ${cfg.dataDir}
|
|
|
|
chown -R postgres ${cfg.dataDir}
|
|
|
|
${run} -c '${postgresql}/bin/initdb -D ${cfg.dataDir} -U root'
|
|
|
|
fi
|
|
|
|
cp -f ${pkgs.writeText "pg_hba.conf" cfg.authentication} ${cfg.dataDir}/pg_hba.conf
|
2009-10-12 19:09:38 +02:00
|
|
|
'';
|
2009-03-06 13:27:02 +01:00
|
|
|
|
2009-10-12 19:09:38 +02:00
|
|
|
exec = "${run} -c '${postgresql}/bin/postgres -D ${cfg.dataDir} ${toString flags}'";
|
|
|
|
};
|
2009-07-15 13:19:11 +02:00
|
|
|
|
2009-03-06 13:27:02 +01:00
|
|
|
};
|
2009-07-15 13:19:11 +02:00
|
|
|
|
2007-12-03 05:48:31 +01:00
|
|
|
}
|