6127353ae7
* use ecdsautils from ffmwu debian repo instead of building from source * remove some trailing white spaces * use command module instead of shell module where it is possible * update module syntax to list form for better reading * role ffmwu-build should be idempotent now
15 lines
254 B
YAML
15 lines
254 B
YAML
---
|
|
- name: check apache syntax
|
|
command: /usr/sbin/apachectl -t
|
|
become: true
|
|
|
|
- name: restart systemd unit apache2
|
|
systemd:
|
|
name: apache2
|
|
state: restarted
|
|
become: true
|
|
|
|
- name: update apt cache
|
|
apt:
|
|
update_cache: yes
|
|
become: true
|