Enable server process forking by default on RedHat

The init scripts that are provided assume that forking is enabled by
default. This has been left in defaults, to preserve the capability for
users to override this option.
This commit is contained in:
Daniel White 2016-04-27 16:55:54 +10:00
parent 255dc39cc3
commit 4b22cc431d

View File

@ -23,7 +23,9 @@ mongodb_net_maxconns: 65536 # Max number of simultaneous co
mongodb_net_port: 27017 # Specify port number mongodb_net_port: 27017 # Specify port number
## processManagement Options ## processManagement Options
mongodb_processmanagement_fork: false # Fork server process # Fork server process
# Enabled by default for RedHat as the init scripts assume forking is enabled.
mongodb_processmanagement_fork: "{{ 'RedHat' == ansible_os_family }}"
## security Options ## security Options
# Disable or enable security. Possible values: 'disabled', 'enabled' # Disable or enable security. Possible values: 'disabled', 'enabled'