loadbalancer: fix dependency on haproxy service

The dependency to the HAproxy service is wrong since it's absent in the
catalog. Let's remove it.

Signed-off-by: Emilien Macchi <emilien.macchi@enovance.com>
This commit is contained in:
Emilien Macchi
2014-05-05 14:39:29 +02:00
parent 6d3cd4ed0d
commit c8c1eb1951

View File

@@ -238,8 +238,7 @@ class cloud::loadbalancer(
# Still allow HAproxy to start # Still allow HAproxy to start
if ($::osfamily == 'Debian') { if ($::osfamily == 'Debian') {
file { '/etc/default/haproxy': file { '/etc/default/haproxy':
content => 'ENABLED=1', content => 'ENABLED=1'
before => Service['haproxy'],
} }
} }