Merge "testcase: add rate parameter for spec cpu 2006"
[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 - name: check if hugepages are set by someone else
21   command: "grep -o 'default_hugepagesz=' /etc/default/grub"
22   register: is_huge
23   ignore_errors: True
24
25 - fail:
26     msg: "Hugepages already set by someone else"
27   when: is_mine_huge.stdout == "" and is_huge.stdout != ""
28
29 - name: use 16 for auto num_hugepages and 1G size
30   set_fact:
31     num_hugepages: 8
32   when: num_hugepages|default("auto") == "auto"
33
34 - name: set hugepages in grub
35   lineinfile:
36     dest: /etc/default/grub
37     regexp: '{{ hugepage_param_regex }}'
38     line: '{{ hugepage_param }}'
39     state: present
40
41 - name: create hugetables mount
42   file:
43     path: "{{ hugetable_mount }}"
44     state: directory
45
46 - name: mount hugetlbfs
47   mount:
48     name: "{{ hugetable_mount }}"
49     src: nodev
50     fstype: hugetlbfs
51     state: present
52
53 - service:
54     name: procps
55     enabled: yes