summaryrefslogtreecommitdiff
path: root/manifests/init.pp
blob: 2f0fffd3166cdcbbd2977088d59c1bcd71e5cacc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# Using recipe from
# from http://reductivelabs.com/trac/puppet/wiki/Recipes/MySQLStoredConfiguration
# and snippets from git://git.puppet.immerda.ch/module-mysql.git

class mysql {
  package { "mysql-client":
      ensure  => installed,
  }
}

class mysql::server inherits mysql {
  package { "mysql-server":
      ensure  => installed,
  }
  service { "mysql":
      ensure          => running,
      enable          => true,
      hasrestart      => true,
      hasstatus       => true,
      require         => Package["mysql-server"],
  }

  case $mysql_rootpw {
      '': { fail("You need to define a mysql root password! Please set \$mysql_rootpw in your site.pp or host config") }
  }

  file{ '/usr/local/sbin/setmysqlpass.sh':
      source  => "puppet://$server/modules/mysql/setmysqlpass.sh",
      require => Package[mysql-server],
      owner   => root,
      group   => root,
      mode    => 0500,
  } 

  exec{'set_mysql_rootpw':
      command => "/usr/local/sbin/setmysqlpass.sh",
      unless  => "mysqladmin -uroot status > /dev/null",
      require => [ File['/usr/local/sbin/setmysqlpass.sh'], Package[mysql-server] ],
  }

  exec{'change_mysql_rootpw':
      command     => "/usr/local/sbin/setmysqlpass.sh",
      require     => [ File['/usr/local/sbin/setmysqlpass.sh'], Package[mysql-server] ],
      refreshonly => true,
  }

  mysql::cnf { "root":
    home   => "/root",
    passwd => $mysql_rootpw,
  }

  define mysql::cnf($home, $passwd) {
    $mysql_passwd = $passwd
    file { "$home/.my.cnf":
      content => template('mysql/my.cnf.erb'),
      require => [ Package[mysql-server] ],
      owner   => root,
      group   => root,
      mode    => 0400,
      notify  => Exec['change_mysql_rootpw'],
    }
  }
}