aboutsummaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authorMichael Scherer <misc@mageia.org>2011-02-12 14:03:30 +0000
committerMichael Scherer <misc@mageia.org>2011-02-12 14:03:30 +0000
commitf9cb645186a7f504d1c8c4705f3c41a77230cdd3 (patch)
treea5eb9cdbe06be66f34d920cf24eccaa683f45f52 /modules
parent68d8fa74b8429f87650573be8e0e3b82948f754f (diff)
downloadpuppet-f9cb645186a7f504d1c8c4705f3c41a77230cdd3.tar
puppet-f9cb645186a7f504d1c8c4705f3c41a77230cdd3.tar.gz
puppet-f9cb645186a7f504d1c8c4705f3c41a77230cdd3.tar.bz2
puppet-f9cb645186a7f504d1c8c4705f3c41a77230cdd3.tar.xz
puppet-f9cb645186a7f504d1c8c4705f3c41a77230cdd3.zip
add a require on user ( for ordering prupose, as cron use the user )
Diffstat (limited to 'modules')
-rw-r--r--modules/blog/manifests/init.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/blog/manifests/init.pp b/modules/blog/manifests/init.pp
index 1b602b3a..c430912f 100644
--- a/modules/blog/manifests/init.pp
+++ b/modules/blog/manifests/init.pp
@@ -25,7 +25,7 @@ class blog {
user => blog,
minute => '*/15',
command => "/usr/local/bin/check_new-blog-post.sh",
- require => File["check_new-blog-post"]
+ require => [File["check_new-blog-post"], User['blog']],
}
include apache::mod_php