blob: cfc60a6c39d54e7811a7326c559037b6b60ea940 [file] [log] [blame]
Zack Williams4e5e0cc2016-03-10 12:51:35 -07001---
2# file: roles/dell-virt/prep/tasks/main.yml
3
4- name: Trust the Dell apt repository
5 apt_key:
6 keyserver=pool.sks-keyservers.net
7 id=1285491434D8786F
8
9- name: Add Dell apt repo
Zack Williamsa0912602016-03-14 11:05:09 -070010 apt_repository:
Zack Williams4e5e0cc2016-03-10 12:51:35 -070011 repo="deb http://linux.dell.com/repo/community/{{ ansible_distribution | lower }} {{ ansible_distribution_release }} openmanage"
12
13- name: Install BIOS configuration scripts
14 apt:
15 update_cache=yes
Zack Williams6c3b8732016-03-15 09:57:07 -070016 cache_valid_time=3600
Zack Williams4e5e0cc2016-03-10 12:51:35 -070017 name=dtk-scripts
18
19# KVM virtualization is either "kvm_intel" or "kvm_amd" on amd64
20- name: Check to see if processor KVM virtualization module loaded in kernel
21 shell: lsmod | grep kvm_
22 ignore_errors: true
23 register: virtualization_enabled
24
25- name: Enable virtualization in BIOS
26 command: /opt/dell/toolkit/bin/syscfg --virtualization=enable
27 when: virtualization_enabled|failed
28