diff options
author | Nicolas Vigier <boklm@mageia.org> | 2011-05-15 18:21:04 +0000 |
---|---|---|
committer | Nicolas Vigier <boklm@mageia.org> | 2011-05-15 18:21:04 +0000 |
commit | b1b71f37ac2ed5ab5d684f84e9d4b82080ab9923 (patch) | |
tree | 13799fe52d12110f3a78f6f2fc5d2b48df091890 | |
parent | 4750d79fdb4e66dfa59213c543527a2515388ec1 (diff) | |
download | puppet-b1b71f37ac2ed5ab5d684f84e9d4b82080ab9923.tar puppet-b1b71f37ac2ed5ab5d684f84e9d4b82080ab9923.tar.gz puppet-b1b71f37ac2ed5ab5d684f84e9d4b82080ab9923.tar.bz2 puppet-b1b71f37ac2ed5ab5d684f84e9d4b82080ab9923.tar.xz puppet-b1b71f37ac2ed5ab5d684f84e9d4b82080ab9923.zip |
change planet_location to /var/www/vhosts
-rw-r--r-- | modules/planet/manifests/init.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/planet/manifests/init.pp b/modules/planet/manifests/init.pp index e3fee050..2432f54c 100644 --- a/modules/planet/manifests/init.pp +++ b/modules/planet/manifests/init.pp @@ -8,7 +8,7 @@ class planet { home => "/var/lib/planet", } - $planet_location = "/var/www/html/planet.$domain" + $planet_location = "/var/www/vhosts/planet.$domain" $planet_domain = "planet.$domain" include apache::mod_php @@ -27,7 +27,7 @@ class planet { content => template("planet/deploy_new-planet.sh") } - file { "/var/www/vhosts/planet.$domain": + file { "$planet_location": ensure => directory, owner => planet, group => apache, |