diff options
author | Damien Lallement <dams@mageia.org> | 2012-01-06 15:28:34 +0000 |
---|---|---|
committer | Damien Lallement <dams@mageia.org> | 2012-01-06 15:28:34 +0000 |
commit | f236649cf09e3326ac46fe1d15132fd5567a1774 (patch) | |
tree | 692200d98545f092ec62e27db709bdc97d0d208d /modules/bcd/manifests/init.pp | |
parent | a9721784563db29c030b827cdc7d075be21e2c16 (diff) | |
download | puppet-f236649cf09e3326ac46fe1d15132fd5567a1774.tar puppet-f236649cf09e3326ac46fe1d15132fd5567a1774.tar.gz puppet-f236649cf09e3326ac46fe1d15132fd5567a1774.tar.bz2 puppet-f236649cf09e3326ac46fe1d15132fd5567a1774.tar.xz puppet-f236649cf09e3326ac46fe1d15132fd5567a1774.zip |
fix path files
Diffstat (limited to 'modules/bcd/manifests/init.pp')
-rw-r--r-- | modules/bcd/manifests/init.pp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/bcd/manifests/init.pp b/modules/bcd/manifests/init.pp index e4f4cd45..db55c19d 100644 --- a/modules/bcd/manifests/init.pp +++ b/modules/bcd/manifests/init.pp @@ -43,16 +43,16 @@ class bcd { location => "$bcd_home/public_html", content => template('bcd/vhost_bcd.conf'), } - file {".htaccess": - path => "$bcd_home/public_html/", + file {"htaccess": + path => "$bcd_home/public_html/.htaccess", ensure => present, owner => bcd, group => bcd, mode => 755, content => template("bcd/.htaccess") } - file {".htpasswd": - path => "$bcd_home/public_html/", + file {"htpasswd": + path => "$bcd_home/public_html/.htpasswd", ensure => present, owner => bcd, group => bcd, |