diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2015-10-29 12:09:21 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2015-10-29 12:09:21 -0200 |
commit | 8df4bf9d9b43701d6fd580333a059656a93714dd (patch) | |
tree | aa3c4ed6ea7041ed4cc6123f30007537c977f512 /manifests/init.pp | |
parent | a33718262f9daea4742e806c06afea2cdbd6e94a (diff) | |
download | puppet-websites-8df4bf9d9b43701d6fd580333a059656a93714dd.tar.gz puppet-websites-8df4bf9d9b43701d6fd580333a059656a93714dd.tar.bz2 |
Major cleanup
Diffstat (limited to 'manifests/init.pp')
-rw-r--r-- | manifests/init.pp | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index e9878eb..ec6c0cf 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -1,31 +1,4 @@ class websites inherits websites::setup { - # Include the needed classes for website hosting - include php - include trac - include websvn - include rsync::rrsync - - # Declare the needed classes for website hosting - class { [ 'drupal', 'ikiwiki', 'pmwiki', 'hotglue', 'wordpress' ]: } - class { - 'viewvc': - root_parents => "/var/svn : svn"; - } - - $git_daemon = hiera('nodo::web::git_daemon', True) - - if $git_daemon != false { - class { 'git::gitweb': } - class { 'git::cgit': } - - apache::site { "git": - source => true, - docroot => '/var/git/repositories', - mpm => false, - tag => 'all', - } - } - apache::site { "images": docroot => "${apache::www_folder}/images", mpm => false, |