summaryrefslogtreecommitdiff
path: root/src/mongo/db/auth
diff options
context:
space:
mode:
authorDavid Storch <david.storch@10gen.com>2019-05-29 17:01:35 -0400
committerDavid Storch <david.storch@10gen.com>2019-06-05 15:56:45 -0400
commit22a595fbef4d023002b3c74d529368fcc4dbb196 (patch)
tree7b17834f3189c1b16647a40e71af43a2f38b768a /src/mongo/db/auth
parentbcad0d20e517e10f0dab71a0cfabe0a9e25c401b (diff)
downloadmongo-22a595fbef4d023002b3c74d529368fcc4dbb196.tar.gz
SERVER-41412 Introduce a search_beta_auth suite.
This variant of search_beta turns on auth on the cluster, including on the mongotmock, which supports the SCRAM-SHA-1 authentication mechanism. Also configures the pre-existing search_beta_ssl suite to use auth. There are changes in this commit which permit mongotmock to link in the necessary auth-related code and command line parameters without pulling in unnecessary dependencies, or adding new dependencies to mongocryptd.
Diffstat (limited to 'src/mongo/db/auth')
-rw-r--r--src/mongo/db/auth/SConscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/auth/SConscript b/src/mongo/db/auth/SConscript
index f26a2c3d5b2..f77549b799b 100644
--- a/src/mongo/db/auth/SConscript
+++ b/src/mongo/db/auth/SConscript
@@ -276,12 +276,12 @@ env.Library(
'saslauth',
],
LIBDEPS_PRIVATE=[
- 'sasl_options_init',
'$BUILD_DIR/mongo/client/sasl_client',
'$BUILD_DIR/mongo/db/audit',
'$BUILD_DIR/mongo/db/commands',
- '$BUILD_DIR/mongo/db/commands/servers',
+ '$BUILD_DIR/mongo/db/commands/authentication_commands',
'$BUILD_DIR/mongo/db/commands/test_commands_enabled',
+ 'sasl_options_init',
],
)