-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.yml
54 lines (46 loc) · 1009 Bytes
/
install.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
---
## /* vim: set tabstop=2 softtabstop=2 shiftwidth=2 expandtab smarttab autoindent: */
- hosts: "all"
become: true
vars:
ansible_python_interpreter: "auto_silent"
roles:
# Install the locales
- name: "mireiawen.locales"
locales:
- "en_US.UTF-8"
- "fi_FI.UTF-8"
tags:
- "locales"
# Debian and Ubuntu backports repository
- name: "jnv.debian-backports"
when: "ansible_distribution == 'Debian'
or ansible_distribution == 'Ubuntu'"
tags:
- "backports"
# Unzip
- name: "unzip"
tags:
- "utils"
# Chrome Dependencies
- name: "chrome-dependencies"
tags:
- "chrome"
# Python 2 PIP
- name: "geerlingguy.pip"
vars:
pip_package: "python-pip"
pip_executable: "pip"
tags:
- "pip"
# Python 3 PIP
- name: "geerlingguy.pip"
vars:
pip_package: "python3-pip"
pip_executable: "pip3"
tags:
- "pip"
# Robot Framework
- name: "robotframework"
tags:
- "robotframework"