diff options
| author | Silvio Rhatto <rhatto@riseup.net> | 2010-08-08 12:53:51 -0300 |
|---|---|---|
| committer | Silvio Rhatto <rhatto@riseup.net> | 2010-08-08 12:53:51 -0300 |
| commit | a907eb89afd49301ea2baf66b35130345e2010eb (patch) | |
| tree | b21a44af32b9c39d72d2af0f2815e90d1b344cf8 /manifests/web.pp | |
| parent | 09e26c0bc363847ebb6d8326b0e4cd04351fc253 (diff) | |
| download | puppet-mail-a907eb89afd49301ea2baf66b35130345e2010eb.tar.gz puppet-mail-a907eb89afd49301ea2baf66b35130345e2010eb.tar.bz2 | |
Adding mail::web
Diffstat (limited to 'manifests/web.pp')
| -rw-r--r-- | manifests/web.pp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/manifests/web.pp b/manifests/web.pp new file mode 100644 index 0000000..9783a71 --- /dev/null +++ b/manifests/web.pp @@ -0,0 +1,11 @@ +class mail::web inherits websites::setup { + apache::site { "postfixadmin": + docroot => "${apache_sites_folder}/postfixadmin/site", + use => [ "Site postfixadmin" ], + } + + apache::site { "mail": + docroot => "/usr/share/squirrelmail", + source => true, + } +} |
