diff options
author | Lauri Ojansivu <x@xet7.org> | 2019-12-05 14:31:28 +0200 |
---|---|---|
committer | Lauri Ojansivu <x@xet7.org> | 2019-12-05 14:31:28 +0200 |
commit | b2eccc7b54d5b0b32d1c3ce9e74eb61d1efb4731 (patch) | |
tree | 756d3507cf1a982a799d6cb68af03662398537ee /snap-src/bin | |
parent | c2fa23d5252c095450bee299fc4fa82188b95436 (diff) | |
download | wekan-b2eccc7b54d5b0b32d1c3ce9e74eb61d1efb4731.tar.gz wekan-b2eccc7b54d5b0b32d1c3ce9e74eb61d1efb4731.tar.bz2 wekan-b2eccc7b54d5b0b32d1c3ce9e74eb61d1efb4731.zip |
Back to Meteor 1.8.x.
Diffstat (limited to 'snap-src/bin')
-rwxr-xr-x | snap-src/bin/mongodb-control | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/snap-src/bin/mongodb-control b/snap-src/bin/mongodb-control index 27420035..a79785b0 100755 --- a/snap-src/bin/mongodb-control +++ b/snap-src/bin/mongodb-control @@ -52,14 +52,14 @@ if [ -z "$MONGO_URL" ]; then ## OLD: Logging to file. #mongod --dbpath $SNAP_COMMON --logpath $SNAP_COMMON/mongodb.log --logappend --journal $BIND_OPTIONS --smallfiles ## NEW: Logging to syslog, that usually has already log rotation. - mongod --dbpath $SNAP_COMMON --syslog --journal $BIND_OPTIONS --quiet + mongod --dbpath $SNAP_COMMON --syslog --journal $BIND_OPTIONS --smallfiles --quiet else ## OLD: Logging to file. #mongod --dbpath $SNAP_COMMON --logpath $SNAP_COMMON/mongodb.log --logappend --journal $MONGO_URL --smallfiles ## NEW: Logging to syslog, that usually has already log rotation. - mongod --dbpath $SNAP_COMMON --syslog --journal $MONGO_URL --quiet + mongod --dbpath $SNAP_COMMON --syslog --journal $MONGO_URL --smallfiles --quiet fi |