diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2017-06-30 02:53:57 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2017-07-03 23:56:29 +0300 |
commit | 17d44ec2c41a5b485cecae51a07396f85a601248 (patch) | |
tree | 5b8f74f8176059c9ab8cbbc770e4b9ee75872f41 /mod/options.cli | |
parent | c2a0ae3e226d1cedceb2a7814c8adfbbfbd7afe1 (diff) |
Fix builds page to correctly display unbuilt package count
Diffstat (limited to 'mod/options.cli')
-rw-r--r-- | mod/options.cli | 24 |
1 files changed, 20 insertions, 4 deletions
diff --git a/mod/options.cli b/mod/options.cli index 05578bf..051081f 100644 --- a/mod/options.cli +++ b/mod/options.cli @@ -93,8 +93,16 @@ namespace brep string package-db-user { "<user>", - "Package database user name. If not specified, then operating system - (login) name is used." + "Package database login user name. If not specified, then operating + system (login) name is used. See also \c{package-db-role}." + } + + string package-db-role = "brep" + { + "<user>", + "Package database execution user name. If not empty then the login + user will be switched (with \c{SET ROLE}) to this user prior to + executing any statements. If not specified, then \cb{brep} is used." } string package-db-password @@ -190,8 +198,16 @@ namespace brep string build-db-user { "<user>", - "Build database user name. If not specified, then operating system - (login) name is used." + "Build database login user name. If not specified, then operating + system (login) name is used. See also \c{build-db-role}." + } + + string build-db-role = "brep" + { + "<user>", + "Build database execution user name. If not empty then the login + user will be switched (with \c{SET ROLE}) to this user prior to + executing any statements. If not specified, then \cb{brep} is used." } string build-db-password |