summaryrefslogtreecommitdiff
path: root/puppet/modules/site_websites/manifests/init.pp
blob: c98ca7d00f14732f669ab17e2ecda37b5e138824 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
class site_websites inherits websites::hosting {
  # Website definitions: always use tagged resources
  apache::site { "git":
    source         => true,
    docroot        => '/var/git/repositories',
    mpm            => false,
    tag            => 'all',
  }

  #apache::site { "site":
  #  source         => true,
  #  ticket         => '001',
  #  docroot        => '/var/www/site',
  #  tag            => 'all',
  #}

  #database::instance { "site":
  #  password => 'xxx',
  #  tag      => 'all',
  #}
}