public
Description: Modules for puppet.
Homepage:
Clone URL: git://github.com/apenney/puppet.git
puppet / mysql / manifests / init.pp
100644 18 lines (11 sloc) 0.249 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
##
## Set up and install MySQL.
##
 
class mysql {
 
    $mysqlpassword = file("/etc/puppet/secrets/mysql/root")
 
    include mysql::install
    include mysql::service
 
}
 
class mysql::dbserver inherits mysql {
 
    include mysql::service::dbserver
}