FIX: Ansible warnings of deprecation
[csit.git] / resources / tools / testbed-setup / ansible / roles / common / tasks / ubuntu_bionic.yaml
1 ---
2 # file: roles/common/tasks/ubuntu_bionic.yaml
3
4 - name: Copy apt sources file
5   template:
6     src: 'files/apt-sources_{{ ansible_distribution_release }}_{{ ansible_machine }}.list'
7     dest: '/etc/apt/sources.list'
8   tags: copy-apt-sources
9
10 - name: Install CSIT dependencies
11   apt:
12     name:
13       - 'python-apt'
14       - 'python-setuptools'
15       - 'git'
16       - 'crudini'
17       - 'expect'
18       - 'socat'
19       - 'qemu-system'
20       - 'build-essential'
21     state: 'present'
22     cache_valid_time: 3600
23     install_recommends: False
24   tags: install-csit-dependencies