blob: 730e3c8fb6acaba0fe0dba0746c543c698948a43 [file] [log] [blame]
---
# file: roles/dell-virt/prep/tasks/main.yml
- name: Trust the Dell apt repository
apt_key:
data: "{{ lookup('file', 'dell_apt_key.gpg') }}"
- name: Add Dell apt repo
apt_repository:
repo="{{ dell_apt_repo | default('deb http://linux.dell.com/repo/community/{{ ansible_distribution | lower }} {{ ansible_distribution_release }} openmanage') }}"
- name: Install BIOS configuration scripts
apt:
update_cache=yes
cache_valid_time=3600
name=dtk-scripts
# KVM virtualization is either "kvm_intel" or "kvm_amd" on amd64
- name: Check to see if processor KVM virtualization module loaded in kernel
shell: lsmod | grep kvm_
ignore_errors: true
register: virtualization_enabled
tags:
- skip_ansible_lint # just used to register result
- name: Enable virtualization in BIOS
command: /opt/dell/toolkit/bin/syscfg --virtualization=enable
when: virtualization_enabled|failed