apenney / puppet

Modules for puppet.

puppet / mysql / manifests / init.pp
b18e79cf » Root 2008-05-22 Some modifications for icla... 1 ##
2 ## Set up and install MySQL.
3 ##
4
5 class mysql {
6
221399bf » Root 2008-05-27 Plenty more changes to the ... 7 $mysqlpassword = file("/etc/puppet/secrets/mysql/root")
b18e79cf » Root 2008-05-22 Some modifications for icla... 8
9 include mysql::install
10 include mysql::service
11
12 }
7348ef85 » Ashley Penney 2008-05-30 Making horrendous monsterou... 13
14 class mysql::dbserver inherits mysql {
15
16 include mysql::service::dbserver
17 }