summaryrefslogtreecommitdiff
path: root/manifests/base.pp
blob: 3f92159940b53fc486f3e2ab9233d2427ce5d636 (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
64
65
66
67
68
69
70
71
72
73
74
75
# setup base apache class
class apache::base {
  file{
    'vhosts_dir':
      ensure  => directory,
      path    => '/etc/apache2/vhosts.d',
      purge   => true,
      recurse => true,
      force   => true,
      notify  => Service['apache'],
      owner   => root,
      group   => 0,
      mode    => '0644';
    'config_dir':
      ensure  => directory,
      path    => '/etc/apache2/conf.d',
      owner   => root,
      group   => 0,
      mode    => '0644';
    'include_dir':
      ensure  => directory,
      path    => '/etc/apache2/include.d',
      purge   => true,
      recurse => true,
      force   => true,
      notify  => Service['apache'],
      owner   => root,
      group   => 0,
      mode    => '0644';
    'modules_dir':
      ensure  => directory,
      path    => '/etc/apache2/modules.d',
      purge   => true,
      recurse => true,
      force   => true,
      notify  => Service['apache'],
      owner   => root,
      group   => 0,
      mode    => '0644';
    'htpasswd_dir':
      ensure  => directory,
      path    => '/var/www/htpasswds',
      purge   => true,
      recurse => true,
      force   => true,
      notify  => Service['apache'],
      owner   => root,
      group   => 'apache',
      mode    => '0640';
    'web_dir':
      ensure  => directory,
      path    => '/var/www',
      owner   => root,
      group   => 0,
      mode    => '0644';
    'default_apache_index':
      path    => '/var/www/localhost/htdocs/index.html',
      content => template('apache/default/default_index.erb'),
      owner   => root,
      group   => 0,
      mode    => '0644';
  } -> anchor{'apache::basic_dirs::ready': }

  apache::config::include{ 'defaults.inc': }
  apache::config::global{ 'git.conf': }
  if !$apache::no_default_site {
    apache::vhost::file { '0-default': }
  }

  service{'apache':
    ensure => running,
    name   => 'apache2',
    enable => true,
  }
}