/[adm]/puppet/modules/blog/manifests/init.pp
ViewVC logotype

Diff of /puppet/modules/blog/manifests/init.pp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 232 by dams, Wed Nov 10 14:03:49 2010 UTC revision 276 by dams, Thu Nov 18 09:50:40 2010 UTC
# Line 1  Line 1 
1  #TODO:  #TODO:
2  # - add the creation of the user 'blog' in puppet  # - add the creation of the user 'blog' in puppet
3  class blog {  class mysql {
4            package { 'mysql':
5                    ensure => installed
6            }
7            package { 'php-mysql':
8                    ensure => installed
9            }
10    
11            service { mysqld:
12                    ensure => running,
13                    subscribe => Package["mysql"],
14            }
15    }
16    
17    class check_new-blog-post {
18          package { 'wget':          package { 'wget':
19                  ensure => installed                  ensure => installed
20          }          }

Legend:
Removed from v.232  
changed lines
  Added in v.276

  ViewVC Help
Powered by ViewVC 1.1.30