diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2009-12-29 12:44:13 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2009-12-29 12:44:13 -0200 |
commit | 28dcb772c9cdde6ae7726ee12881bdc89e6c6050 (patch) | |
tree | a66abc6df03544d511b02c7ddb3c648609b5e38f | |
parent | 04a9fdc2934d65640b8c3eec81b8bdef7a615f93 (diff) | |
download | puppet-apache-28dcb772c9cdde6ae7726ee12881bdc89e6c6050.tar.gz puppet-apache-28dcb772c9cdde6ae7726ee12881bdc89e6c6050.tar.bz2 |
Using apache/vhosts to store vhost data
-rw-r--r-- | manifests/init.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index 8a02cc0..9fe06e4 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -91,7 +91,7 @@ class apache { true: { file { "${apache2_sites}-available/$title": ensure => $ensure, - source => "puppet://$server/files/apache/$title", + source => "puppet://$server/files/apache/vhosts/$title", owner => root, group => root, mode => 0644, |