summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabriel Filion <gabster@lelutin.ca>2013-12-18 15:15:37 -0500
committerGabriel Filion <gabster@lelutin.ca>2013-12-18 15:15:37 -0500
commite3b382edeb455a7b5c54dbe96f21518a3d49b3d8 (patch)
tree702ec010d7ba9322f5d1124ab3435df90f05a645
parentfc6458e9e438a76220af57edaef54ccf3228f6f7 (diff)
conf: notify mysql service to make changes effective
-rw-r--r--manifests/conf.pp5
1 files changed, 3 insertions, 2 deletions
diff --git a/manifests/conf.pp b/manifests/conf.pp
index 069c012..f9cbeb3 100644
--- a/manifests/conf.pp
+++ b/manifests/conf.pp
@@ -29,8 +29,9 @@ define mysql::conf (
include mysql::server::base
file { "/etc/mysql/conf.d/${name}.cnf":
- ensure => $ensure,
- content => template('mysql/conf.erb'),
+ ensure => $ensure,
+ content => template('mysql/conf.erb'),
+ notify => Service['mysql'],
}
}