Merge "NSB: ignore VNF node if there is no VNF model"
[yardstick.git] / ansible / roles / enable_hugepages_on_boot / tasks / main.yml
1 # Copyright (c) 2017 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 - fail:
31     msg: "Hugepages already set by someone else"
32   when: is_mine_huge.stdout == "" and is_huge.stdout != ""
33
34 - name: use 16 for auto num_hugepages and 1G size
35   set_fact:
36     num_hugepages: 8
37   when: num_hugepages|default("auto") == "auto"
38
39 - name: set hugepages in grub
40   lineinfile:
41     dest: /etc/default/grub
42     regexp: '{{ hugepage_param_regex }}'
43     line: '{{ hugepage_param }}'
44     state: present
45
46 - name: create hugetables mount
47   file:
48     path: "{{ hugetable_mount }}"
49     state: directory
50
51 - name: mount hugetlbfs
52   mount:
53     name: "{{ hugetable_mount }}"
54     src: nodev
55     fstype: hugetlbfs
56     state: present
57
58 - service:
59     name: procps
60     enabled: yes