aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/websites/manifests
diff options
context:
space:
mode:
authorNicolas Vigier <boklm@mageia.org>2013-05-11 22:30:30 +0000
committerNicolas Vigier <boklm@mageia.org>2013-05-11 22:30:30 +0000
commitf2e7fbae5c03392024bb5717d82071b89b0edcef (patch)
treeb53a00a3904d1c1cf36d19568cc10da0ff21d87b /deployment/websites/manifests
parent79c8d9e5e002cb70e27ebcf4922b17e8e8be419a (diff)
downloadpuppet-f2e7fbae5c03392024bb5717d82071b89b0edcef.tar
puppet-f2e7fbae5c03392024bb5717d82071b89b0edcef.tar.gz
puppet-f2e7fbae5c03392024bb5717d82071b89b0edcef.tar.bz2
puppet-f2e7fbae5c03392024bb5717d82071b89b0edcef.tar.xz
puppet-f2e7fbae5c03392024bb5717d82071b89b0edcef.zip
Remove websites::maintenance
Diffstat (limited to 'deployment/websites/manifests')
-rw-r--r--deployment/websites/manifests/maintenance.pp22
1 files changed, 0 insertions, 22 deletions
diff --git a/deployment/websites/manifests/maintenance.pp b/deployment/websites/manifests/maintenance.pp
deleted file mode 100644
index f05153a9..00000000
--- a/deployment/websites/manifests/maintenance.pp
+++ /dev/null
@@ -1,22 +0,0 @@
-class websites::maintenance {
- $vhostdir = "$websites::base::webdatadir/maintenance"
-
- file {$vhostdir:
- ensure => 'directory',
- mode => '0755',
- owner => 'root',
- group => 'root',
- }
-
- file {"$vhostdir/index.html":
- ensure => 'present',
- mode => '0644',
- owner => 'root',
- group => 'root',
- source => 'puppet:///modules/websites/maintenance.html',
- }
-
- apache::vhost::other_app { "maintenance.$::domain":
- vhost_file => 'websites/vhost_maintenance.conf',
- }
-}