summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2010-01-20 11:14:24 -0200
committerSilvio Rhatto <rhatto@riseup.net>2010-01-20 11:14:24 -0200
commit96dac3522fa2bf283ae9d81d413f0c8cbf8854f6 (patch)
tree533afe049260d9760d8fcd929c4d5748285294bd
parent7b42b8e003436bf3a1367ec0954ca505189bfa06 (diff)
downloadpuppet-mysql-96dac3522fa2bf283ae9d81d413f0c8cbf8854f6.tar.gz
puppet-mysql-96dac3522fa2bf283ae9d81d413f0c8cbf8854f6.tar.bz2
Using set_mysql_rootpw again
-rw-r--r--manifests/init.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 8944595..84f07b8 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -33,7 +33,7 @@ class mysql::server inherits mysql {
mode => 0500,
}
- exec { 'change_mysql_rootpw':
+ exec { 'set_mysql_rootpw':
command => "/usr/local/sbin/setmysqlpass.sh",
require => [ File['/usr/local/sbin/setmysqlpass.sh'], Package[mysql-server] ],
refreshonly => true,
@@ -53,7 +53,7 @@ class mysql::server inherits mysql {
owner => root,
group => root,
mode => 0400,
- notify => Exec['change_mysql_rootpw'],
+ notify => Exec['set_mysql_rootpw'],
}
}
}