From 5bceeee2e3d00cb93293cb9e04e08a1c6d22e510 Mon Sep 17 00:00:00 2001 From: Derek Higgins Date: Fri, 20 Apr 2018 15:18:22 +0100 Subject: [PATCH] Update the horizon vhost filename The puppet-horizon defaults to 15 so it was probably 15 at one stage but we are now setting it to 10 in t-h-t. Also add executable permissions to the healthcheck file. Change-Id: I7c13cac950de568237eed1fd4b2a97d85b2aed0d --- healthcheck/horizon | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) mode change 100644 => 100755 healthcheck/horizon diff --git a/healthcheck/horizon b/healthcheck/horizon old mode 100644 new mode 100755 index 720587165..816785062 --- a/healthcheck/horizon +++ b/healthcheck/horizon @@ -2,9 +2,9 @@ . ${HEALTHCHECK_SCRIPTS:-/usr/share/openstack-tripleo-common/healthcheck}/common.sh -check_url=$(get_url_from_vhost /etc/httpd/conf.d/15-horizon_vhost.conf) +check_url=$(get_url_from_vhost /etc/httpd/conf.d/10-horizon_vhost.conf) if healthcheck_curl ${check_url}; then exit 0 else - healthcheck_curl $(get_url_from_vhost /etc/httpd/conf.d/15-horizon_ssl_vhost.conf) + healthcheck_curl $(get_url_from_vhost /etc/httpd/conf.d/10-horizon_ssl_vhost.conf) fi