Fix failing if hugepages already configured
[yardstick.git] / ansible / roles / enable_hugepages_on_boot / tasks / main.yml
1 # Copyright (c) 2017-2019 Intel Corporation
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #      http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14 ---
15 - name: Check if hugepages are set by this role
16   command: "grep -o '{{ hugepage_param_regex }}' /etc/default/grub"
17   register: is_mine_huge
18   ignore_errors: True
19
20 # won't work in chroot
21 #- name: Detect EFI
22 #  stat: path="/sys/firmware/efi"
23 #  register: efi
24
25 - name: Check if hugepages are set by someone else
26   command: "grep -o 'default_hugepagesz=' /etc/default/grub"
27   register: is_huge
28   ignore_errors: True
29
30 - debug:
31     msg: "Hugepages already set by someone else"
32   when: is_mine_huge.stdout == "" and is_huge.stdout != ""
33
34 - name: Configure hugepages as idempotent block
35   block:
36     - name: Use 8 for auto num_hugepages and 1G size
37       set_fact:
38         num_hugepages: 8
39       when: num_hugepages|default("auto") == "auto"
40
41     - name: Set hugepages in grub
42       lineinfile:
43         dest: /etc/default/grub
44         regexp: '{{ hugepage_param_regex }}'
45         line: '{{ hugepage_param }}'
46         state: present
47
48     - include: manual_modify_grub.yml
49       # only tested on Ubuntu, kernel line is probably different on other distros
50       when: ansible_distribution == "Ubuntu"
51   when:
52     - is_mine_huge.stdout == ""
53     - is_huge.stdout == ""