From a26a6452aa11463e920b38bdec0e54995f357361 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mathieu=20Gagne=CC=81?= Date: Wed, 7 Jun 2017 13:20:27 -0400 Subject: [PATCH] Use proper resource collector syntax for httpd service Previous syntax (exported resource collector) was wrong. Change-Id: Ib066724db1a82c86058219a82bb9a1701cbd9153 (cherry picked from commit fbc732590184b0e4dfd7f6037ea5ac283f2a8ba2) --- manifests/api.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/api.pp b/manifests/api.pp index c930a2dc..fcc511f0 100644 --- a/manifests/api.pp +++ b/manifests/api.pp @@ -121,7 +121,7 @@ class gnocchi::api ( enable => false, tag => ['gnocchi-service', 'gnocchi-db-sync-service'], } - Service <<| title == 'httpd' |>> { tag +> 'gnocchi-db-sync-service' } + Service <| title == 'httpd' |> { tag +> 'gnocchi-db-sync-service' } # we need to make sure gnocchi-api/eventlet is stopped before trying to start apache Service['gnocchi-api'] -> Service[$service_name]