summaryrefslogtreecommitdiff
path: root/puppet/modules/site_websites/manifests/init.pp
diff options
context:
space:
mode:
Diffstat (limited to 'puppet/modules/site_websites/manifests/init.pp')
-rw-r--r--puppet/modules/site_websites/manifests/init.pp21
1 files changed, 21 insertions, 0 deletions
diff --git a/puppet/modules/site_websites/manifests/init.pp b/puppet/modules/site_websites/manifests/init.pp
new file mode 100644
index 0000000..c98ca7d
--- /dev/null
+++ b/puppet/modules/site_websites/manifests/init.pp
@@ -0,0 +1,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',
+ #}
+}