Python3: Vagrant update
[csit.git] / resources / tools / vagrant / ansible / roles / common / tasks / main.yml
1 ---
2 # file: common/tasks/main.yml
3
4 - name: Install required common system packages
5   apt:
6     name:
7       - 'apt-transport-https'
8       - 'ca-certificates'
9       - 'curl'
10       - 'software-properties-common'
11     state: 'latest'
12     cache_valid_time: 3600
13
14 - name: Set /bin/sh to bash instead of dash
15   alternatives:
16     name: sh
17     link: /bin/sh
18     path: /bin/bash