]> git.donarmstrong.com Git - dsa-puppet.git/blobdiff - modules/xinetd/manifests/init.pp
xinetd has a broken init script as well
[dsa-puppet.git] / modules / xinetd / manifests / init.pp
index e2178bd99ac2abd55262c878aa719b255c09cafc..79e23590d87b6eee9e7b524e767a92627d7fd649 100644 (file)
@@ -1,9 +1,14 @@
 class xinetd {
        package { 'xinetd':
-               ensure => installed
+               ensure => installed,
+               noop   => true,
        }
 
        service { 'xinetd':
-               ensure => running
+               ensure    => running,
+               hasstatus => false,
+               pattern   => '/usr/sbin/xinetd',
+               noop      => true,
+               require   => Package['xinetd']
        }
 }