aboutsummaryrefslogtreecommitdiffstats
path: root/roles/prepare_ci/tasks/install_DEBIAN.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'roles/prepare_ci/tasks/install_DEBIAN.yaml')
-rw-r--r--roles/prepare_ci/tasks/install_DEBIAN.yaml11
1 files changed, 11 insertions, 0 deletions
diff --git a/roles/prepare_ci/tasks/install_DEBIAN.yaml b/roles/prepare_ci/tasks/install_DEBIAN.yaml
new file mode 100644
index 0000000..9537976
--- /dev/null
+++ b/roles/prepare_ci/tasks/install_DEBIAN.yaml
@@ -0,0 +1,11 @@
+---
+- name: load os specific configuration
+ include_vars: "debian.yaml"
+ when: ansible_os_family | lower == "debian"
+
+- name: "[Debian] install needed packages"
+ include_role:
+ name: apt_install
+ vars:
+ environment: "{{ proxy_env }}"
+ packages: "{{ ci_packages }}"