Last change
on this file since 406 was
367,
checked in by sebas, 15 years ago
|
para automatizar la instalacion de applicaciones web en php
|
File size:
426 bytes
|
Rev | Line | |
---|
[367] | 1 | class mysql-server { |
---|
| 2 | |
---|
| 3 | # TODO: set root password |
---|
| 4 | # http://reductivelabs.com/trac/puppet/wiki/Recipes/MySQLServer |
---|
| 5 | # http://github.com/camptocamp/puppet-mysql/tree |
---|
| 6 | # http://github.com/duritong/puppet-mysql/tree |
---|
| 7 | package { [ "mysql-server" ]: ensure => installed } |
---|
| 8 | |
---|
| 9 | service { "mysql": |
---|
| 10 | ensure => running, |
---|
| 11 | enable => true, |
---|
| 12 | name => "mysql", |
---|
| 13 | require => Package["mysql-server"], |
---|
| 14 | } |
---|
| 15 | |
---|
| 16 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.