apache is still only sometimes starting correctly
[ansible.git] / roles / apache / tasks / main.yml
index 5943499d81585d8c014e8a1ef3c300ee620a1566..95bf531cd0444cb5613fe84db8944ccc27febc9c 100644 (file)
     content: |
       [Unit]
       After=network-online.target
+      Wants=network-online.target
+      [Service]
+      Restart=on-failure
 - name: sysconfig to disable DAD
   copy:
     dest: /etc/sysctl.d/50-no-dad.conf
     content: |
       # Disable DAD so network-online.target works for IPv6
       net.ipv6.conf.all.accept_dad=0
-- name: cleanup 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"
-    state: absent