Add support for deploying to Equinix Metal bare-metal servers
[kuberef.git] / playbooks / roles / pre-install / tasks / main.yml
1 ---
2 # SPDX-license-identifier: Apache-2.0
3 ##############################################################################
4 # Copyright (c) 2020 Samsung Electronics
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 # http://www.apache.org/licenses/LICENSE-2.0
9 ##############################################################################
10
11 - name: Load distro variables
12   include_vars:
13     file: "{{ ansible_os_family }}.yml"
14
15 - name: Install BRMA requirements
16   become: true
17   package:
18     name: "{{ item }}"
19     state: present
20   with_items: "{{ bmra_pkgs }}"