]> git.apps.os.sepia.ceph.com Git - ceph-cm-ansible.git/commitdiff
teuthology: Ignore any errors when disabling apache2 276/head
authorDavid Galloway <dgallowa@redhat.com>
Thu, 28 Jul 2016 19:24:53 +0000 (15:24 -0400)
committerDavid Galloway <dgallowa@redhat.com>
Thu, 28 Jul 2016 19:24:53 +0000 (15:24 -0400)
Signed-off-by: David Galloway <dgallowa@redhat.com>
roles/teuthology/tasks/setup_log_access.yml

index af84f79861a2f11e04465bcc955811649fd383b0..c04abe9dd3d0a15402266c888066fdc1540d7f64 100644 (file)
     dest: /etc/nginx/sites-enabled/test_logs
     state: link
 
+# Ignore errors in case service doesn't exist
 - name: Disable apache httpd
   service:
     name: "{{ apache_service }}"
     enabled: no
     state: stopped
+  ignore_errors: true
 
 - name: Enable nginx
   service: