From nobody Mon Nov 10 21:23:02 2025 Delivered-To: importer@patchew.org Received-SPF: pass (zohomail.com: domain of lists.xenproject.org designates 192.237.175.120 as permitted sender) client-ip=192.237.175.120; envelope-from=xen-devel-bounces@lists.xenproject.org; helo=lists.xenproject.org; Authentication-Results: mx.zohomail.com; spf=pass (zohomail.com: domain of lists.xenproject.org designates 192.237.175.120 as permitted sender) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org ARC-Seal: i=1; a=rsa-sha256; t=1588271272; cv=none; d=zohomail.com; s=zohoarc; b=XBXHVPPPFrShKo3StdCrjsRBwSWpgObTJ+58B7hn8hfePvpeV20uPHeWNkkkPR0L2JeRacsr+D1KU/wO0nawNgvIysuCOU3rEaMSmC/mxQaDZrE/YqFdBvsvrf1fZwUbu1MrbimXItQgHyjK99ms659QcJQ8R8SitLb4tUCjI0w= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1588271272; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Subscribe:List-Post:List-Id:List-Help:List-Unsubscribe:MIME-Version:Message-ID:References:Sender:Subject:To; bh=YlB2AXFjZzSUB5Q7mXP1/0B4krlKdWdWiqirlxjxemw=; b=FtLLRyeUnPompQBajqU87Gnl7tEI3aYPGfnmgx7eZxVNno8q6jVnSMbWtCopwWc51IwYsu0JCMB7JpZvjpgonSnrCEbsgaoo0zUmAR5TkKN5UJGKh9fpBsqiIIWvjxAlFZnAA0ou9U3mO2E3weLVtFZJZCNT3oYOl/YxKxwEZyk= ARC-Authentication-Results: i=1; mx.zohomail.com; spf=pass (zohomail.com: domain of lists.xenproject.org designates 192.237.175.120 as permitted sender) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org Return-Path: Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) by mx.zohomail.com with SMTPS id 1588271272003837.8619119283884; Thu, 30 Apr 2020 11:27:52 -0700 (PDT) Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1jUDuM-0007xq-HJ; Thu, 30 Apr 2020 18:27:38 +0000 Received: from all-amaz-eas1.inumbo.com ([34.197.232.57] helo=us1-amaz-eas2.inumbo.com) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1jUDuK-0007xQ-FE for xen-devel@lists.xenproject.org; Thu, 30 Apr 2020 18:27:36 +0000 Received: from mx2.suse.de (unknown [195.135.220.15]) by us1-amaz-eas2.inumbo.com (Halon) with ESMTPS id 429940b8-8b10-11ea-9a92-12813bfff9fa; Thu, 30 Apr 2020 18:27:36 +0000 (UTC) Received: from relay2.suse.de (unknown [195.135.220.254]) by mx2.suse.de (Postfix) with ESMTP id 800D1AC4A; Thu, 30 Apr 2020 18:27:34 +0000 (UTC) X-Inumbo-ID: 429940b8-8b10-11ea-9a92-12813bfff9fa X-Virus-Scanned: by amavisd-new at test-mx.suse.de Subject: [PATCH 2/3] automation: openSUSE distro names helpers for containerize. From: Dario Faggioli To: xen-devel@lists.xenproject.org Date: Thu, 30 Apr 2020 20:27:34 +0200 Message-ID: <158827125424.19371.11152490489435365073.stgit@Palanthas> In-Reply-To: <158827088416.19371.17008531228521109457.stgit@Palanthas> References: <158827088416.19371.17008531228521109457.stgit@Palanthas> User-Agent: StGit/0.21 MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable X-BeenThere: xen-devel@lists.xenproject.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Cc: Doug Goldstein Errors-To: xen-devel-bounces@lists.xenproject.org Sender: "Xen-devel" Signed-off-by: Dario Faggioli --- Cc: Doug Goldstein --- automation/scripts/containerize | 2 ++ 1 file changed, 2 insertions(+) diff --git a/automation/scripts/containerize b/automation/scripts/container= ize index fbc4bc22d6..eb805bf96c 100755 --- a/automation/scripts/containerize +++ b/automation/scripts/containerize @@ -24,6 +24,8 @@ case "_${CONTAINER}" in _stretch|_) CONTAINER=3D"${BASE}/debian:stretch" ;; _trusty) CONTAINER=3D"${BASE}/ubuntu:trusty" ;; _xenial) CONTAINER=3D"${BASE}/ubuntu:xenial" ;; + _opensuse-leap|_leap) CONTAINER=3D"${BASE}/suse:opensuse-leap" ;; + _opensuse-tumbleweed|_tumbleweed) CONTAINER=3D"${BASE}/suse:opensuse-t= umbleweed" ;; esac =20 # Use this variable to control whether root should be used