From 67dab0e978e537af9d85a84e481624da74a5dfeb Mon Sep 17 00:00:00 2001 From: luke Date: Thu, 6 Jul 2006 17:59:30 +0000 Subject: adding another state that is equivalent to "stopped" for smf services git-svn-id: https://reductivelabs.com/svn/puppet/trunk@1375 980ebf18-57e1-0310-9a29-db15c13687c0 --- lib/puppet/type/service/smf.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/puppet/type/service/smf.rb b/lib/puppet/type/service/smf.rb index 2c4c2fa95..71dc22ff4 100755 --- a/lib/puppet/type/service/smf.rb +++ b/lib/puppet/type/service/smf.rb @@ -45,7 +45,7 @@ Puppet.type(:service).newsvctype(:smf) do when "online": #self.warning "matched running %s" % line.inspect return :running - when "offline", "disabled": + when "offline", "disabled", "uninitialized" #self.warning "matched stopped %s" % line.inspect return :stopped when "legacy_run": -- cgit