Commit a44a073b by e0d Committed by Ned Batchelder

Basic support for smallfiles

(cherry picked from commit a3975c4e)
parent 4b596876
......@@ -32,6 +32,8 @@ MONGO_USERS:
MONGO_CLUSTERED: false
MONGO_BIND_IP: 127.0.0.1
MONGO_USE_SMALLFILES: true
##
mongo_logpath: "{{ mongo_log_dir }}/mongodb.log"
......
......@@ -16,6 +16,10 @@ logappend={{ mongo_logappend }}
bind_ip = {{ MONGO_BIND_IP }}
{% endif %}
{% if MONGO_USE_SMALLFILES %}
smallfiles = true
{% endif %}
port = {{ mongo_port }}
# Enable journaling, http://www.mongodb.org/display/DOCS/Journaling
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment