Install Dell srvadmin package to get utils to talk to RAID controller #90
|
@ -9,6 +9,7 @@
|
||||||
- apparmor
|
- apparmor
|
||||||
- haveged
|
- haveged
|
||||||
- mosh
|
- mosh
|
||||||
|
- srvadmin-all # Dell OpenManage
|
||||||
|
|
||||||
- name: Install necessary packages via pip
|
- name: Install necessary packages via pip
|
||||||
pip:
|
pip:
|
||||||
|
|
15
roles/ubuntu_base/tasks/custom-apt-repos.yml
Normal file
15
roles/ubuntu_base/tasks/custom-apt-repos.yml
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
---
|
||||||
|
- name: import dell apt signing key
|
||||||
|
apt_key:
|
||||||
|
id: "1285491434D8786F"
|
||||||
|
keyserver: "keyserver.ubuntu.com"
|
||||||
|
|
||||||
|
- name: "configure dell apt repo"
|
||||||
|
apt_repository:
|
||||||
|
repo: "deb https://linux.dell.com/repo/community/openmanage/10101/focal focal main"
|
||||||
|
state: "present"
|
||||||
|
|
||||||
|
- name: update apt cache
|
||||||
|
apt:
|
||||||
|
update_cache: yes
|
||||||
|
|
|
@ -1,4 +1,10 @@
|
||||||
---
|
---
|
||||||
|
- import_tasks: custom-apt-repos.yml
|
||||||
|
tags: [setup-custom-apt]
|
||||||
- import_tasks: upgrade.yml
|
- import_tasks: upgrade.yml
|
||||||
|
tags: [do-full-system-upgrade]
|
||||||
- import_tasks: base.yml
|
- import_tasks: base.yml
|
||||||
|
tags: [install-base-packages]
|
||||||
- import_tasks: users.yml
|
- import_tasks: users.yml
|
||||||
|
tags: [setup-users]
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue