mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
27 lines
639 B
Nix
27 lines
639 B
Nix
import ./make-test.nix ({ pkgs, ...} : {
|
|
name = "postgresql";
|
|
meta = with pkgs.stdenv.lib.maintainers; {
|
|
maintainers = [ zagy ];
|
|
};
|
|
|
|
nodes = {
|
|
master =
|
|
{ pkgs, config, ... }:
|
|
|
|
{
|
|
services.postgresql.enable = true;
|
|
services.postgresql.initialScript = pkgs.writeText "postgresql-init.sql"
|
|
''
|
|
CREATE ROLE postgres WITH superuser login createdb;
|
|
'';
|
|
};
|
|
};
|
|
|
|
testScript = ''
|
|
startAll;
|
|
$master->waitForUnit("postgresql");
|
|
$master->sleep(10); # Hopefully this is long enough!!
|
|
$master->succeed("echo 'select 1' | sudo -u postgres psql");
|
|
'';
|
|
})
|