summaryrefslogtreecommitdiffstats
path: root/etc/pagemenu.html
blob: f5c951ae0485d3d0e5a8c13dd969cbe428818a2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{#
    opnfvdocs/etc/pagemenu.html
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~

    Sphinx sidebar template: link to pdfcrowd.

    :copyright: Copyright 2016 by OPNFV.
    :license: Apache 2.0 .
#}
<div role="note" aria-label="source link">
  <h3>{{ _('This Page') }}</h3>
  <ul class="this-page-menu">
    {%- if show_source and has_source and sourcename %}
      <li><a href="{{ pathto('_sources/' + sourcename, true)|e }}"
             rel="nofollow">{{ _('Show Source') }}</a></li>
    {%- else %}
      {# Note: single HTML won't have source rst #}
      <li><a href="//pdfcrowd.com/url_to_pdf/">Save to PDF</a></li>
    {%- endif %}
    <li>Version: {{version}}</li>
    <li>Build Date: {{last_updated}}</li>
    <li>&copy; {{copyright}}</li>
  </ul>
</div>
n class="p p-Indicator">: " default_hugepagesz=1G hugepagesz=1G hugepages=8" iommu_original_kernel_params: 'GRUB_CMDLINE_LINUX="\$GRUB_CMDLINE_LINUX{{ hugepages_params }}' iommu_enabled_kernel_params: '{{ iommu_original_kernel_params }}{{ iommu_boot_params }}"' iommu_enabled_kernel_params_with_help: '{{ iommu_original_kernel_params }}{{ iommu_boot_params }}"{{ hugepages_help_string }}{{ iommu_help_string }}' - name: check if iommu is set by this role in /etc/default/grub lineinfile: path: /etc/default/grub line: '{{ iommu_enabled_kernel_params_with_help }}' #changed_when: no check_mode: yes register: is_mine_iommu_etc_grub ignore_errors: True - name: check if iommu is set by someone else command: "grep -o 'iommu' /etc/default/grub" register: is_iommu ignore_errors: True - fail: msg: "Iommu already set by someone else" when: is_mine_iommu_etc_grub.changed == false and is_iommu.stdout != "" - name: 'Configure iommu in /etc/default/grub' # and /boot/grub/grub.cfg(when: ansible_distribution == "Ubuntu")' lineinfile: path: /etc/default/grub regexp: '({{ iommu_original_kernel_params }})"{{ hugepages_help_string }}' line: '\1{{ iommu_boot_params }}"{{ hugepages_help_string }}{{ iommu_help_string }}' backrefs: yes when: is_mine_iommu_etc_grub.changed == true - name: find boot grub.cfg find: paths: /boot file_type: file patterns: 'grub*.cfg' recurse: yes register: grub_files - include: manual_modify_grub.yml # only tested on Ubuntu, kernel line is probably different on other distros with_items: "{{ grub_files.files }}" when: ansible_distribution == "Ubuntu"