diff options
| author | Silvio Rhatto <rhatto@riseup.net> | 2010-01-20 11:14:24 -0200 | 
|---|---|---|
| committer | Silvio Rhatto <rhatto@riseup.net> | 2010-01-20 11:14:24 -0200 | 
| commit | 96dac3522fa2bf283ae9d81d413f0c8cbf8854f6 (patch) | |
| tree | 533afe049260d9760d8fcd929c4d5748285294bd /manifests | |
| parent | 7b42b8e003436bf3a1367ec0954ca505189bfa06 (diff) | |
| download | puppet-mysql-96dac3522fa2bf283ae9d81d413f0c8cbf8854f6.tar.gz puppet-mysql-96dac3522fa2bf283ae9d81d413f0c8cbf8854f6.tar.bz2 | |
Using set_mysql_rootpw again
Diffstat (limited to 'manifests')
| -rw-r--r-- | manifests/init.pp | 4 | 
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'],      }    }  } | 
