-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsoftware.yml
More file actions
46 lines (46 loc) · 886 Bytes
/
Copy pathsoftware.yml
File metadata and controls
46 lines (46 loc) · 886 Bytes
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
---
-
hosts: all
name: debug
tags: debug
tasks:
-
apt:
name: "{{ item }}"
state: present
become: true
name: "install tools"
with_items:
- nmap
-
hosts: hadoopnodes
name: "Install the Software"
tags: software
tasks:
-
apt_key:
id: 642AC823
keyserver: keyserver.ubuntu.com
state: present
become: true
name: "add repository keys"
-
apt_repository:
repo: "deb https://dl.bintray.com/sbt/debian /"
state: present
update_cache: true
become: true
name: "add repositories"
-
apt:
name: "{{ item }}"
state: present
become: true
name: "install dependencies"
with_items:
- build-essential
- cmake
- unzip
- sbt
- scala
- dos2unix