diff options
author | Marius Bakke <mbakke@fastmail.com> | 2017-10-07 12:54:40 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2017-10-07 12:54:40 +0200 |
commit | ad3a937dae2586aa5a66ceed32a1c2005ee486c9 (patch) | |
tree | b44dd9e8bf4e2772c566086fbb7e8fbf30533473 /doc/guix.texi | |
parent | 6a317919cf0f9dbc651a4a41f9ed99c49bf2d543 (diff) | |
parent | 3ae76f7f57706cf5cc4144d4ff62968e3d4c3aa4 (diff) | |
download | guix-ad3a937dae2586aa5a66ceed32a1c2005ee486c9.tar guix-ad3a937dae2586aa5a66ceed32a1c2005ee486c9.tar.gz |
Merge branch 'master' into staging
Diffstat (limited to 'doc/guix.texi')
-rw-r--r-- | doc/guix.texi | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index f0a59a6b4b..c10fc649d1 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -12120,6 +12120,32 @@ Additional command line options to pass to @code{memcached}. @end table @end deftp +@defvr {Scheme Variable} mongodb-service-type +This is the service type for @uref{https://www.mongodb.com/, MongoDB}. +The value for the service type is a @code{mongodb-configuration} object. +@end defvr + +@example +(service mongodb-service-type) +@end example + +@deftp {Data Type} mongodb-configuration +Data type representing the configuration of mongodb. + +@table @asis +@item @code{mongodb} (default: @code{mongodb}) +The MongoDB package to use. + +@item @code{config-file} (default: @code{%default-mongodb-configuration-file}) +The configuration file for MongoDB. + +@item @code{data-directory} (default: @code{"/var/lib/mongodb"}) +This value is used to create the directory, so that it exists and is +owned by the mongodb user. It should match the data-directory which +MongoDB is configured to use through the configuration file. +@end table +@end deftp + @defvr {Scheme Variable} redis-service-type This is the service type for the @uref{https://redis.io/, Redis} key/value store, whose value is a @code{redis-configuration} object. |