From a24a43d8bb66245c758777522a4083d8c8ea7e7b Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Tue, 31 Jul 2018 20:56:32 +0200 Subject: [PATCH] add cronjob to make sure that apache is running --- roles/apache/tasks/main.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/roles/apache/tasks/main.yml b/roles/apache/tasks/main.yml index c195ea9..1280595 100644 --- a/roles/apache/tasks/main.yml +++ b/roles/apache/tasks/main.yml @@ -58,3 +58,9 @@ dest: /etc/apache2/sites-available/000-default.conf src: templates/000-default.conf notify: apache +# work-arounds and hacks +- name: cronjob to fix apache startup + cron: + name: "apache2-start-fix" + minute: "*/5" + job: "if systemctl is-failed apache2 >/dev/null; then echo 'restarting apache'; systemctl restart apache2; fi" -- 2.30.2