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