# File lib/chef/provider/service/debian.rb, line 76
        def enable_service()
          # If we have a priority which is just a number, we have to
          # construct the actual priority object

          if @new_resource.priority.is_a? Integer
            run_command(:command => "/usr/sbin/update-rc.d #{@new_resource.service_name} defaults #{@new_resource.priority} #{100 - @new_resource.priority}")
          elsif @new_resource.priority.is_a? Hash
            args = ""
            @new_resource.priority.each do |level, o|
              action = o[0]
              priority = o[1]
              args += "#{action} #{priority} #{level} . "
            end
            run_command(:command => "/usr/sbin/update-rc.d #{@new_resource.service_name} #{args}")
          else # No priority, go with update-rc.d defaults
            run_command(:command => "/usr/sbin/update-rc.d #{@new_resource.service_name} defaults")
          end

        end