]> gitweb.fluxo.info Git - puppet-virtual.git/commitdiff
update the xend service to indicate that there is no 'status' command in the init...
authorMicah Anderson <micah@riseup.net>
Thu, 8 Oct 2009 15:34:36 +0000 (11:34 -0400)
committerMicah Anderson <micah@riseup.net>
Thu, 8 Oct 2009 15:34:36 +0000 (11:34 -0400)
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

manifests/xen.pp

index 9d3b7234467e97dc1c0194789d605fedbbc409ce..6e2ea4c56e47a947cdb6fc0b66b0c40fdfef5029 100644 (file)
@@ -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") }