/[adm]/puppet/deployment/websites/manifests/maintenance.pp
ViewVC logotype

Contents of /puppet/deployment/websites/manifests/maintenance.pp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3074 - (show annotations) (download)
Sat May 4 13:55:45 2013 UTC (10 years, 11 months ago) by boklm
File size: 560 byte(s)
websites::maintenance: fix path to maintenance.html
1 class websites::maintenance {
2 $vhostdir = "$websites::base::webdatadir/maintenance"
3
4 file {$vhostdir:
5 ensure => 'directory',
6 mode => '0755',
7 owner => 'root',
8 group => 'root',
9 }
10
11 file {"$vhostdir/index.html":
12 ensure => 'present',
13 mode => '0644',
14 owner => 'root',
15 group => 'root',
16 source => 'puppet:///modules/websites/maintenance.html',
17 }
18
19 apache::vhost::other_app { "maintenance.$::domain":
20 vhost_file => 'websites/vhost_maintenance.conf',
21 }
22 }

  ViewVC Help
Powered by ViewVC 1.1.30