mirror of
https://git.freebsd.org/ports.git
synced 2025-05-20 02:53:10 -04:00
- modified pkg-plist from exec/unexec to @sample - provide a simplified mongodb.conf file - Fixed issue with setting optime when running with journaling disabled: SERVER-22495, SERVER-22728 - Have read concern majority reflect journaled state on the primary: SERVER-22269 - Fixed issue where specifying replication.enableMajorityReadConcern implied true regardless of the actual boolean value: SERVER-22683 - Fixed issue causing segfault when running aggregation that includes $lookup: SERVER-22537 PR: 207842 Submitted by: numisemis@yahoo.com Approved by: Brendan Molloy <brendan+freebsd@bbqsrc.net> (maintainer)
31 lines
776 B
Text
31 lines
776 B
Text
--- rpm/mongod.conf.orig 2016-03-01 04:38:06 UTC
|
|
+++ rpm/mongod.conf
|
|
@@ -1,4 +1,4 @@
|
|
-# mongod.conf
|
|
+# mongodb.conf
|
|
|
|
# for documentation of all options, see:
|
|
# http://docs.mongodb.org/manual/reference/configuration-options/
|
|
@@ -7,11 +7,11 @@
|
|
systemLog:
|
|
destination: file
|
|
logAppend: true
|
|
- path: /var/log/mongodb/mongod.log
|
|
+ path: /var/log/mongodb/log
|
|
|
|
# Where and how to store data.
|
|
storage:
|
|
- dbPath: /var/lib/mongo
|
|
+ dbPath: /var/db/mongo
|
|
journal:
|
|
enabled: true
|
|
# engine:
|
|
@@ -21,7 +21,7 @@ storage:
|
|
# how the process runs
|
|
processManagement:
|
|
fork: true # fork and run in background
|
|
- pidFilePath: /var/run/mongodb/mongod.pid # location of pidfile
|
|
+ pidFilePath: /var/run/mongodb/pid # location of pidfile
|
|
|
|
# network interfaces
|
|
net:
|