# File lib/puppet/provider/zone/solaris.rb, line 91
 91:   def processing?
 92:     if hash = status
 93:       case hash[:ensure]
 94:       when "incomplete", "ready", "shutting_down"
 95:         true
 96:       else
 97:         false
 98:       end
 99:     else
100:       false
101:     end
102:   end