You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
354 B

---
- name: Apache2 auf Remote-Server installieren
hosts: ubo5
remote_user: debian
become: true
tasks:
- name: Apache2 installieren
apt:
name: apache2
state: present
update_cache: yes
- name: Apache2 aktivieren und starten
service:
name: apache2
state: started
enabled: true