Give pineafan permissions on postgres
The last of the denizens from the pinea->pineafan change in
Ib24cde5a071b1db444b95170c1e08d3e4ed6f1dc is postgres permissions. This commit
changes it so that the user we are giving postgres permissions to is "pineafan"
not "pinea"
Change-Id: I1de16310c32729342362c14a5cde7f7f0e0b4906
diff --git a/modules/postgres.nix b/modules/postgres.nix
index 0613633..48a8627 100644
--- a/modules/postgres.nix
+++ b/modules/postgres.nix
@@ -48,7 +48,7 @@
] ++ (map (name: ({
inherit name;
ensurePermissions = { "ALL TABLES IN SCHEMA public" = "ALL PRIVILEGES"; };
- })) [ "minion" "coded" "pinea" ]);
+ })) [ "minion" "coded" "pineafan" ]);
};