diff options
-rw-r--r-- | modules/blog/manifests/init.pp | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/modules/blog/manifests/init.pp b/modules/blog/manifests/init.pp index 411214e0..09b839cd 100644 --- a/modules/blog/manifests/init.pp +++ b/modules/blog/manifests/init.pp @@ -5,6 +5,7 @@ class blog { comment => "User running cron jobs for blog", ensure => present, managehome => true, + home => "/var/lib/blog", } include apache::mod_php @@ -17,13 +18,6 @@ class blog { ensure => installed } - file { "/var/lib/blog": - ensure => directory, - owner => blog, - group => blog, - mode => 644, - } - file { "check_new-blog-post": path => "/usr/local/bin/check_new-blog-post.sh", ensure => present, |