Move kernel tuning tasks to lxc_post_install.yml

This was a single task in a task file which can be included with the
rest of the post installation tasks

Change-Id: Ic9e0e4fe28aeb3d22e9b06371ee01f923fcd26d9
This commit is contained in:
Jonathan Rosser 2021-02-17 16:46:21 +00:00
parent 478abec936
commit 51ba33d7f5
3 changed files with 10 additions and 28 deletions

View File

@ -1,24 +0,0 @@
---
# 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: Tuning kernel for lxc
sysctl:
name: "{{ item.key }}"
value: "{{ item.value }}"
sysctl_set: "{{ item.set|default('yes') }}"
state: "{{ item.state|default('present') }}"
reload: "{{ item.reload|default('yes') }}"
failed_when: false
with_items: "{{ lxc_kernel_options }}"

View File

@ -129,3 +129,13 @@
# Ensure apparmor reindex runs before other things that may fail # Ensure apparmor reindex runs before other things that may fail
- meta: flush_handlers - meta: flush_handlers
- name: Tuning kernel for lxc
sysctl:
name: "{{ item.key }}"
value: "{{ item.value }}"
sysctl_set: "{{ item.set|default('yes') }}"
state: "{{ item.state|default('present') }}"
reload: "{{ item.reload|default('yes') }}"
failed_when: false
with_items: "{{ lxc_kernel_options }}"

View File

@ -71,10 +71,6 @@
tags: tags:
- lxc_hosts-config - lxc_hosts-config
- include_tasks: lxc_kernel_tuning.yml
tags:
- lxc_hosts-config
- include_tasks: lxc_net.yml - include_tasks: lxc_net.yml
tags: tags:
- lxc_hosts-config - lxc_hosts-config