forked from map7/ansible_recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_rig.yml
More file actions
28 lines (24 loc) · 678 Bytes
/
test_rig.yml
File metadata and controls
28 lines (24 loc) · 678 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
---
#
# Test Rig system
#
# My office system which runs thin clients and is setup for these firms Accountants, Lawyers, Real Estate &
# Programmers. It uses thin clients and the server has nvidia graphics cards.
#
# Requirements
# sudo ansible-galaxy install smola.java
- hosts: test
user: map7
sudo: yes
vars_files:
- "vars/defaults.yml"
- "vars/$ansible_distribution-$ansible_architecture.yml"
- "vars/$ansible_distribution.yml"
- "vars/custom.yml"
tasks:
- include: common/tasks/system.yml
- include: common/tasks/node.yml
- name: Install Java
apt: name=java7-jdk
handlers:
- include: common/handlers/handlers.yml