Use proper resource collector syntax for httpd service

Previous syntax (exported resource collector) was wrong.

Change-Id: If92b0283ca9463d429a92436f77667d74190e504
This commit is contained in:
ZhongShengping 2017-06-08 09:54:38 +08:00
parent b884e37f65
commit 71f5e42f5d

View File

@ -130,7 +130,7 @@ class panko::api (
tag => ['panko-service', 'panko-db-sync-service'],
}
Class['panko::db'] -> Service[$service_name]
Service <<| title == 'httpd' |>> { tag +> 'panko-db-sync-service' }
Service <| title == 'httpd' |> { tag +> 'panko-db-sync-service' }
# we need to make sure panko-api/eventlet is stopped before trying to start apache
Service['panko-api'] -> Service[$service_name]