# File lib/chef/resource/route.rb, line 25
      def initialize(name, run_context=nil)
        super
        @resource_name = :route
        @target = name
        @action = :add
        @allowed_actions.push(:add, :delete)
        @netmask = nil
        @gateway = nil
        @metric = nil
        @device = nil 
        @route_type = :host
        @networking = nil
        @networking_ipv6 = nil
        @hostname = nil
        @domainname = nil
        @domain = nil
      end