openstack-ansible-openstack.../tasks/openstack_kernel_tuning.yml
Major Hayden 7e585fd0ae Don't reload sysctl each time
If we're setting the sysctl value with `sysctl_set` and writing it
to the conf file with `state`, there's no need to force a reload of
the sysctl.conf file. By the time each item in the loop finishes,
the sysctl value is set in the running system and in the conf file
already.

This should speed up the task.

Change-Id: Id5b4f0629f0c00c58469b03e0760891923e43fbe
2017-07-28 13:47:08 +00:00

25 lines
900 B
YAML

---
# Copyright 2014, Rackspace US, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
- name: Adding new system tuning
sysctl:
name: "{{ item.key }}"
value: "{{ item.value }}"
sysctl_set: "{{ item.set|default('yes') }}"
state: "{{ item.state|default('present') }}"
reload: no
with_items: "{{ openstack_kernel_options + openstack_user_kernel_options }}"
failed_when: false