diff options
author | Micah Anderson <micah@riseup.net> | 2009-10-08 11:34:36 -0400 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2009-10-08 11:34:36 -0400 |
commit | 2ef0291b94715553747c51647a0ac2b0f930b92d (patch) | |
tree | f4cc5015227aedf1578199a02f702ac21a7ac374 | |
parent | 9b229af5738f2ef0701b2e70376d3059dad43640 (diff) | |
download | puppet-virtual-2ef0291b94715553747c51647a0ac2b0f930b92d.tar.gz puppet-virtual-2ef0291b94715553747c51647a0ac2b0f930b92d.tar.bz2 |
update the xend service to indicate that there is no 'status' command in the init.d script
this should stop the thousands of logcheck messages that are reported as a result of
puppet running and thinking that xend is not running properly
-rw-r--r-- | manifests/xen.pp | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/manifests/xen.pp b/manifests/xen.pp index 9d3b723..6e2ea4c 100644 --- a/manifests/xen.pp +++ b/manifests/xen.pp @@ -22,11 +22,12 @@ class xen::domain { } class xen::domain::base { - service{ 'xend': - ensure => running, - enable => true, - hasstatus => true, - } + service{ 'xend': + ensure => running, + enable => true, + hasstatus => false, + hasrestart => true, + } case $xen_domains { '0': { info("No xen domains are running, so not configuring service xendomains") } |