ansible-ffibk/roles/ffmwu-build/handlers/main.yml
Tobias Hachmer 6127353ae7 Update ansible role ffmwu-build
* 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
2016-11-26 14:17:14 +01:00

16 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