diff options
author | Juan Antonio Osorio Robles <jaosorior@redhat.com> | 2017-03-06 14:21:10 +0200 |
---|---|---|
committer | Juan Antonio Osorio Robles <jaosorior@redhat.com> | 2017-03-06 14:40:46 +0200 |
commit | 0b05d7fd9b0e8811755499642647919eaf64cc39 (patch) | |
tree | 806d79c50a8c667497166ffc5a00270b5f9724c1 /puppet/services | |
parent | fd76fb23ba74443387c2d6d64120ac974836b085 (diff) |
Cinder-api upgrade: use httpd instead of apachectl
It doesn't work downstream, so the httpd command was recommended.
Change-Id: I4807333b80dad10f16e5deb56cbfdda656cd1e50
Diffstat (limited to 'puppet/services')
-rw-r--r-- | puppet/services/cinder-api.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/puppet/services/cinder-api.yaml b/puppet/services/cinder-api.yaml index c0ea7aaa..49a5f613 100644 --- a/puppet/services/cinder-api.yaml +++ b/puppet/services/cinder-api.yaml @@ -161,7 +161,7 @@ outputs: tags: step0,validation - name: check for cinder running under apache (post upgrade) tags: step1 - shell: "apachectl -t -D DUMP_VHOSTS | grep -q cinder" + shell: "httpd -t -D DUMP_VHOSTS | grep -q cinder" register: cinder_apache ignore_errors: true - name: Stop cinder_api service (running under httpd) |