diff options
author | Michael Scherer <misc@mageia.org> | 2012-02-18 14:11:19 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2012-02-18 14:11:19 +0000 |
commit | f248ed40be7652b388487681dab1cc3d6053c615 (patch) | |
tree | f413e3889fad7a5c8eae9e039818e57fd89dc9b2 | |
parent | c1b9524dcbcdc58d8192437983ddca4c06d16275 (diff) | |
download | puppet-f248ed40be7652b388487681dab1cc3d6053c615.tar puppet-f248ed40be7652b388487681dab1cc3d6053c615.tar.gz puppet-f248ed40be7652b388487681dab1cc3d6053c615.tar.bz2 puppet-f248ed40be7652b388487681dab1cc3d6053c615.tar.xz puppet-f248ed40be7652b388487681dab1cc3d6053c615.zip |
add proper notify and requires for ordering
-rw-r--r-- | modules/xymon/manifests/init.pp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/xymon/manifests/init.pp b/modules/xymon/manifests/init.pp index d20bf795..1ed336de 100644 --- a/modules/xymon/manifests/init.pp +++ b/modules/xymon/manifests/init.pp @@ -12,6 +12,8 @@ class xymon { $server = extlookup('hobbit_server','x') file { '/etc/sysconfig/xymon-client': content => template("xymon/xymon-client"), + notify => Service['xymon-client'], + require => Package['xymon-client'], } } |