42 lines
1.0 KiB
YAML
42 lines
1.0 KiB
YAML
|
---
|
||
|
- name: Transform Ubuntu into an EOLE Server
|
||
|
hosts: all
|
||
|
|
||
|
tasks:
|
||
|
- name: Add an Apt signing key, for Cadoles
|
||
|
apt_key:
|
||
|
url: https://vulcain.cadoles.com/cadoles.gpg
|
||
|
state: present
|
||
|
|
||
|
- name: Adding Cadoles devel repository
|
||
|
apt_repository:
|
||
|
repo: deb https://vulcain.cadoles.com 2.7.2-stable main
|
||
|
state: present
|
||
|
|
||
|
- name: Adding Cadoles Tenjin repository
|
||
|
apt_repository:
|
||
|
repo: deb https://vulcain.cadoles.com tenjin-2.7.2-stable main
|
||
|
state: present
|
||
|
|
||
|
- name: Update cache
|
||
|
apt:
|
||
|
update_cache: yes
|
||
|
environment:
|
||
|
HTTP_PROXY: "{{ http_proxy }}"
|
||
|
HTTPS_PROXY: "{{ https_proxy }}"
|
||
|
http_proxy: "{{ http_proxy }}"
|
||
|
https_proxy: "{{ https_proxy }}"
|
||
|
|
||
|
- name: Install Tenjin AD package
|
||
|
apt:
|
||
|
name: eole-seth-education
|
||
|
environment:
|
||
|
HTTP_PROXY: "{{ http_proxy }}"
|
||
|
HTTPS_PROXY: "{{ https_proxy }}"
|
||
|
http_proxy: "{{ http_proxy }}"
|
||
|
https_proxy: "{{ https_proxy }}"
|
||
|
|
||
|
- name: Change hostname
|
||
|
hostname:
|
||
|
name: tenjin272
|