diff options
author | Sofer Athlan-Guyot <sathlang@redhat.com> | 2017-04-26 22:38:13 +0200 |
---|---|---|
committer | Sofer Athlan-Guyot <sathlang@redhat.com> | 2017-04-26 22:38:13 +0200 |
commit | 2e25d117e10ddba126d2e130cd6987e93f591589 (patch) | |
tree | ae15e8c47c6499477072db970991631949b72c13 /puppet/services | |
parent | 1e34fc2bcd3c87119537483edddced0d78bd0465 (diff) |
Cinder-api upgrade: use httpd instead of apachectl
It doesn't work downstream, so the httpd command was recommended.
Change-Id: I4807333b80dad10f16e5deb56cbfdda656cd1e50
(cherry picked from commit 0b05d7fd9b0e8811755499642647919eaf64cc39)
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) |