From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 3A9FBA0A0A for ; Fri, 22 Jan 2021 10:30:56 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id F1EEB140E19; Fri, 22 Jan 2021 10:30:55 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [63.128.21.124]) by mails.dpdk.org (Postfix) with ESMTP id 1994A140E19 for ; Fri, 22 Jan 2021 10:30:53 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1611307853; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=9VdJnLw0i17o/E4eN4g7Ris7SYgFGgkx/iVmwMQO6cw=; b=LpSuo23QmSxGeniZ8XwD3EbSXhVAaPHEfRyRdQ0FwqVtIY2t1rBj5qmfAL+a27N3barV15 rdlJi6S+CxrvEgy8onhBCGuCcuyhJM6SmCV1N9BdjiW5pmXj9z5nkM/Kqqmw19qWvCja2W +jH5ZjVL+y4UuaEO8Y8LVlKYqbnu2Qg= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-600-GhSY5Ip4MGGIB3e5yJDK_Q-1; Fri, 22 Jan 2021 04:30:49 -0500 X-MC-Unique: GhSY5Ip4MGGIB3e5yJDK_Q-1 Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id D4B041005E40; Fri, 22 Jan 2021 09:30:48 +0000 (UTC) Received: from dmarchan.remote.csb (unknown [10.40.193.123]) by smtp.corp.redhat.com (Postfix) with ESMTP id E36CF19486; Fri, 22 Jan 2021 09:30:43 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: stable@dpdk.org, Timothy Redaelli , Cristian Dumitrescu Date: Fri, 22 Jan 2021 10:30:37 +0100 Message-Id: <20210122093037.21988-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.84 on 10.5.11.23 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=david.marchand@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Subject: [dpdk-stable] [PATCH] examples/pipeline: fix VXLAN script permission X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" This python script provides a shebang that only makes sense if the script has the executable bit set. Fixes: fde7a772701a ("examples/pipeline: add VXLAN encapsulation example") Cc: stable@dpdk.org Reported-by: Timothy Redaelli Signed-off-by: David Marchand --- examples/pipeline/examples/vxlan_table.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 examples/pipeline/examples/vxlan_table.py diff --git a/examples/pipeline/examples/vxlan_table.py b/examples/pipeline/examples/vxlan_table.py old mode 100644 new mode 100755 -- 2.23.0