31 lines
403 B
Puppet
31 lines
403 B
Puppet
# Class: mysql
|
|
#
|
|
# This class installs the mysql server and client software.
|
|
#
|
|
# Parameters:
|
|
#
|
|
# Actions:
|
|
#
|
|
# Requires:
|
|
#
|
|
# Sample Usage:
|
|
#
|
|
# include mysql
|
|
#
|
|
class mysql {
|
|
|
|
Exec { path => '/usr/bin' }
|
|
|
|
package {
|
|
'mysql':
|
|
ensure => installed;
|
|
'mysql-server':
|
|
ensure => installed;
|
|
}
|
|
|
|
service { 'mysqld':
|
|
ensure => running,
|
|
require => Package['mysql-server']
|
|
}
|
|
}
|