Add main playbook as entry point

This commit is contained in:
Stefan Haun 2020-11-24 18:31:09 +01:00
parent 8d19bc3fa3
commit 7ae7d10c04

17
main.yml Normal file
View file

@ -0,0 +1,17 @@
---
- hosts: tau
become: true
vars:
- server_admin: "admin@netz39.de"
tasks:
- name: Update and clean package cache
apt:
update_cache: true
cache_valid_time: 3600
autoclean: true
- name: Setup httpd
include_tasks: tasks/httpd.yml