1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-18 19:49:40 +00:00
freebsd-ports/databases/mongodb32/files/patch-rpm_mongod.conf
Kurt Jaeger c24242b89b databases/mongodb32: 3.2.3 -> 3.2.4
- 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)
2016-03-14 18:29:05 +00:00

32 lines
776 B
Plaintext

--- 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: