Merge "Allow mongod service to launch on Fedora"
This commit is contained in:
commit
c3b658c8df
@ -1,2 +1,3 @@
|
||||
selinux-policy-targeted
|
||||
mongodb-server
|
||||
pymongo
|
||||
|
@ -88,9 +88,20 @@ function configure_ceilometer() {
|
||||
iniset $CEILOMETER_CONF keystone_authtoken admin_tenant_name $SERVICE_TENANT_NAME
|
||||
iniset $CEILOMETER_CONF keystone_authtoken signing_dir $CEILOMETER_AUTH_CACHE_DIR
|
||||
|
||||
configure_mongodb
|
||||
|
||||
cleanup_ceilometer
|
||||
}
|
||||
|
||||
function configure_mongodb() {
|
||||
if is_fedora ; then
|
||||
# ensure smallfiles selected to minimize freespace requirements
|
||||
sudo sed -i '/--smallfiles/!s/OPTIONS=\"/OPTIONS=\"--smallfiles /' /etc/sysconfig/mongod
|
||||
|
||||
restart_service mongod
|
||||
fi
|
||||
}
|
||||
|
||||
# init_ceilometer() - Initialize etc.
|
||||
function init_ceilometer() {
|
||||
# Create cache dir
|
||||
|
Loading…
Reference in New Issue
Block a user