# File lib/chef/shef/ext.rb, line 147
      def on_off_to_bool
        case self
        when "on"
          true
        when "off"
          false
        else
          self
        end
      end