26 lines
600 B
YAML
26 lines
600 B
YAML
---
|
|
- name: Transform Ubuntu into an EOLE Server
|
|
hosts: all
|
|
|
|
tasks:
|
|
- 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 seth module package
|
|
apt:
|
|
name: eole-seth-all
|
|
environment:
|
|
HTTP_PROXY: "{{ http_proxy }}"
|
|
HTTPS_PROXY: "{{ https_proxy }}"
|
|
http_proxy: "{{ http_proxy }}"
|
|
https_proxy: "{{ https_proxy }}"
|
|
|
|
- name: Change hostname
|
|
hostname:
|
|
name: seth272 |