aboutsummaryrefslogtreecommitdiff
path: root/manifests/classes/websites.pp
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2015-06-29 16:49:15 -0300
committerSilvio Rhatto <rhatto@riseup.net>2015-06-29 16:49:15 -0300
commit3730114dbb3dffa0d496ff5aaf42c8d54bee8f80 (patch)
tree7987115345b6e5e9c1e95c38a517d5ba9bd40620 /manifests/classes/websites.pp
parent106977f49e6dbc925179ec2bded5455f45607189 (diff)
downloadpuppet-bootstrap-3730114dbb3dffa0d496ff5aaf42c8d54bee8f80.tar.gz
puppet-bootstrap-3730114dbb3dffa0d496ff5aaf42c8d54bee8f80.tar.bz2
More changes for puppet 3.x
Diffstat (limited to 'manifests/classes/websites.pp')
-rw-r--r--manifests/classes/websites.pp42
1 files changed, 0 insertions, 42 deletions
diff --git a/manifests/classes/websites.pp b/manifests/classes/websites.pp
deleted file mode 100644
index a53d507..0000000
--- a/manifests/classes/websites.pp
+++ /dev/null
@@ -1,42 +0,0 @@
-class websites::admin inherits websites::hosting::admin {
- # An administrative Trac instance
- #apache::site { "admin":
- # docroot => "${apache::sites_folder}/admin/trac/htdocs",
- # use => [ "Trac admin" ],
- # redirect_match => "trac",
- # mpm => false,
- # tag => 'all',
- #}
-
- apache::site { "munin":
- docroot => '/var/www/munin',
- owner => "munin",
- group => "munin",
- mpm => false,
- tag => 'all',
- }
-
- apache::site { "nagios":
- source => true,
- docroot => '/usr/share/nagios3/htdocs',
- mpm => false,
- tag => 'all',
- }
-}
-
-class websites inherits websites::hosting {
- # Website definitions: always use tagged resources
-
- #apache::site { "site":
- # source => true,
- # ticket => '001',
- # docroot => '/var/www/site',
- # tag => 'all',
- #}
-
- #database::instance { "site":
- # password => 'xxx',
- # tag => 'all',
- #}
-
-}