# File lib/puppet/provider/zone/solaris.rb, line 245
245:     def zonecfg(*cmd)
246:         # You apparently can't get the configuration of the global zone
247:         return "" if self.name == "global"
248: 
249:         begin
250:             cfg("-z", self.name, *cmd)
251:         rescue Puppet::ExecutionFailure => detail
252:             self.fail "Could not %s zone: %s" % [cmd[0], detail]
253:         end
254:     end