# File lib/chef/provider/service.rb, line 66
      def action_stop
        if @current_resource.running
          if stop_service
            @new_resource.updated_by_last_action(true)
            Chef::Log.info("#{@new_resource} stopped")
          end
        else
          Chef::Log.debug("#{@new_resource} already stopped - nothing to do")
        end 
      end