Make the anonymous pg role a mandatory argument

This commit is contained in:
Joe Nelson
2014-10-03 13:56:02 -07:00
parent 5eeb3a75b2
commit 6b325e0139
+1 -1
View File
@@ -25,7 +25,7 @@ argParser = AppConfig
<> help "path to SSL cert file")
<*> strOption (long "sslkey" <> short 'k' <> metavar "PATH" <> value "test/test.key"
<> help "path to SSL key file")
<*> strOption (long "anonymous" <> short 'a' <> metavar "ROLE" <> value "dbapi_anon"
<*> strOption (long "anonymous" <> short 'a' <> metavar "ROLE"
<> help "postgres role to use for non-authenticated requests")
main :: IO ()